diff --git a/.github/workflows/model_hub.yml b/.github/workflows/model_hub.yml
new file mode 100644
index 00000000000..895102cc99e
--- /dev/null
+++ b/.github/workflows/model_hub.yml
@@ -0,0 +1,21 @@
+name: Model Hub
+
+on:
+ workflow_dispatch:
+
+jobs:
+ torch:
+ runs-on: ubuntu-20.04-16-cores
+ defaults:
+ run:
+ shell: bash
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v3
+ with:
+ python-version: 3.8.10
+ - name: Install NNCF and test requirements
+ run: make install-models-hub-torch
+
+ - name: Run models-hub-torch test scope
+ run: make test-models-hub-torch
diff --git a/Makefile b/Makefile
index 5b71bb3eac1..b7906a496f6 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@ test-examples-onnx:
install-openvino-test:
pip install -U pip
pip install -e .[openvino]
+ pip install tensorflow==2.12.0
pip install -r tests/openvino/requirements.txt
pip install -r tests/cross_fw/install/requirements.txt
pip install -r tests/cross_fw/examples/requirements.txt
@@ -113,8 +114,17 @@ install-torch-dev: install-torch-test install-pre-commit
pip install -r examples/post_training_quantization/torch/mobilenet_v2/requirements.txt
pip install -r examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt
+install-models-hub-torch:
+ pip install -U pip
+ pip install -e .
+ pip install -r tests/torch/models_hub_test/requirements.txt
+ # Install wheel to run pip with --no-build-isolation
+ pip install wheel
+ pip install --no-build-isolation -r tests/torch/models_hub_test/requirements_secondary.txt
+
+
test-torch:
- pytest ${COVERAGE_ARGS} tests/torch -m "not weekly and not nightly" --junitxml ${JUNITXML_PATH} $(DATA_ARG)
+ pytest ${COVERAGE_ARGS} tests/torch -m "not weekly and not nightly and not models_hub" --junitxml ${JUNITXML_PATH} $(DATA_ARG)
test-torch-nightly:
pytest ${COVERAGE_ARGS} tests/torch -m nightly --junitxml ${JUNITXML_PATH} $(DATA_ARG)
@@ -138,6 +148,9 @@ test-examples-torch:
--backend torch \
--junitxml ${JUNITXML_PATH}
+test-models-hub-torch:
+ pytest tests/torch/models_hub_test --junitxml ${JUNITXML_PATH}
+
###############################################################################
# Common part
install-common-test:
diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index 4d9f3d83b6a..f90fff64e6d 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -1,5 +1,52 @@
# Release Notes
+## New in Release 2.7.0
+
+Post-training Quantization:
+
+- Features:
+ - (OpenVINO) Added support for data-free 4-bit weights compression through NF4 and INT4 data types (`compress_weights(…)` pipeline).
+ - (OpenVINO) Added support for [IF operation](https://docs.openvino.ai/latest/openvino_docs_ops_infrastructure_If_8.html) quantization.
+ - (OpenVINO) Added `dump_intermediate_model` parameter support for AccuracyAwareAlgorithm (`quantize_with_accuracy_control(…)` pipeline).
+ - (OpenVINO) Added support for SmoothQuant and ChannelAlignment algorithms for HyperparameterTuner algorithm (`quantize_with_tune_hyperparams(…)` pipeline).
+ - (PyTorch) Post-training Quantization is now supported with `quantize(…)` pipeline and the common implementation of quantization algorithms. Deprecated `create_compressed_model()` method for Post-training Quantization.
+ - Added new types (AvgPool, GroupNorm, LayerNorm) to the ignored scope for `ModelType.Transformer` scheme.
+ - `QuantizationPreset.Mixed` was set as the default for `ModelType.Transformer` scheme.
+- Fixes:
+ - (OpenVINO, ONNX, PyTorch) Aligned/added patterns between backends (SE block, MVN layer, multiple activations, etc.) to restore performance/metrics.
+ - Fixed patterns for `ModelType.Transformer` to align with the [quantization scheme](https://docs.openvino.ai/latest/openvino_docs_OV_UG_lpt.html).
+- Improvements:
+ - Improved UX with the new progress bar for pipeline, new exceptions, and .dot graph visualization updates.
+ - (OpenVINO) Optimized WeightsCompression algorithm (`compress_weights(…)` pipeline) execution time for LLM's quantization, added ignored scope support.
+ - (OpenVINO) Optimized AccuracyAwareQuantization algorithm execution time with multi-threaded approach while calculating ranking score (`quantize_with_accuracy_control(…)` pipeline).
+ - (OpenVINO) Added [extract_ov_subgraph tool](tools/extract_ov_subgraph.py) for large IR subgraph extraction.
+ - (ONNX) Optimized quantization pipeline (up to 1.15x speed up).
+- Tutorials:
+ - [Post-Training Optimization of BLIP Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/233-blip-visual-language-processing)
+ - [Post-Training Optimization of DeepFloyd IF Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/238-deepfloyd-if)
+ - [Post-Training Optimization of Grammatical Error Correction Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/214-grammar-correction)
+ - [Post-Training Optimization of Dolly 2.0 Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/240-dolly-2-instruction-following)
+ - [Post-Training Optimization of Massively Multilingual Speech Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/255-mms-massively-multilingual-speech)
+ - [Post-Training Optimization of OneFormer Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/249-oneformer-segmentation)
+ - [Post-Training Optimization of InstructPix2Pix Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/231-instruct-pix2pix-image-editing)
+ - [Post-Training Optimization of LLaVA Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/257-llava-multimodal-chatbot)
+ - [Post-Training Optimization of Latent Consistency Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/263-latent-consistency-models-image-generation)
+ - [Post-Training Optimization of Distil-Whisper Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/267-distil-whisper-asr)
+ - [Post-Training Optimization of FastSAM Model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/261-fast-segment-anything)
+- Known issues:
+ - (ONNX) `quantize(...)` method can generate inaccurate int8 results for models with the BatchNormalization layer that contains biases. To get the best accuracy, use the `do_constant_folding=True` option during export from PyTorch to ONNX.
+
+Compression-aware training:
+
+- Fixes:
+ - (PyTorch) Fixed Hessian trace calculation to solve [#2155](https://github.com/openvinotoolkit/nncf/issues/2155) issue.
+- Requirements:
+ - Updated PyTorch version (2.1.0).
+ - Updated numpy version (<1.27).
+- Deprecations/Removals:
+ - (PyTorch) Removed legacy external quantizer storage names.
+ - (PyTorch) Removed torch < 2.0 version support.
+
## New in Release 2.6.0
Post-training Quantization:
diff --git a/codecov.yml b/codecov.yml
index 9404cb6be71..62c50309c6b 100644
--- a/codecov.yml
+++ b/codecov.yml
@@ -5,8 +5,7 @@ ignore:
codecov:
notify:
- after_n_builds: 2
- wait_for_ci: no
+ wait_for_ci: true
max_report_age: off
coverage:
@@ -15,6 +14,7 @@ coverage:
default:
branches:
- develop
+ target: 90%
informational: true
only_pulls: true
paths:
@@ -23,15 +23,72 @@ coverage:
default:
branches:
- develop
+ target: 90%
informational: true
only_pulls: true
paths:
- - "nncf/onnx"
- - "nncf/common" # extend this once we collect coverage reports for more than just onnx and common part of precommit
+ - "nncf"
comment:
- layout: "diff, flags, files"
+ layout: "reach, diff, files, flags, components"
require_changes: false
require_head: false
require_base: false
+
+flag_management:
+ # Flag coverage percentage seems to show the "percentage of lines under the flag path covered as reported ONLY
+ # by the upload with the corresponding flag", so e.g. for COMMON the flag coverage percentage will report the
+ # percentage of common code tested ONLY by the common tests, and e.g. not by backend-specific precommit parts
+ # (which also run common code and are therefore indirectly providing coverage). Ideally each flag-specific path
+ # would be described below with the corresponding flag and provide valuable information on whether the test code base
+ # is written efficiently, e.g. that the backend-specific tests predominantly validate backend-specific code and the
+ # common tests completely cover the common code on their own. However, if we set all flags with paths here, then the
+ # total repo coverage percentage will sink, because codecov currently reports the overall coverage based on the union
+ # of the "flag" coverages - not the "component" coverages (see below) - and currently NNCF's precommit tests are
+ # biased toward validating common code via backend-specific tests. In the future the tests will be gradually
+ # refactored to have more "locality" in what each precommit section tests.
+ individual_flags:
+ - name: COMMON
+ paths:
+ - nncf/common
+ - nncf/quantization
+
+component_management:
+ # In contrast to the "flag" coverage above, the "component" display seems to calculate percentage based on the
+ # coverage information from ALL uploads for the code in the specified path. With this, the "component" coverage
+ # percentage is a better representation of what sub-paths in the NNCF code base are covered with at least one test,
+ # without distinction whether the test was run in the
+ individual_components:
+ - component_id: common
+ name: common
+ paths:
+ - nncf/common
+ - "!nncf/**/torch_*.py"
+ - "!nncf/**/tensorflow_*.py"
+ - "!nncf/**/onnx_*.py"
+ - "!nncf/**/openvino_*.py"
+ - component_id: torch
+ name: torch
+ paths:
+ - nncf/torch
+ - nncf/**/torch_*.py
+ - component_id: tensorflow
+ name: tensorflow
+ paths:
+ - nncf/tensorflow
+ - nncf/**/tensorflow_*.py
+ - component_id: onnx
+ name: onnx
+ paths:
+ - nncf/onnx
+ - nncf/**/onnx_*.py
+ - component_id: openvino
+ name: openvino
+ paths:
+ - nncf/openvino
+ - nncf/**/openvino_*.py
+ - component_id: quantization
+ name: ptq
+ paths:
+ - nncf/quantization
\ No newline at end of file
diff --git a/docs/Installation.md b/docs/Installation.md
index 17063a177f0..e1a9624ce4f 100644
--- a/docs/Installation.md
+++ b/docs/Installation.md
@@ -69,7 +69,8 @@ as well as the supported versions of Python:
| NNCF | OpenVINO | PyTorch | ONNX | TensorFlow | Python |
|-----------|------------|----------|----------|------------|--------|
-| `develop` | `2023.1.0` | `2.1` | `1.13.1` | `2.12.0` | `3.8` |
+| `develop` | `2023.2.0` | `2.1` | `1.13.1` | `2.12.0` | `3.8` |
+| `2.7.0` | `2023.2.0` | `2.1` | `1.13.1` | `2.12.0` | `3.8` |
| `2.6.0` | `2023.1.0` | `2.0.1` | `1.13.1` | `2.12.0` | `3.8` |
| `2.5.0` | `2023.0.0` | `1.13.1` | `1.13.1` | `2.11.1` | `3.8` |
| `2.4.0` | `2022.1.0` | `1.12.1` | `1.12.0` | `2.8.2` | `3.8` |
diff --git a/docs/compression_algorithms/CompressWeights.md b/docs/compression_algorithms/CompressWeights.md
index d28ae71dd7e..15bd2f2059f 100644
--- a/docs/compression_algorithms/CompressWeights.md
+++ b/docs/compression_algorithms/CompressWeights.md
@@ -8,22 +8,30 @@ The Weights Compression algorithm is aimed at compressing the weights of the mod
#### Supported modes
-By default, weights are compressed to 8-bit integer data type - "INT8" mode.
+By default, weights are compressed asymmetrically to 8-bit integer data type - "INT8_ASYM" mode.
OpenVINO backend also supports 3 modes of mixed precision weight quantization with a 4-bit data type as a primary precision - INT4_SYM, INT4_ASYM and NF4. The primary precision in case of INT4_SYM mode is unsigned 4-bit integer and weights are quantized to it [symmetrically](https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#symmetric-quantization) with a fixed zero point equals to 8. In case of INT4_ASYM mode - also unsigned 4-bit integer, but weight are quantized to it [asymmetrically](https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#asymmetric-quantization) with a typical non-fixed zero point. In case of NF4 mode - [nf4](https://arxiv.org/pdf/2305.14314v1.pdf) data type without zero point.
All 4-bit modes have a grouped quantization support, when small group of weights (e.g. 128) in the channel dimension share quantization parameters (scale).
-First embedding and last linear layers are always compressed to 8-bit integer data type.
-Percent of the rest layers compressed to 4-bit can be configured by "ratio" parameter. E.g. ratio=0.9 means 90% of layers compressed to the corresponding 4-bit data type and the rest to 8-bit integer data type.
+All embeddings and last linear layers are always compressed to 8-bit integer data type.
+Percent of the rest layers compressed to 4-bit can be configured by "ratio" parameter. E.g. ratio=0.9 means 90% of layers compressed to the corresponding 4-bit data type and the rest to 8-bit asymmetric integer data type.
#### User guide
-- Compress weights to 8-bit integer data type.
+- Compress weights asymmetrically to 8-bit integer data type.
```python
from nncf import compress_weights
compressed_model = compress_weights(model)
```
-- Compress weights symmetrically to 4-bit integer data type with group size = 128, except first embedding and last linear layers - they are compressed to 8-bit integer data type.
+- Compress weights symmetrically to 8-bit integer data type.
+
+```python
+from nncf import compress_weights
+from nncf import CompressWeightsMode
+compressed_model = compress_weights(model, mode=CompressWeightsMode.INT8_SYM)
+```
+
+- Compress weights symmetrically to 4-bit integer data type with group size = 128, except embeddings and last linear layers - they are compressed asymmetrically to 8-bit integer data type.
```python
from nncf import compress_weights
@@ -36,7 +44,7 @@ compressed_model = compress_weights(model, mode=CompressWeightsMode.INT4_SYM)
If the accuracy or perplexity is still not satisfying, there are 2 more hyper-parameters to tune: `group_size` and `ratio`.
Lower group size and less ratio of 4-bit layers usually improve accuracy at the sacrifice of inference speed.
Below is the example how to compress weights of 90% of layers to 4-bit integer asymmetrically with the group size 64, and
- the rest of layers to 8-bit integer data type. The same parametrization is applicable for `INT4_SYM` mode.
+ the rest of layers to 8-bit asymmetric integer data type. The same parametrization is applicable for `INT4_SYM` mode.
```python
from nncf import compress_weights
@@ -45,7 +53,7 @@ compressed_model = compress_weights(model, mode=CompressWeightsMode.INT4_ASYM, g
```
- `NF4` mode can be considered for improving accuracy, but currently models quantized to nf4 should not be faster models
- quantized to 8-bit integer. Here's the example how to compress weights to nf4 data type with group size = 128.
+ quantized to 8-bit asymmetric integer. Here's the example how to compress weights to nf4 data type with group size = 128.
Different `group_size` and `ratio` are also supported.
```python
@@ -79,7 +87,7 @@ Here is the perplexity and model size before and after weight compression for di
| databricks/dolly-v2-3b |
- int8 |
+ int8_asym |
5.07 |
0.05 |
2.6 |
@@ -107,7 +115,7 @@ Here is the perplexity and model size before and after weight compression for di
| facebook/opt-6.7b |
- int8 |
+ int8_asym |
4.27 |
0.01 |
6.2 |
@@ -135,7 +143,7 @@ Here is the perplexity and model size before and after weight compression for di
| meta-llama/Llama-2-7b-chat-hf |
- int8 |
+ int8_asym |
3.29 |
0.01 |
6.3 |
@@ -163,7 +171,7 @@ Here is the perplexity and model size before and after weight compression for di
| togethercomputer/RedPajama-INCITE-7B-Instruct |
- int8 |
+ int8_asym |
4.17 |
0.02 |
6.4 |
@@ -191,7 +199,7 @@ Here is the perplexity and model size before and after weight compression for di
| meta-llama/Llama-2-13b-chat-hf |
- int8 |
+ int8_asym |
2.91 |
0 |
12.1 |
@@ -218,7 +226,7 @@ Here is the perplexity and model size before and after weight compression for di
- The algorithm is supported for OpenVINO and PyTorch models.
- The compression applies in-place.
- The compressed model is not trainable.
-- INT4_SYM, INT4_ASYM and NF4 modes, grouped quantization and mixed precision selection is available for OpenVINO backend only.
+- INT8_SYM, INT4_SYM, INT4_ASYM and NF4 modes, grouped quantization and mixed precision selection is available for OpenVINO backend only.
- NF4 support is experimental - models quantized to nf4 should not be faster models quantized to 8-bit integer.
#### Additional resources
diff --git a/docs/styleguide/PyGuide.md b/docs/styleguide/PyGuide.md
index 070e35cad43..811c8633616 100644
--- a/docs/styleguide/PyGuide.md
+++ b/docs/styleguide/PyGuide.md
@@ -775,6 +775,39 @@ Always use a `.py` filename extension. Never use dashes.
Python filenames must have a `.py` extension and must not contain dashes (`-`).
This allows them to be imported and unit tested.
+Avoid having `.py` files with names such as `utils`, `helpers` that are a "swiss army knife" containing many unrelated pieces of code used across the code base.
+Instead group your new code in dedicated files/modules that are named explicitly according to the purpose of code.
+
+Bad:
+
+*utils.py*
+
+```python3
+def log_current_time(log_stream: LogStream):
+ ...
+
+def convert_checkpoint(ckpt: CheckpointType) -> AnotherCheckpointType:
+ ...
+```
+
+Good:
+
+*logger.py*
+
+```python3
+def log_current_time(log_stream: LogStream):
+ ...
+```
+
+*checkpointing/converter.py*
+
+```python3
+class CheckpointConverter:
+ # ...
+ def convert(self, ckpt: CheckpointType) -> AnotherCheckpointType:
+ pass
+```
+
diff --git a/examples/post_training_quantization/onnx/mobilenet_v2/main.py b/examples/post_training_quantization/onnx/mobilenet_v2/main.py
index 5f9850f8cbe..2d9f94d64be 100755
--- a/examples/post_training_quantization/onnx/mobilenet_v2/main.py
+++ b/examples/post_training_quantization/onnx/mobilenet_v2/main.py
@@ -140,11 +140,11 @@ def transform_fn(data_item):
print("[4/7] Benchmark INT8 model:")
int8_fps = run_benchmark(int8_model_path, shape=[1, 3, 224, 224], verbose=True)
-print("[5/7] Validate OpenVINO FP32 model:")
+print("[5/7] Validate ONNX FP32 model in OpenVINO:")
fp32_top1 = validate(fp32_model_path, val_loader)
print(f"Accuracy @ top1: {fp32_top1:.3f}")
-print("[6/7] Validate OpenVINO INT8 model:")
+print("[6/7] Validate ONNX INT8 model in OpenVINO:")
int8_top1 = validate(int8_model_path, val_loader)
print(f"Accuracy @ top1: {int8_top1:.3f}")
diff --git a/examples/post_training_quantization/onnx/mobilenet_v2/requirements.txt b/examples/post_training_quantization/onnx/mobilenet_v2/requirements.txt
index 19438721560..70057807254 100644
--- a/examples/post_training_quantization/onnx/mobilenet_v2/requirements.txt
+++ b/examples/post_training_quantization/onnx/mobilenet_v2/requirements.txt
@@ -4,4 +4,4 @@ scikit-learn
fastdownload
onnx~=1.13.1
onnxruntime~=1.14.1
-openvino-dev==2023.1
+openvino-dev==2023.2
diff --git a/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/main.py b/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/main.py
index 88393421801..d915fa73371 100644
--- a/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/main.py
+++ b/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/main.py
@@ -39,8 +39,7 @@
DATASET_INFO = download.DownloadInfo(
name="mvtec_capsule",
- url="https://www.mydrive.ch/shares/38536/3830184030e49fe74747669442f0f282/"
- "download/420937454-1629951595/capsule.tar.xz",
+ url="https://huggingface.co/datasets/alexsu52/mvtec_capsule/resolve/main/capsule.tar.xz",
hash="380afc46701c99cb7b9a928edbe16eb5",
)
DATASET_PATH = HOME_PATH / ".cache/nncf/datasets/mvtec_capsule"
diff --git a/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/requirements.txt b/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/requirements.txt
index c19233c3926..a2ffef7857a 100644
--- a/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/requirements.txt
+++ b/examples/post_training_quantization/openvino/anomaly_stfpm_quantize_with_accuracy_control/requirements.txt
@@ -1,2 +1,2 @@
anomalib==0.6.0
-openvino-dev==2023.1
+openvino-dev==2023.2
diff --git a/examples/post_training_quantization/openvino/mobilenet_v2/requirements.txt b/examples/post_training_quantization/openvino/mobilenet_v2/requirements.txt
index b44e82c5d48..66fe07cc2d4 100644
--- a/examples/post_training_quantization/openvino/mobilenet_v2/requirements.txt
+++ b/examples/post_training_quantization/openvino/mobilenet_v2/requirements.txt
@@ -2,4 +2,4 @@ torchvision
tqdm
scikit-learn
fastdownload
-openvino-dev==2023.1
\ No newline at end of file
+openvino-dev==2023.2
\ No newline at end of file
diff --git a/examples/post_training_quantization/openvino/yolov8/requirements.txt b/examples/post_training_quantization/openvino/yolov8/requirements.txt
index 40613340baa..8f9f710aa9e 100644
--- a/examples/post_training_quantization/openvino/yolov8/requirements.txt
+++ b/examples/post_training_quantization/openvino/yolov8/requirements.txt
@@ -1,3 +1,3 @@
ultralytics==8.0.170
onnx>=1.12.0
-openvino-dev==2023.1
\ No newline at end of file
+openvino-dev==2023.2
\ No newline at end of file
diff --git a/examples/post_training_quantization/openvino/yolov8_quantize_with_accuracy_control/requirements.txt b/examples/post_training_quantization/openvino/yolov8_quantize_with_accuracy_control/requirements.txt
index 40613340baa..8f9f710aa9e 100644
--- a/examples/post_training_quantization/openvino/yolov8_quantize_with_accuracy_control/requirements.txt
+++ b/examples/post_training_quantization/openvino/yolov8_quantize_with_accuracy_control/requirements.txt
@@ -1,3 +1,3 @@
ultralytics==8.0.170
onnx>=1.12.0
-openvino-dev==2023.1
\ No newline at end of file
+openvino-dev==2023.2
\ No newline at end of file
diff --git a/examples/post_training_quantization/tensorflow/mobilenet_v2/main.py b/examples/post_training_quantization/tensorflow/mobilenet_v2/main.py
index 2024cba3fc6..1dce1f98f35 100644
--- a/examples/post_training_quantization/tensorflow/mobilenet_v2/main.py
+++ b/examples/post_training_quantization/tensorflow/mobilenet_v2/main.py
@@ -15,10 +15,9 @@
from pathlib import Path
from typing import List, Optional
-import openvino.runtime as ov
+import openvino as ov
import tensorflow as tf
import tensorflow_datasets as tfds
-from openvino.tools import mo
from tqdm import tqdm
import nncf
@@ -146,16 +145,16 @@ def transform_fn(data_item):
###############################################################################
# Benchmark performance, calculate compression rate and validate accuracy
-ov_model = mo.convert_model(tf_model)
-ov_quantized_model = mo.convert_model(tf_quantized_model)
+ov_model = ov.convert_model(tf_model, share_weights=False)
+ov_quantized_model = ov.convert_model(tf_quantized_model, share_weights=False)
fp32_ir_path = f"{ROOT}/mobilenet_v2_fp32.xml"
-ov.serialize(ov_model, fp32_ir_path)
+ov.save_model(ov_model, fp32_ir_path, compress_to_fp16=False)
print(f"[1/7] Save FP32 model: {fp32_ir_path}")
fp32_model_size = get_model_size(fp32_ir_path, verbose=True)
int8_ir_path = f"{ROOT}/mobilenet_v2_int8.xml"
-ov.serialize(ov_quantized_model, int8_ir_path)
+ov.save_model(ov_quantized_model, int8_ir_path, compress_to_fp16=False)
print(f"[2/7] Save INT8 model: {int8_ir_path}")
int8_model_size = get_model_size(int8_ir_path, verbose=True)
diff --git a/examples/post_training_quantization/tensorflow/mobilenet_v2/requirements.txt b/examples/post_training_quantization/tensorflow/mobilenet_v2/requirements.txt
index ada72b9518c..f4ed8bfccdc 100644
--- a/examples/post_training_quantization/tensorflow/mobilenet_v2/requirements.txt
+++ b/examples/post_training_quantization/tensorflow/mobilenet_v2/requirements.txt
@@ -1,4 +1,4 @@
tensorflow~=2.12.0
tensorflow-datasets
tqdm
-openvino-dev==2023.0.2
+openvino-dev==2023.2
diff --git a/examples/post_training_quantization/torch/mobilenet_v2/main.py b/examples/post_training_quantization/torch/mobilenet_v2/main.py
index 152ffc7e31f..e2169022e3b 100644
--- a/examples/post_training_quantization/torch/mobilenet_v2/main.py
+++ b/examples/post_training_quantization/torch/mobilenet_v2/main.py
@@ -12,6 +12,7 @@
import os
import re
import subprocess
+from functools import partial
from pathlib import Path
from typing import List, Optional, Tuple
@@ -19,7 +20,6 @@
import openvino as ov
import torch
from fastdownload import FastDownload
-from openvino.tools import mo
from sklearn.metrics import accuracy_score
from torchvision import datasets
from torchvision import models
@@ -107,11 +107,13 @@ def get_model_size(ir_path: str, m_type: str = "Mb", verbose: bool = True) -> fl
]
),
)
-val_data_loader = torch.utils.data.DataLoader(val_dataset, batch_size=128, num_workers=4, shuffle=False)
+val_data_loader = torch.utils.data.DataLoader(val_dataset)
torch_model = models.mobilenet_v2(num_classes=DATASET_CLASSES)
-torch_model.eval()
torch_model = load_checkpoint(torch_model)
+device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
+torch_model.to(device)
+torch_model.eval()
###############################################################################
# Quantize a PyTorch model
@@ -120,12 +122,12 @@ def get_model_size(ir_path: str, m_type: str = "Mb", verbose: bool = True) -> fl
#
# To validate the transform function use the following code:
# >> for data_item in val_loader:
-# >> model(transform_fn(data_item))
+# >> model(transform_fn(data_item, device))
-def transform_fn(data_item: Tuple[torch.Tensor, int]) -> torch.Tensor:
+def transform_fn(data_item: Tuple[torch.Tensor, int], device: torch.device) -> torch.Tensor:
images, _ = data_item
- return images
+ return images.to(device)
# The calibration dataset is a small, no label, representative dataset
@@ -138,22 +140,15 @@ def transform_fn(data_item: Tuple[torch.Tensor, int]) -> torch.Tensor:
# item and prepare model input data. The quantize method uses a small subset
# (default: 300 samples) of the calibration dataset.
-calibration_dataset = nncf.Dataset(val_data_loader, transform_fn)
-torch_quantized_model = nncf.quantize(
- torch_model,
- calibration_dataset,
- advanced_parameters=nncf.AdvancedQuantizationParameters(disable_bias_correction=True),
-)
+calibration_dataset = nncf.Dataset(val_data_loader, partial(transform_fn, device=device))
+torch_quantized_model = nncf.quantize(torch_model, calibration_dataset)
###############################################################################
# Benchmark performance, calculate compression rate and validate accuracy
dummy_input = torch.randn(1, 3, 224, 224)
-ov_input_shape = (-1, 3, 224, 224)
-ov_model = mo.convert_model(torch_model.cpu(), example_input=dummy_input, input_shape=ov_input_shape)
-ov_quantized_model = mo.convert_model(
- torch_quantized_model.cpu(), example_input=dummy_input, input_shape=ov_input_shape
-)
+ov_model = ov.convert_model(torch_model.cpu(), example_input=dummy_input)
+ov_quantized_model = ov.convert_model(torch_quantized_model.cpu(), example_input=dummy_input)
fp32_ir_path = f"{ROOT}/mobilenet_v2_fp32.xml"
ov.save_model(ov_model, fp32_ir_path, compress_to_fp16=False)
diff --git a/examples/post_training_quantization/torch/mobilenet_v2/requirements.txt b/examples/post_training_quantization/torch/mobilenet_v2/requirements.txt
index 7f0bf782ccf..c41054ec33a 100644
--- a/examples/post_training_quantization/torch/mobilenet_v2/requirements.txt
+++ b/examples/post_training_quantization/torch/mobilenet_v2/requirements.txt
@@ -1,5 +1,5 @@
fastdownload==0.0.7
-openvino-dev==2023.1
+openvino-dev==2023.2
scikit-learn
torch==2.1.0
torchvision==0.16.0
diff --git a/examples/post_training_quantization/torch/ssd300_vgg16/main.py b/examples/post_training_quantization/torch/ssd300_vgg16/main.py
index 3bed9cfee45..ad47f2224a0 100644
--- a/examples/post_training_quantization/torch/ssd300_vgg16/main.py
+++ b/examples/post_training_quantization/torch/ssd300_vgg16/main.py
@@ -23,7 +23,6 @@
import torch
import torchvision
from fastdownload import FastDownload
-from openvino.tools import mo
from PIL import Image
from torchmetrics.detection.mean_ap import MeanAveragePrecision
from torchvision.models.detection.ssd import SSD
@@ -158,11 +157,11 @@ def main():
fp32_onnx_path = f"{ROOT}/ssd300_vgg16_fp32.onnx"
torch.onnx.export(model.cpu(), dummy_input, fp32_onnx_path)
- ov_model = mo.convert_model(fp32_onnx_path)
+ ov_model = ov.convert_model(fp32_onnx_path)
int8_onnx_path = f"{ROOT}/ssd300_vgg16_int8.onnx"
torch.onnx.export(quantized_model.cpu(), dummy_input, int8_onnx_path)
- ov_quantized_model = mo.convert_model(int8_onnx_path)
+ ov_quantized_model = ov.convert_model(int8_onnx_path)
fp32_ir_path = f"{ROOT}/ssd300_vgg16_fp32.xml"
ov.save_model(ov_model, fp32_ir_path, compress_to_fp16=False)
diff --git a/examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt b/examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt
index 952c35e0a94..bcaa9b45ae6 100644
--- a/examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt
+++ b/examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt
@@ -1,6 +1,6 @@
fastdownload==0.0.7
onnx==1.13.1
-openvino-dev==2023.1
+openvino-dev==2023.2
pycocotools==2.0.7
torch==2.0.1 # ssd300_vgg16 can not be exported with 2.1.0, reference: https://github.com/pytorch/pytorch/issues/113155
torchmetrics==1.0.1
diff --git a/examples/tensorflow/object_detection/main.py b/examples/tensorflow/object_detection/main.py
index 6ac73a7f0b2..93b73abe829 100644
--- a/examples/tensorflow/object_detection/main.py
+++ b/examples/tensorflow/object_detection/main.py
@@ -323,8 +323,7 @@ def run(config):
# Training parameters
epochs = config.epochs
- steps_per_epoch = train_builder.steps_per_epoch
- num_test_batches = test_builder.steps_per_epoch
+ steps_per_epoch, num_test_batches = train_builder.steps_per_epoch, test_builder.steps_per_epoch
# Create model builder
model_builder = get_model_builder(config)
@@ -336,10 +335,7 @@ def run(config):
)
resume_training = config.ckpt_path is not None
-
- compression_state = None
- if resume_training:
- compression_state = load_compression_state(config.ckpt_path)
+ compression_state = load_compression_state(config.ckpt_path) if resume_training else None
with TFModelManager(model_builder.build_model, config.nncf_config, weights=config.get("weights", None)) as model:
with strategy.scope():
@@ -384,6 +380,8 @@ def run(config):
test_step = create_test_step_fn(strategy, compress_model, predict_post_process_fn)
if "train" in config.mode:
+ if config.weights is None and not resume_training:
+ logger.warning("Pretrained checkpoint is not provided. This may lead to poor training results!")
if is_accuracy_aware_training(config):
train_summary_writer = SummaryWriter(config.log_dir, "train")
timer = Timer()
diff --git a/examples/torch/classification/README.md b/examples/torch/classification/README.md
index 36c85eecd49..f191f0ad92a 100644
--- a/examples/torch/classification/README.md
+++ b/examples/torch/classification/README.md
@@ -64,7 +64,9 @@ python main.py \
- Use the `--resume` flag with the path to a previously saved model to resume training.
- For Torchvision-supported image classification models, set `"pretrained": true` inside the NNCF config JSON file supplied via `--config` to initialize the model to be compressed with Torchvision-supplied pretrained weights, or, alternatively:
- Use the `--weights` flag with the path to a compatible PyTorch checkpoint in order to load all matching weights from the checkpoint into the model - useful if you need to start compression-aware training from a previously trained uncompressed (FP32) checkpoint instead of performing compression-aware training from scratch.
-- Use the `--no_strip_on_export` to export not stripped model.
+- Use `--export-model-path` to specify the path to export the model in OpenVINO or ONNX format by using the .xml or .onnx suffix, respectively.
+- Use the `--no-strip-on-export` to export not stripped model.
+- Use the `--export-to-ir-via-onnx` to to export to OpenVINO, will produce the serialized OV IR object by first exporting the torch model object to an .onnx file and then converting that .onnx file to an OV IR file.
### Validate Your Model Checkpoint
@@ -86,7 +88,7 @@ To export trained model to the ONNX format, use the following command:
python main.py -m export \
--config=configs/quantization/mobilenet_v2_imagenet_int8.json \
--resume=../../results/quantization/mobilenet_v2_int8/6/checkpoints/epoch_1.pth \
---to-onnx=../../results/mobilenet_v2_int8.onnx
+--to-ir=../../results
```
### Export to OpenVINO™ Intermediate Representation (IR)
diff --git a/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_dorefa.json b/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_dorefa.json
index b3dad882b1a..c6d605fb2fd 100644
--- a/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_dorefa.json
+++ b/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_dorefa.json
@@ -27,5 +27,6 @@
"{re}ResNet/Sequential\\[layer4\\]/BasicBlock\\[0\\]/Sequential\\[downsample\\]/.*"]
}
],
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_xnor.json b/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_xnor.json
index 04b426caa1a..2f89d33a1fb 100644
--- a/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_xnor.json
+++ b/examples/torch/classification/configs/binarization/resnet18_imagenet_binarization_xnor.json
@@ -27,5 +27,6 @@
"{re}ResNet/Sequential\\[layer4\\]/BasicBlock\\[0\\]/Sequential\\[downsample\\]/.*"]
}
],
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_autoq_staged.json b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_autoq_staged.json
index a2eaae16d41..5e0b82e52f5 100644
--- a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_autoq_staged.json
+++ b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_autoq_staged.json
@@ -40,5 +40,6 @@
"lr_poly_drop_duration_epochs": 10
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_hawq.json b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_hawq.json
index 1ba3d3fd665..ab340db9e53 100644
--- a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_hawq.json
+++ b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_hawq.json
@@ -35,5 +35,6 @@
}
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_manual_staged.json b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_manual_staged.json
index e34eda4d2c8..07c5a047d3e 100644
--- a/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_manual_staged.json
+++ b/examples/torch/classification/configs/mixed_precision/mobilenet_v2_imagenet_mixed_int_manual_staged.json
@@ -166,5 +166,6 @@
"disable_wd_start_epoch": 50
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_autoq_staged.json b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_autoq_staged.json
index 097d0c8181f..aeed86e7816 100644
--- a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_autoq_staged.json
+++ b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_autoq_staged.json
@@ -45,5 +45,6 @@
"lr_poly_drop_duration_epochs": 10
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_hawq.json b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_hawq.json
index 1db7add2fbe..8185a4e48fa 100644
--- a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_hawq.json
+++ b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_hawq.json
@@ -35,5 +35,6 @@
"disable_wd_start_epoch": 20
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual.json b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual.json
index 7552b9107b1..3399d855e0a 100644
--- a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual.json
+++ b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual.json
@@ -171,5 +171,6 @@
}
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual_staged.json b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual_staged.json
index f00e57a52c4..ec508fe8016 100644
--- a/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual_staged.json
+++ b/examples/torch/classification/configs/mixed_precision/resnet50_imagenet_mixed_int_manual_staged.json
@@ -173,5 +173,6 @@
"disable_wd_start_epoch": 20
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq.json b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq.json
index 0905e63f3a2..4dfe3248a59 100644
--- a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq.json
+++ b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq.json
@@ -35,5 +35,6 @@
}
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq_old_eval.json b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq_old_eval.json
index 6ad4fa4f3a3..d161e8f3ac7 100644
--- a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq_old_eval.json
+++ b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_hawq_old_eval.json
@@ -9,5 +9,6 @@
"target_device": "TRIAL",
"compression": {
"algorithm": "quantization"
- }
+ },
+ "no_strip_on_export": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual.json b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual.json
index f024f9fe1ff..376c98da783 100644
--- a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual.json
+++ b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual.json
@@ -99,5 +99,6 @@
}
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual_staged.json b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual_staged.json
index 7196a376620..b971a9e2b07 100644
--- a/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual_staged.json
+++ b/examples/torch/classification/configs/mixed_precision/squeezenet1_1_imagenet_mixed_int_manual_staged.json
@@ -111,5 +111,6 @@
"disable_wd_start_epoch": 50
}
},
- "no_strip_on_export": true
+ "no_strip_on_export": true,
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/classification/main.py b/examples/torch/classification/main.py
index 9d2b94c5d42..8b4bd35793f 100644
--- a/examples/torch/classification/main.py
+++ b/examples/torch/classification/main.py
@@ -235,8 +235,7 @@ def model_eval_fn(model):
load_state(model, model_state_dict, is_resume=True)
if is_export_only:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
return
model, _ = prepare_model_for_execution(model, config)
@@ -328,8 +327,7 @@ def configure_optimizers_fn():
config.mlflow.end_run()
if "export" in config.mode:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
def train(
diff --git a/examples/torch/classification/staged_quantization_worker.py b/examples/torch/classification/staged_quantization_worker.py
index 2a73b630c24..ad6ad5d1312 100644
--- a/examples/torch/classification/staged_quantization_worker.py
+++ b/examples/torch/classification/staged_quantization_worker.py
@@ -210,7 +210,7 @@ def autoq_eval_fn(model, eval_loader):
best_acc1 = 0
# optionally resume from a checkpoint
- if resuming_checkpoint is not None and config.to_onnx is None:
+ if resuming_checkpoint is not None and config.export_model_path is None:
best_acc1 = resuming_checkpoint["best_acc1"]
if "train" in config.mode:
kd_loss_calculator.original_model.load_state_dict(resuming_checkpoint["original_model_state_dict"])
@@ -228,8 +228,7 @@ def autoq_eval_fn(model, eval_loader):
log_common_mlflow_params(config)
if is_export_only:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
return
if config.execution_mode != ExecutionMode.CPU_ONLY:
@@ -262,8 +261,7 @@ def autoq_eval_fn(model, eval_loader):
validate(val_loader, model, criterion, config)
if "export" in config.mode:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
def train_staged(
diff --git a/examples/torch/common/argparser.py b/examples/torch/common/argparser.py
index 3b750ee22eb..62c67625125 100644
--- a/examples/torch/common/argparser.py
+++ b/examples/torch/common/argparser.py
@@ -104,7 +104,14 @@ def get_common_argument_parser():
parser.add_argument("--dist-url", default="tcp://127.0.0.1:8899", help="URL used to set up distributed training")
parser.add_argument("--rank", default=0, type=int, help="Node rank for distributed training")
parser.add_argument("--dist-backend", default="nccl", type=str, help="Distributed backend")
- parser.add_argument("--no_strip_on_export", help="Set to export not stripped model.", action="store_true")
+ parser.add_argument("--no-strip-on-export", help="Set to export not stripped model.", action="store_true")
+ parser.add_argument(
+ "--export-to-ir-via-onnx",
+ help="When used with the `exported-model-path` option to export to OpenVINO, will produce the serialized "
+ "OV IR object by first exporting the torch model object to an .onnx file and then converting that .onnx file "
+ "to an OV IR file.",
+ action="store_true",
+ )
# Hyperparameters
parser.add_argument(
@@ -141,7 +148,7 @@ def get_common_argument_parser():
# Dataset
parser.add_argument(
- "--data", dest="dataset_dir", type=str, help="Path to the root directory of the selected dataset. "
+ "--data", dest="dataset_dir", type=str, help="Path to the root directory of the selected dataset."
)
# Settings
@@ -169,8 +176,13 @@ def get_common_argument_parser():
)
parser.add_argument("--save-freq", default=5, type=int, help="Checkpoint save frequency (epochs). Default: 5")
-
- parser.add_argument("--to-onnx", type=str, metavar="PATH", default=None, help="Export to ONNX model by given path")
+ parser.add_argument(
+ "--export-model-path",
+ type=str,
+ metavar="PATH",
+ default=None,
+ help="The path to export the model in OpenVINO or ONNX format by using the .xml or .onnx suffix, respectively.",
+ )
# Display
parser.add_argument(
@@ -191,6 +203,6 @@ def get_common_argument_parser():
def parse_args(parser, argv):
args = parser.parse_args(argv)
- if "export" in args.mode and args.to_onnx is None:
- raise RuntimeError("--mode export requires --to-onnx argument to be set")
+ if "export" in args.mode and args.export_model_path is None:
+ raise RuntimeError("--mode export requires --export-model-path argument to be set")
return args
diff --git a/examples/torch/common/export.py b/examples/torch/common/export.py
index 0eb72071b80..67a8a1ac1a3 100644
--- a/examples/torch/common/export.py
+++ b/examples/torch/common/export.py
@@ -8,29 +8,64 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+from pathlib import Path
+
import torch
+from examples.common.sample_config import SampleConfig
+from examples.torch.common.example_logger import logger
from nncf.api.compression import CompressionAlgorithmController
from nncf.torch.exporter import count_tensors
from nncf.torch.exporter import generate_input_names_list
from nncf.torch.exporter import get_export_args
-def export_model(ctrl: CompressionAlgorithmController, save_path: str, no_strip_on_export: bool) -> None:
+def export_model(ctrl: CompressionAlgorithmController, config: SampleConfig) -> None:
"""
- Export compressed model. Supported only 'onnx' format.
+ Export compressed model ot OpenVINO format.
:param controller: The compression controller.
- :param save_path: Path to save onnx file.
- :param no_strip_on_export: Set to skip strip model before export.
+ :param config: The sample config.
"""
-
- model = ctrl.model if no_strip_on_export else ctrl.strip()
-
+ model = ctrl.model if config.no_strip_on_export else ctrl.strip()
model = model.eval().cpu()
export_args = get_export_args(model, device="cpu")
input_names = generate_input_names_list(count_tensors(export_args))
- with torch.no_grad():
- torch.onnx.export(model, export_args, save_path, input_names=input_names)
+ input_tensor_list = []
+ input_shape_list = []
+ for info in model.nncf.input_infos.elements:
+ input_shape = tuple([1] + info.shape[1:])
+ input_tensor_list.append(torch.rand(input_shape))
+ input_shape_list.append(input_shape)
+
+ if len(input_tensor_list) == 1:
+ input_tensor_list = input_tensor_list[0]
+ input_shape_list = input_shape_list[0]
+
+ model_path = Path(config.export_model_path)
+ model_path.parent.mkdir(exist_ok=True, parents=True)
+ extension = model_path.suffix
+
+ if extension == ".onnx":
+ with torch.no_grad():
+ torch.onnx.export(model, input_tensor_list, model_path, input_names=input_names)
+ elif extension == ".xml":
+ import openvino as ov
+ from openvino.tools.mo import convert_model
+
+ if config.export_to_ir_via_onnx:
+ model_onnx_path = model_path.with_suffix(".onnx")
+ with torch.no_grad():
+ torch.onnx.export(model, input_tensor_list, model_onnx_path, input_names=input_names)
+ ov_model = convert_model(model_onnx_path)
+ else:
+ ov_model = convert_model(model, example_input=input_tensor_list, input_shape=input_shape_list)
+ # Rename input nodes
+ for input_node, input_name in zip(ov_model.inputs, input_names):
+ input_node.node.set_friendly_name(input_name)
+ ov.save_model(ov_model, model_path)
+ else:
+ raise ValueError(f"--export-model-path argument should have suffix `.xml` or `.onnx` but got {extension}")
+ logger.info(f"Saved to {model_path}")
diff --git a/examples/torch/object_detection/README.md b/examples/torch/object_detection/README.md
index 88eb11380fc..3ebc819ebf6 100644
--- a/examples/torch/object_detection/README.md
+++ b/examples/torch/object_detection/README.md
@@ -49,7 +49,9 @@ This scenario demonstrates quantization with fine-tuning of SSD300 on VOC datase
- Use `--weights` flag with the path to a compatible PyTorch checkpoint in order to load all matching weights from the checkpoint into the model - useful if you need to start compression-aware training from a previously trained uncompressed (FP32) checkpoint instead of performing compression-aware training from scratch. This flag is optional, but highly recommended to use.
- Use `--multiprocessing-distributed` flag to run in the distributed mode.
- Use `--resume` flag with the path to a previously saved model to resume training.
-- Use the `--no_strip_on_export` to export not stripped model.
+- Use `--export-model-path` to specify the path to export the model in OpenVINO or ONNX format by using the .xml or .onnx suffix, respectively.
+- Use the `--no-strip-on-export` to export not stripped model.
+- Use the `--export-to-ir-via-onnx` to to export to OpenVINO, will produce the serialized OV IR object by first exporting the torch model object to an .onnx file and then converting that .onnx file to an OV IR file.
### Validate your model checkpoint
@@ -62,7 +64,7 @@ If you want to validate an FP32 model checkpoint, make sure the compression algo
### Export compressed model
To export trained model to ONNX format use the following command:
-`python main.py -m export --config configs/ssd300_vgg_voc_int8.json --data --resume --to-onnx=../../results/ssd300_int8.onnx`
+`python main.py -m export --config configs/ssd300_vgg_voc_int8.json --data --resume --to-ir=../../results`
### Export to OpenVINO Intermediate Representation (IR)
diff --git a/examples/torch/object_detection/configs/ssd300_mobilenet_voc.json b/examples/torch/object_detection/configs/ssd300_mobilenet_voc.json
index 7f4b0d48a3c..00759a1f69b 100644
--- a/examples/torch/object_detection/configs/ssd300_mobilenet_voc.json
+++ b/examples/torch/object_detection/configs/ssd300_mobilenet_voc.json
@@ -34,6 +34,6 @@
"clip": false,
"flip": true,
"top_k": 200
- }
+ },
+ "export_to_ir_via_onnx": true
}
-
diff --git a/examples/torch/object_detection/configs/ssd300_mobilenet_voc_magnitude_int8.json b/examples/torch/object_detection/configs/ssd300_mobilenet_voc_magnitude_int8.json
index 64e0ffda38f..d9774fac427 100644
--- a/examples/torch/object_detection/configs/ssd300_mobilenet_voc_magnitude_int8.json
+++ b/examples/torch/object_detection/configs/ssd300_mobilenet_voc_magnitude_int8.json
@@ -57,6 +57,6 @@
{
"algorithm": "quantization"
}
- ]
+ ],
+ "export_to_ir_via_onnx": true
}
-
diff --git a/examples/torch/object_detection/configs/ssd300_mobilenet_voc_rb_sparsity_int8.json b/examples/torch/object_detection/configs/ssd300_mobilenet_voc_rb_sparsity_int8.json
index ed183a03ca7..d47eafff504 100644
--- a/examples/torch/object_detection/configs/ssd300_mobilenet_voc_rb_sparsity_int8.json
+++ b/examples/torch/object_detection/configs/ssd300_mobilenet_voc_rb_sparsity_int8.json
@@ -50,6 +50,6 @@
{
"algorithm": "quantization"
}
- ]
+ ],
+ "export_to_ir_via_onnx": true
}
-
diff --git a/examples/torch/object_detection/configs/ssd300_vgg_voc.json b/examples/torch/object_detection/configs/ssd300_vgg_voc.json
index b32fa2b1c98..a4760986583 100644
--- a/examples/torch/object_detection/configs/ssd300_vgg_voc.json
+++ b/examples/torch/object_detection/configs/ssd300_vgg_voc.json
@@ -31,5 +31,6 @@
"steps": [8, 16, 32, 64, 100, 300],
"aspect_ratios": [[2], [2, 3], [2, 3], [2, 3], [2], [2]],
"flip": true
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd300_vgg_voc_int8.json b/examples/torch/object_detection/configs/ssd300_vgg_voc_int8.json
index 3b25eca64b3..c2ad3628e72 100644
--- a/examples/torch/object_detection/configs/ssd300_vgg_voc_int8.json
+++ b/examples/torch/object_detection/configs/ssd300_vgg_voc_int8.json
@@ -41,5 +41,6 @@
"num_init_samples": 1280
}
}
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd300_vgg_voc_int8_accuracy_aware.json b/examples/torch/object_detection/configs/ssd300_vgg_voc_int8_accuracy_aware.json
index 99508b45f60..8eae42060f6 100644
--- a/examples/torch/object_detection/configs/ssd300_vgg_voc_int8_accuracy_aware.json
+++ b/examples/torch/object_detection/configs/ssd300_vgg_voc_int8_accuracy_aware.json
@@ -49,5 +49,6 @@
"num_init_samples": 1280
}
}
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd300_vgg_voc_magnitude_sparsity_int8.json b/examples/torch/object_detection/configs/ssd300_vgg_voc_magnitude_sparsity_int8.json
index 08f7c5b95ce..f70873d52de 100644
--- a/examples/torch/object_detection/configs/ssd300_vgg_voc_magnitude_sparsity_int8.json
+++ b/examples/torch/object_detection/configs/ssd300_vgg_voc_magnitude_sparsity_int8.json
@@ -57,5 +57,6 @@
}
}
}
- ]
+ ],
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd300_vgg_voc_pruning_geometric_median.json b/examples/torch/object_detection/configs/ssd300_vgg_voc_pruning_geometric_median.json
index 157666a1589..1016bc0a61f 100644
--- a/examples/torch/object_detection/configs/ssd300_vgg_voc_pruning_geometric_median.json
+++ b/examples/torch/object_detection/configs/ssd300_vgg_voc_pruning_geometric_median.json
@@ -44,5 +44,6 @@
"filter_importance": "geometric_median"
}
}
- ]
+ ],
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd512_vgg_voc.json b/examples/torch/object_detection/configs/ssd512_vgg_voc.json
index 5524e9cb780..164588e178d 100644
--- a/examples/torch/object_detection/configs/ssd512_vgg_voc.json
+++ b/examples/torch/object_detection/configs/ssd512_vgg_voc.json
@@ -32,5 +32,6 @@
"variance": [0.1, 0.1, 0.2, 0.2],
"clip": false,
"flip": true
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd512_vgg_voc_int8.json b/examples/torch/object_detection/configs/ssd512_vgg_voc_int8.json
index ba71d85732b..c74c01dd0d9 100644
--- a/examples/torch/object_detection/configs/ssd512_vgg_voc_int8.json
+++ b/examples/torch/object_detection/configs/ssd512_vgg_voc_int8.json
@@ -38,5 +38,6 @@
"num_init_samples": 640
}
}
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/configs/ssd512_vgg_voc_magnitude_sparsity_int8.json b/examples/torch/object_detection/configs/ssd512_vgg_voc_magnitude_sparsity_int8.json
index 27c5a4a26db..fad46b0e479 100644
--- a/examples/torch/object_detection/configs/ssd512_vgg_voc_magnitude_sparsity_int8.json
+++ b/examples/torch/object_detection/configs/ssd512_vgg_voc_magnitude_sparsity_int8.json
@@ -56,5 +56,6 @@
}
}
}
- ]
+ ],
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/object_detection/main.py b/examples/torch/object_detection/main.py
index 85c88a36412..1c50a74c4fd 100644
--- a/examples/torch/object_detection/main.py
+++ b/examples/torch/object_detection/main.py
@@ -225,8 +225,7 @@ def model_eval_fn(model):
log_common_mlflow_params(config)
if is_export_only:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
return
if is_main_process():
@@ -303,8 +302,7 @@ def configure_optimizers_fn():
write_metrics(mAp, config.metrics_dump)
if "export" in config.mode:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
def create_dataloaders(config):
diff --git a/examples/torch/requirements.txt b/examples/torch/requirements.txt
index 7322c81c233..8a278ed7f28 100644
--- a/examples/torch/requirements.txt
+++ b/examples/torch/requirements.txt
@@ -3,7 +3,7 @@ pillow>=8.0.1
tensorboard>=2.1
matplotlib>=3.3.3
defusedxml>=0.7.0rc1
-mlflow>=2.5.0,<2.7.0
+mlflow==2.9.1
returns>0.14
opencv-python>=4.4.0.46
torchvision>=0.10.0,<0.17 # the minor version should always match the torch minor version that is installed via NNCF's `pip install nncf[torch]`; TV minor version is torch minor version +1
diff --git a/examples/torch/semantic_segmentation/README.md b/examples/torch/semantic_segmentation/README.md
index 17f54beb7e6..ba8cbbf8cd5 100644
--- a/examples/torch/semantic_segmentation/README.md
+++ b/examples/torch/semantic_segmentation/README.md
@@ -56,7 +56,9 @@ It may take a few epochs to get the baseline accuracy results.
- Use the `--weights` flag with the path to a compatible PyTorch checkpoint in order to load all matching weights from the checkpoint into the model - useful
if you need to start compression-aware training from a previously trained uncompressed (FP32) checkpoint instead of performing compression-aware training fr
om scratch.
-- Use the `--no_strip_on_export` to export not stripped model.
+- Use `--export-model-path` to specify the path to export the model in OpenVINO or ONNX format by using the .xml or .onnx suffix, respectively.
+- Use the `--no-strip-on-export` to export not stripped model.
+- Use the `--export-to-ir-via-onnx` to to export to OpenVINO, will produce the serialized OV IR object by first exporting the torch model object to an .onnx file and then converting that .onnx file to an OV IR file.
### Validate your model checkpoint
@@ -69,7 +71,7 @@ If you want to validate an FP32 model checkpoint, make sure the compression algo
### Export compressed model
To export trained model to ONNX format use the following command:
-`python main.py --mode export --config configs/unet_mapillary_int8.json --data --resume --to-onnx unet_int8.onnx`
+`python main.py --mode export --config configs/unet_mapillary_int8.json --data --resume --to-ir ../../results`
### Export to OpenVINO Intermediate Representation (IR)
diff --git a/examples/torch/semantic_segmentation/configs/icnet_camvid_int8.json b/examples/torch/semantic_segmentation/configs/icnet_camvid_int8.json
index 0b09ca9f565..1796853ef8d 100644
--- a/examples/torch/semantic_segmentation/configs/icnet_camvid_int8.json
+++ b/examples/torch/semantic_segmentation/configs/icnet_camvid_int8.json
@@ -42,5 +42,6 @@
"compression": {
"algorithm": "quantization",
"ignored_scopes": ["ICNet/interpolate_0"]
- }
-}
\ No newline at end of file
+ },
+ "export_to_ir_via_onnx": true
+}
diff --git a/examples/torch/semantic_segmentation/configs/icnet_camvid_magnitude_sparsity_int8.json b/examples/torch/semantic_segmentation/configs/icnet_camvid_magnitude_sparsity_int8.json
index 093a6a885da..70d9282988d 100644
--- a/examples/torch/semantic_segmentation/configs/icnet_camvid_magnitude_sparsity_int8.json
+++ b/examples/torch/semantic_segmentation/configs/icnet_camvid_magnitude_sparsity_int8.json
@@ -68,5 +68,6 @@
"algorithm": "quantization",
"ignored_scopes": ["ICNet/interpolate_0"]
}
- ]
-}
\ No newline at end of file
+ ],
+ "export_to_ir_via_onnx": true
+}
diff --git a/examples/torch/semantic_segmentation/configs/unet_camvid_int8.json b/examples/torch/semantic_segmentation/configs/unet_camvid_int8.json
index 2c21cdee78d..ab899d7d265 100644
--- a/examples/torch/semantic_segmentation/configs/unet_camvid_int8.json
+++ b/examples/torch/semantic_segmentation/configs/unet_camvid_int8.json
@@ -36,5 +36,6 @@
},
"compression": {
"algorithm": "quantization"
- }
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/semantic_segmentation/configs/unet_camvid_magnitude_sparsity_int8.json b/examples/torch/semantic_segmentation/configs/unet_camvid_magnitude_sparsity_int8.json
index 6cbde3a2622..62a2c87b9a2 100644
--- a/examples/torch/semantic_segmentation/configs/unet_camvid_magnitude_sparsity_int8.json
+++ b/examples/torch/semantic_segmentation/configs/unet_camvid_magnitude_sparsity_int8.json
@@ -62,5 +62,6 @@
{
"algorithm": "quantization"
}
- ]
-}
\ No newline at end of file
+ ],
+ "export_to_ir_via_onnx": true
+}
diff --git a/examples/torch/semantic_segmentation/configs/unet_mapillary_int8.json b/examples/torch/semantic_segmentation/configs/unet_mapillary_int8.json
index 9b0acd25d12..ee300cea22a 100644
--- a/examples/torch/semantic_segmentation/configs/unet_mapillary_int8.json
+++ b/examples/torch/semantic_segmentation/configs/unet_mapillary_int8.json
@@ -13,13 +13,13 @@
},
"input_info": {
- "sample_size": [1, 3, 512, 1024]
+ "sample_size": [1, 3, 512, 1024]
},
"weighing": [0.0000, 0.0554, 0.3358, 0.0843, 0.7865, 0.7753, 1.1966, 5.1031, 2.4255,
0.0679, 0.8589, 0.0389, 2.8977, 9.4937, 0.2531, 1.8852, 2.1179, 2.1978,
5.9516, 6.4394],
- "multiprocessing_distributed" : true,
+ "multiprocessing_distributed" : true,
"optimizer": {
"type": "Adam",
"optimizer_params": {
@@ -32,9 +32,10 @@
},
"model_params": {
- "input_size_hw": [512, 1024]
+ "input_size_hw": [512, 1024]
},
"compression": {
- "algorithm": "quantization"
- }
+ "algorithm": "quantization"
+ },
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/semantic_segmentation/configs/unet_mapillary_magnitude_sparsity_int8.json b/examples/torch/semantic_segmentation/configs/unet_mapillary_magnitude_sparsity_int8.json
index afd93c87715..dcf1239d2f8 100644
--- a/examples/torch/semantic_segmentation/configs/unet_mapillary_magnitude_sparsity_int8.json
+++ b/examples/torch/semantic_segmentation/configs/unet_mapillary_magnitude_sparsity_int8.json
@@ -32,7 +32,7 @@
},
"model_params": {
- "input_size_hw": [512, 1024]
+ "input_size_hw": [512, 1024]
},
"compression": [
{
@@ -59,6 +59,7 @@
},
{
"algorithm": "quantization"
- }
- ]
+ }
+ ],
+ "export_to_ir_via_onnx": true
}
diff --git a/examples/torch/semantic_segmentation/main.py b/examples/torch/semantic_segmentation/main.py
index f8d5749b225..c9c290d1a4f 100644
--- a/examples/torch/semantic_segmentation/main.py
+++ b/examples/torch/semantic_segmentation/main.py
@@ -548,8 +548,7 @@ def autoq_test_fn(model, eval_loader):
log_common_mlflow_params(config)
if is_export_only:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
return
if is_main_process():
@@ -620,8 +619,7 @@ def configure_optimizers_fn():
test(val_model, val_loader, criterion, color_encoding, config)
if "export" in config.mode:
- export_model(compression_ctrl, config.to_onnx, config.no_strip_on_export)
- logger.info(f"Saved to {config.to_onnx}")
+ export_model(compression_ctrl, config)
def main(argv):
diff --git a/nncf/common/compression.py b/nncf/common/compression.py
index 4d2460f2c3d..c665152560f 100644
--- a/nncf/common/compression.py
+++ b/nncf/common/compression.py
@@ -10,6 +10,7 @@
# limitations under the License.
from abc import ABC
from abc import abstractmethod
+from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple, TypeVar
from nncf import NNCFConfig
@@ -20,6 +21,7 @@
from nncf.common.utils.api_marker import api
from nncf.common.utils.backend import BackendType
from nncf.common.utils.backend import get_backend
+from nncf.common.utils.os import fail_if_symlink
from nncf.common.utils.registry import Registry
from nncf.config.extractors import BNAdaptDataLoaderNotFoundError
from nncf.config.extractors import extract_algo_specific_config
@@ -102,6 +104,7 @@ def export_model(
- (a, b, {}) for positional arguments only.
- ({'x': None, 'y': y},) for keyword arguments only.
"""
+ fail_if_symlink(Path(save_path))
self.prepare_for_export()
backend = get_backend(self.model)
if backend is BackendType.TENSORFLOW:
diff --git a/nncf/common/graph/graph.py b/nncf/common/graph/graph.py
index 7831aae397b..f9c8a306a1c 100644
--- a/nncf/common/graph/graph.py
+++ b/nncf/common/graph/graph.py
@@ -576,7 +576,7 @@ def get_graph_for_structure_analysis(self, extended: bool = False) -> nx.DiGraph
"""
out_graph = nx.DiGraph()
for node_name, node in self._nx_graph.nodes.items():
- attrs_node = {"id": node[NNCFNode.ID_NODE_ATTR], "type": node[NNCFNode.NODE_TYPE_ATTR]}
+ attrs_node = {"id": str(node[NNCFNode.ID_NODE_ATTR]), "type": node[NNCFNode.NODE_TYPE_ATTR]}
for attr in ["color", "label", "style"]:
if attr in node:
attrs_node[attr] = node[attr]
diff --git a/nncf/common/graph/layer_attributes.py b/nncf/common/graph/layer_attributes.py
index b702c79739c..b809d2583c1 100644
--- a/nncf/common/graph/layer_attributes.py
+++ b/nncf/common/graph/layer_attributes.py
@@ -13,7 +13,7 @@
from abc import abstractmethod
from dataclasses import dataclass
from enum import Enum
-from typing import Any, List, Tuple, Union
+from typing import Any, List, Optional, Tuple, Union
class Dtype(Enum):
@@ -30,25 +30,24 @@ class BaseLayerAttributes(ABC):
def __eq__(self, __o: object) -> bool:
return isinstance(__o, self.__class__) and self.__dict__ == __o.__dict__
- def get_backend_agnostic_attributes(self) -> "BaseLayerAttributes":
- return self
-
class MultipleInputLayerAttributes(BaseLayerAttributes):
- def __init__(self, axis: int):
+ def __init__(self, axis: int, num_inputs: Optional[int] = None):
"""
:param axis: the dimension over which the inputs are combined (e.g. concatenated).
+ :param num_inputs: Number of inputs.
"""
self.axis = axis
+ self.num_inputs = num_inputs
class MultipleOutputLayerAttributes(BaseLayerAttributes):
def __init__(self, chunks: Union[int, List], axis: int):
"""
- :param chunks: number of chunks (outputs)
- :param axis: the dimension along which to make multiple outputs (e.g. split the tensor).
+ :param chunks: Number of chunks (outputs).
+ :param axis: The dimension along which to make multiple outputs (e.g. split the tensor).
"""
self.chunks = chunks
self.axis = axis
diff --git a/nncf/common/graph/operator_metatypes.py b/nncf/common/graph/operator_metatypes.py
index fc9d89f5f27..185f8151251 100644
--- a/nncf/common/graph/operator_metatypes.py
+++ b/nncf/common/graph/operator_metatypes.py
@@ -29,6 +29,7 @@ class OperatorMetatype:
hw_config_names: List[str] = []
output_channel_axis: Optional[int] = None
ignored_input_ports: List[int] = []
+ target_input_ports: Optional[List[int]] = None
@classmethod
def get_all_aliases(cls) -> List[str]:
diff --git a/nncf/common/graph/patterns/manager.py b/nncf/common/graph/patterns/manager.py
index 09726360d25..0a3198852be 100644
--- a/nncf/common/graph/patterns/manager.py
+++ b/nncf/common/graph/patterns/manager.py
@@ -77,7 +77,7 @@ def _filter_patterns(
patterns_to_filter: Dict[PatternNames, Callable[[], GraphPattern]], device: TargetDevice, model_type: ModelType
) -> Dict[PatternNames, Callable[[], GraphPattern]]:
"""
- Returns all patterns from patterns_to_filter that are satisfited device and model_type parameters.
+ Returns all patterns from patterns_to_filter that are satisfied device and model_type parameters.
:param patterns_to_filter: Dictionary with the PatternNames instance as keys and creator function as a value.
:param device: TargetDevice instance.
diff --git a/nncf/common/hardware/configs/cpu.json b/nncf/common/hardware/configs/cpu.json
index 9adf25550e7..19ca1b76246 100644
--- a/nncf/common/hardware/configs/cpu.json
+++ b/nncf/common/hardware/configs/cpu.json
@@ -2,6 +2,13 @@
"target_device": "CPU",
"config": {
"quantization": {
+ "q8_a_sym": {
+ "bits": 8,
+ "mode": [
+ "symmetric"
+ ],
+ "granularity": "pertensor"
+ },
"q8_a": {
"bits": 8,
"mode": [
@@ -231,7 +238,6 @@
"activations": "q8_a"
}
},
- {"type": "Reshape"},
{
"type": "Concat",
"attributes": {
@@ -264,6 +270,13 @@
"activations": "q8_a"
}
},
+ {
+ "type": "ScaledDotProductAttention",
+ "quantization": {
+ "activations": "q8_a_sym"
+ }
+ },
+ {"type": "Reshape"},
{"type": "Flatten"},
{"type": "Squeeze"},
{"type": "Unsqueeze"},
diff --git a/nncf/common/hardware/opset.py b/nncf/common/hardware/opset.py
index 32b7069013c..2526976d3c7 100644
--- a/nncf/common/hardware/opset.py
+++ b/nncf/common/hardware/opset.py
@@ -58,3 +58,4 @@ class HWConfigOpName:
LSTMSEQUENCE = "LSTMSequence"
GRUSEQUENCE = "GRUSequence"
GROUPNORMALIZATION = "GroupNormalization"
+ SCALED_DOT_PRODUCT_ATTENTION = "ScaledDotProductAttention"
diff --git a/nncf/common/quantization/quantizer_propagation/solver.py b/nncf/common/quantization/quantizer_propagation/solver.py
index cfd856e3d62..c686a62d40d 100644
--- a/nncf/common/quantization/quantizer_propagation/solver.py
+++ b/nncf/common/quantization/quantizer_propagation/solver.py
@@ -1154,6 +1154,9 @@ def _setup_initial_quantizers_for_operator_node(
if input_port_id in metatype.ignored_input_ports:
continue
+ if metatype.target_input_ports is not None and input_port_id not in metatype.target_input_ports:
+ continue
+
edge = quant_prop_graph.edges[pred_ip_key, operator_node_key]
if not edge[QuantizerPropagationStateGraph.IS_INTEGER_PATH_EDGE_ATTR]:
pred_ip_key_vs_qconf_dict[pred_ip_key] = qconf_list
diff --git a/nncf/common/utils/dot_file_rw.py b/nncf/common/utils/dot_file_rw.py
index f956b22c8ac..f66699d8c62 100644
--- a/nncf/common/utils/dot_file_rw.py
+++ b/nncf/common/utils/dot_file_rw.py
@@ -101,6 +101,8 @@ def relabel_graph_for_dot_visualization(nx_graph: nx.Graph, from_reference: bool
hits = defaultdict(lambda: 0)
mapping = {}
for original_name in nx_graph.nodes():
+ if not isinstance(original_name, str):
+ continue
dot_name = original_name.replace(__CHARACTER_REPLACE_FROM, __CHARACTER_REPLACE_TO)
hits[dot_name] += 1
if hits[dot_name] > 1:
diff --git a/nncf/common/utils/os.py b/nncf/common/utils/os.py
index 23821432d34..78d06d2fb86 100644
--- a/nncf/common/utils/os.py
+++ b/nncf/common/utils/os.py
@@ -15,6 +15,11 @@
import psutil
+def fail_if_symlink(file: Path):
+ if file.is_symlink():
+ raise RuntimeError("File {} is a symbolic link, aborting.".format(str(file)))
+
+
@contextmanager
def safe_open(file: Path, *args, **kwargs):
"""
@@ -26,8 +31,7 @@ def safe_open(file: Path, *args, **kwargs):
:param file: The path to the file.
:return: A file object.
"""
- if file.is_symlink():
- raise RuntimeError("File {} is a symbolic link, aborting.".format(str(file)))
+ fail_if_symlink(file)
with open(str(file), *args, **kwargs) as f:
yield f
diff --git a/nncf/config/config.py b/nncf/config/config.py
index f6636f4a823..a0d3be2d28a 100644
--- a/nncf/config/config.py
+++ b/nncf/config/config.py
@@ -57,7 +57,7 @@ def from_json(cls, path: str) -> "NNCFConfig":
:param path: Path to the .json file containing the NNCF configuration.
"""
- file_path = Path(path).resolve()
+ file_path = Path(path)
with safe_open(file_path) as f:
loaded_json = json.load(f)
return cls.from_dict(loaded_json)
diff --git a/nncf/experimental/common/pruning/operations.py b/nncf/experimental/common/pruning/operations.py
index b2617ed0acf..f5fed641c88 100644
--- a/nncf/experimental/common/pruning/operations.py
+++ b/nncf/experimental/common/pruning/operations.py
@@ -114,7 +114,7 @@ def mask_propagation(
) -> None:
input_masks = get_input_masks(node, graph)
assert len(input_masks) in [1, 2]
- is_input_mask_empty_map = map(not_, input_masks)
+ is_input_mask_empty_map = list(map(not_, input_masks))
output_mask = node.attributes.get("output_mask", None)
input_tensors_shapes = [x.tensor_shape for x in graph.get_input_edges(node)]
node_id = node.node_id
diff --git a/nncf/experimental/torch/pruning/operations.py b/nncf/experimental/torch/pruning/operations.py
index 3c12de85cf6..aa6ffccc498 100644
--- a/nncf/experimental/torch/pruning/operations.py
+++ b/nncf/experimental/torch/pruning/operations.py
@@ -25,6 +25,7 @@
from nncf.experimental.common.pruning.operations import SplitPruningOp
from nncf.experimental.common.pruning.operations import StopMaskForwardPruningOp
from nncf.experimental.common.pruning.operations import TransposePruningOp
+from nncf.torch.graph.operator_metatypes import PTAdaptiveMaxPool2dMetatype
from nncf.torch.graph.operator_metatypes import PTAddMetatype
from nncf.torch.graph.operator_metatypes import PTAvgPool2dMetatype
from nncf.torch.graph.operator_metatypes import PTBatchNormMetatype
@@ -92,6 +93,7 @@ class PTIdentityMaskForwardPruningOp(IdentityMaskForwardPruningOp):
PTSigmoidMetatype,
PTSoftmaxMetatype,
PTAvgPool2dMetatype,
+ PTAdaptiveMaxPool2dMetatype,
PTMaxPool2dMetatype,
PTMeanMetatype,
PTDropoutMetatype,
diff --git a/nncf/experimental/torch/search_building_blocks/search_blocks.py b/nncf/experimental/torch/search_building_blocks/search_blocks.py
index 5c61489f585..0fa75c4d5b7 100644
--- a/nncf/experimental/torch/search_building_blocks/search_blocks.py
+++ b/nncf/experimental/torch/search_building_blocks/search_blocks.py
@@ -413,7 +413,7 @@ def get_potential_building_blocks(orig_graph: NNCFGraph, hw_fused_ops: bool, min
for shape, first_skipped_nodes in act_input_shape.items():
for first_skipped_node in first_skipped_nodes:
previous_nodes = sgraph.get_prev_nodes(first_skipped_node.node_key)
- if first_skipped_node.node_type == IgnoredNameOperators or len(previous_nodes) != 1:
+ if first_skipped_node.node_type in IgnoredNameOperators or len(previous_nodes) != 1:
continue
for end_node in act_output_shape[shape]:
if end_node.main_id <= first_skipped_node.main_id:
diff --git a/nncf/openvino/graph/layer_attributes.py b/nncf/openvino/graph/layer_attributes.py
index 49b2f64f479..f0933500a5c 100644
--- a/nncf/openvino/graph/layer_attributes.py
+++ b/nncf/openvino/graph/layer_attributes.py
@@ -9,24 +9,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from typing import Any, Dict, List, Optional, Tuple
+from typing import Any, Dict, List, Optional
-import openvino.runtime as ov
-
-from nncf.common.graph.graph import NNCFNode
from nncf.common.graph.layer_attributes import BaseLayerAttributes
-from nncf.common.graph.layer_attributes import ConvolutionLayerAttributes
-from nncf.common.graph.layer_attributes import GenericWeightedLayerAttributes
-from nncf.common.graph.layer_attributes import LinearLayerAttributes
-from nncf.common.graph.layer_attributes import WeightedLayerAttributes
-from nncf.openvino.graph.layout import OVLayoutElem
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionBackpropDataMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVDepthwiseConvolutionMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionBackpropDataMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVMatMulMetatype
-from nncf.openvino.graph.metatypes.openvino_metatypes import OVOpMetatype
class OVLayerAttributes(BaseLayerAttributes):
@@ -53,6 +38,10 @@ def __init__(
def constant_attributes(self) -> Dict[int, Any]:
return self._constant_attributes
+ @property
+ def layer_attributes(self) -> Optional[BaseLayerAttributes]:
+ return self._layer_attributes
+
@property
def input_attributes(self) -> Optional[Dict[Any, Any]]:
return self._inputs_attributes
@@ -66,150 +55,3 @@ def get_const_port_ids(self) -> List[int]:
if self._constant_attributes is not None:
return list(self._constant_attributes.keys())
return []
-
- def get_backend_agnostic_attributes(self):
- return self._layer_attributes
-
-
-OV_CONV_METATYPES = [
- OVConvolutionMetatype,
- OVDepthwiseConvolutionMetatype,
- OVGroupConvolutionMetatype,
- OVConvolutionBackpropDataMetatype,
- OVGroupConvolutionBackpropDataMetatype,
-]
-
-
-def get_conv_weights_layout_from_node(node: NNCFNode) -> List[OVLayoutElem]:
- """
- Calculates weights layout for a target convolution node.
-
- :param node: Target convolution node.
- :return: Target convolution Node weights layout.
- """
- layer_attributes = node.layer_attributes
- port_id = _get_constant_port_id_from_layer_attributes(layer_attributes)
- return get_conv_weights_layout(
- ov_metatype=node.metatype, weights_shape=layer_attributes.constant_attributes[port_id]["shape"]
- )
-
-
-def get_linear_weights_layout_from_node(node: NNCFNode) -> List[OVLayoutElem]:
- """
- Calculates weights layout for a target linear node.
-
- :param node: Target linear node.
- :return: Target linear Node weight layout.
- """
- layer_attributes = node.layer_attributes
- port_id = _get_constant_port_id_from_layer_attributes(layer_attributes)
- constant_layer_attrs = layer_attributes.constant_attributes[port_id]
- return get_linear_weights_layout(
- weights_shape=constant_layer_attrs["shape"],
- transpose=constant_layer_attrs["transpose"],
- port_id=port_id,
- )
-
-
-def _get_constant_port_id_from_layer_attributes(layer_attributes: OVLayerAttributes) -> int:
- """
- Returns constant ports id for convolutional and linear ops layer attributes.
-
- :param layer_attributes: Target convolutional/linear layer op layer attributes.
- :return: Constant port id for the target convolutional/linear model.
- """
- port_ids = list(layer_attributes.constant_attributes.keys())
- assert len(port_ids) == 1
- return port_ids[0]
-
-
-def get_conv_weights_layout(ov_metatype: OVOpMetatype, weights_shape: Tuple[int, ...]) -> List[OVLayoutElem]:
- """
- Calculates weights layout for a target convolution node.
-
- :param ov_metatype: Target convolution node OpenVINO metatype.
- :param weights_shape: Shape of the target convolution node weight.
- :return: Target convolution node weights layout.
- """
- weights_layout = ov_metatype.const_layout
- kernel_size = weights_shape[len(weights_layout) :]
- weights_layout += [OVLayoutElem.SPATIAL] * len(kernel_size)
- return tuple(weights_layout)
-
-
-def get_linear_weights_layout(weights_shape: Tuple[int, ...], transpose: bool, port_id: int) -> List[OVLayoutElem]:
- """
- Calculates weights layout for a target linear node.
-
- :param weights_shape: Shape of the target linear node weight.
- :param port_id: Port id of the target liner node weights.
- :return: Target linear node weight layout.
- """
- weights_layout = [OVLayoutElem.SPATIAL] * (len(weights_shape) - 2)
- if len(weights_shape) > 1:
- if (transpose and port_id == 0) or (not transpose and port_id == 1):
- weights_layout += [OVLayoutElem.C_IN, OVLayoutElem.C_OUT]
- else:
- weights_layout += [OVLayoutElem.C_OUT, OVLayoutElem.C_IN]
- else:
- weights_layout += [OVLayoutElem.C_IN]
- return tuple(weights_layout)
-
-
-def get_weighted_layer_attributes(
- ov_node: ov.Node, ov_metatype: OVOpMetatype, constant_attributes: Dict[int, Any]
-) -> WeightedLayerAttributes:
- """
- Funciton retrieves common layer attributes from the given node.
-
- :param ov_node: TargetOpenvino graph node instance.
- :param ov_metatype: NNCF Openvino metatype of the given node.
- :param constant_attributes: Constant attributes collected for the given node.
- :return: Weighted layer attributes for the given node.
- """
- if len(constant_attributes) != 1:
- return None
-
- port_id, attrs = constant_attributes.copy().popitem()
- if ov_metatype in OV_CONV_METATYPES:
- node_attrs = ov_node.get_attributes()
- kwargs = {
- "weight_requires_grad": False,
- "stride": tuple(node_attrs["strides"]),
- "dilations": node_attrs["dilations"],
- "transpose": ov_metatype in [OVConvolutionBackpropDataMetatype, OVGroupConvolutionBackpropDataMetatype],
- # TODO: ticket 114378: unify pad attribute
- "padding_values": tuple(node_attrs["pads_begin"] + node_attrs["pads_end"]),
- }
- weights_shape = attrs["shape"]
- weights_layout = get_conv_weights_layout(ov_metatype=ov_metatype, weights_shape=weights_shape)
- kwargs.update(
- {
- "in_channels": weights_shape[weights_layout.index(OVLayoutElem.C_IN)],
- "out_channels": weights_shape[weights_layout.index(OVLayoutElem.C_OUT)],
- "kernel_size": tuple(
- dim for dim, elem in zip(weights_shape, weights_layout) if elem == OVLayoutElem.SPATIAL
- ),
- "groups": weights_shape[weights_layout.index(OVLayoutElem.GROUPS)]
- if OVLayoutElem.GROUPS in weights_layout
- else 1,
- }
- )
-
- return ConvolutionLayerAttributes(**kwargs)
- if ov_metatype == OVMatMulMetatype:
- weights_shape = attrs["shape"]
- weights_layout = get_linear_weights_layout(
- weights_shape=weights_shape, transpose=attrs["transpose"], port_id=port_id
- )
-
- kwargs = {
- "weight_requires_grad": False,
- "in_features": weights_shape[weights_layout.index(OVLayoutElem.C_IN)],
- "out_features": weights_shape[weights_layout.index(OVLayoutElem.C_OUT)]
- if OVLayoutElem.C_OUT in weights_layout
- else None,
- "with_bias": False,
- }
- return LinearLayerAttributes(**kwargs)
- return GenericWeightedLayerAttributes(weight_requires_grad=False, weight_shape=attrs.get("shape", None))
diff --git a/nncf/openvino/graph/layout.py b/nncf/openvino/graph/layout.py
index 5855d9aba92..92152277469 100644
--- a/nncf/openvino/graph/layout.py
+++ b/nncf/openvino/graph/layout.py
@@ -10,6 +10,16 @@
# limitations under the License.
from enum import Enum
+from typing import List, Tuple
+
+from nncf.common.graph.graph import NNCFNode
+from nncf.openvino.graph.layer_attributes import OVLayerAttributes
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionBackpropDataMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVDepthwiseConvolutionMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionBackpropDataMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVOpMetatype
class OVLayoutElem(Enum):
@@ -25,3 +35,88 @@ class OVLayoutElem(Enum):
C_OUT = "channels_out"
SPATIAL = "spatial"
GROUPS = "groups"
+
+
+_CONV_BASE_CONST_LAYOUT = {
+ OVConvolutionMetatype: [OVLayoutElem.C_OUT, OVLayoutElem.C_IN],
+ OVConvolutionBackpropDataMetatype: [OVLayoutElem.C_IN, OVLayoutElem.C_OUT],
+ OVDepthwiseConvolutionMetatype: [OVLayoutElem.GROUPS, OVLayoutElem.C_OUT, OVLayoutElem.C_IN],
+ OVGroupConvolutionMetatype: [OVLayoutElem.GROUPS, OVLayoutElem.C_OUT, OVLayoutElem.C_IN],
+ OVGroupConvolutionBackpropDataMetatype: [OVLayoutElem.GROUPS, OVLayoutElem.C_IN, OVLayoutElem.C_OUT],
+}
+
+
+def get_conv_weights_layout_from_node(node: NNCFNode) -> List[OVLayoutElem]:
+ """
+ Calculates weights layout for a target convolution node.
+
+ :param node: Target convolution node.
+ :return: Target convolution Node weights layout.
+ """
+ layer_attributes = node.layer_attributes
+ port_id = _get_constant_port_id_from_layer_attributes(layer_attributes)
+ return get_conv_weights_layout(
+ ov_metatype=node.metatype, weights_shape=layer_attributes.constant_attributes[port_id]["shape"]
+ )
+
+
+def get_linear_weights_layout_from_node(node: NNCFNode) -> List[OVLayoutElem]:
+ """
+ Calculates weights layout for a target linear node.
+
+ :param node: Target linear node.
+ :return: Target linear Node weight layout.
+ """
+ layer_attributes = node.layer_attributes
+ port_id = _get_constant_port_id_from_layer_attributes(layer_attributes)
+ constant_layer_attrs = layer_attributes.constant_attributes[port_id]
+ return get_linear_weights_layout(
+ weights_shape=constant_layer_attrs["shape"],
+ transpose=constant_layer_attrs["transpose"],
+ port_id=port_id,
+ )
+
+
+def get_conv_weights_layout(ov_metatype: OVOpMetatype, weights_shape: Tuple[int, ...]) -> List[OVLayoutElem]:
+ """
+ Calculates weights layout for a target convolution node.
+
+ :param ov_metatype: Target convolution node OpenVINO metatype.
+ :param weights_shape: Shape of the target convolution node weight.
+ :return: Target convolution node weights layout.
+ """
+ weights_layout = _CONV_BASE_CONST_LAYOUT[ov_metatype]
+ kernel_size = weights_shape[len(weights_layout) :]
+ weights_layout += [OVLayoutElem.SPATIAL] * len(kernel_size)
+ return tuple(weights_layout)
+
+
+def get_linear_weights_layout(weights_shape: Tuple[int, ...], transpose: bool, port_id: int) -> List[OVLayoutElem]:
+ """
+ Calculates weights layout for a target linear node.
+
+ :param weights_shape: Shape of the target linear node weight.
+ :param port_id: Port id of the target liner node weights.
+ :return: Target linear node weight layout.
+ """
+ weights_layout = [OVLayoutElem.SPATIAL] * (len(weights_shape) - 2)
+ if len(weights_shape) > 1:
+ if (transpose and port_id == 0) or (not transpose and port_id == 1):
+ weights_layout += [OVLayoutElem.C_IN, OVLayoutElem.C_OUT]
+ else:
+ weights_layout += [OVLayoutElem.C_OUT, OVLayoutElem.C_IN]
+ else:
+ weights_layout += [OVLayoutElem.C_IN]
+ return tuple(weights_layout)
+
+
+def _get_constant_port_id_from_layer_attributes(layer_attributes: OVLayerAttributes) -> int:
+ """
+ Returns constant ports id for convolutional and linear ops layer attributes.
+
+ :param layer_attributes: Target convolutional/linear layer op layer attributes.
+ :return: Constant port id for the target convolutional/linear model.
+ """
+ port_ids = list(layer_attributes.constant_attributes.keys())
+ assert len(port_ids) == 1
+ return port_ids[0]
diff --git a/nncf/openvino/graph/metatypes/groups.py b/nncf/openvino/graph/metatypes/groups.py
index ad75e9f63c7..31f78cbd8b4 100644
--- a/nncf/openvino/graph/metatypes/groups.py
+++ b/nncf/openvino/graph/metatypes/groups.py
@@ -81,6 +81,7 @@
ov_metatypes.OVLSTMSequenceMetatype,
ov_metatypes.OVGRUSequenceMetatype,
ov_metatypes.OVGroupNormalizationMetatype,
+ ov_metatypes.OVScaledDotProductAttentionMetatype,
]
@@ -189,3 +190,12 @@
# TODO: add all metatypes with bias
ov_metatypes.OVMatMulMetatype,
]
+
+
+CONV_OPERATIONS = [
+ ov_metatypes.OVConvolutionMetatype,
+ ov_metatypes.OVDepthwiseConvolutionMetatype,
+ ov_metatypes.OVGroupConvolutionMetatype,
+ ov_metatypes.OVConvolutionBackpropDataMetatype,
+ ov_metatypes.OVGroupConvolutionBackpropDataMetatype,
+]
diff --git a/nncf/openvino/graph/metatypes/openvino_metatypes.py b/nncf/openvino/graph/metatypes/openvino_metatypes.py
index ab1f99a014d..f6d89d14b9f 100644
--- a/nncf/openvino/graph/metatypes/openvino_metatypes.py
+++ b/nncf/openvino/graph/metatypes/openvino_metatypes.py
@@ -20,7 +20,6 @@
from nncf.common.graph.operator_metatypes import OperatorMetatypeRegistry
from nncf.common.graph.operator_metatypes import UnknownMetatype
from nncf.common.hardware.opset import HWConfigOpName
-from nncf.openvino.graph.layout import OVLayoutElem
OV_OPERATOR_METATYPES = OperatorMetatypeRegistry("openvino_operator_metatypes")
@@ -59,8 +58,6 @@ class OVConvolutionMetatype(OVOpMetatype):
name = "ConvOp"
op_names = ["Convolution"]
hw_config_names = [HWConfigOpName.CONVOLUTION]
- const_channel_axis = [0]
- const_layout = [OVLayoutElem.C_OUT, OVLayoutElem.C_IN]
output_channel_axis = 1
@@ -69,8 +66,6 @@ class OVConvolutionBackpropDataMetatype(OVOpMetatype):
name = "ConvBackpropDataOp"
op_names = ["ConvolutionBackpropData"]
hw_config_names = [HWConfigOpName.CONVOLUTION]
- const_channel_axis = [1]
- const_layout = [OVLayoutElem.C_IN, OVLayoutElem.C_OUT]
output_channel_axis = 1
@@ -79,8 +74,6 @@ class OVDepthwiseConvolutionMetatype(OVOpMetatype):
name = "DepthwiseConvolutionOp"
op_names = ["GroupConvolution"]
hw_config_names = [HWConfigOpName.DEPTHWISECONVOLUTION]
- const_channel_axis = [0, 1]
- const_layout = [OVLayoutElem.GROUPS, OVLayoutElem.C_OUT, OVLayoutElem.C_IN]
output_channel_axis = 1
@classmethod
@@ -94,8 +87,6 @@ class OVGroupConvolutionMetatype(OVOpMetatype):
op_names = ["GroupConvolution"]
hw_config_names = [HWConfigOpName.CONVOLUTION]
subtypes = [OVDepthwiseConvolutionMetatype]
- const_channel_axis = [0, 1]
- const_layout = [OVLayoutElem.GROUPS, OVLayoutElem.C_OUT, OVLayoutElem.C_IN]
output_channel_axis = 1
@@ -104,8 +95,6 @@ class OVGroupConvolutionBackpropDataMetatype(OVOpMetatype):
name = "GroupConvolutionBackpropDataOp"
op_names = ["GroupConvolutionBackpropData"]
hw_config_names = [HWConfigOpName.CONVOLUTION]
- const_channel_axis = [0, 2]
- const_layout = [OVLayoutElem.GROUPS, OVLayoutElem.C_IN, OVLayoutElem.C_OUT]
output_channel_axis = 1
@@ -114,9 +103,6 @@ class OVMatMulMetatype(OVOpMetatype):
name = "MatMulOp"
op_names = ["MatMul"]
hw_config_names = [HWConfigOpName.MATMUL]
- const_channel_axis = [
- -1
- ] # const layout: [B, ..., Y, X], where const is the second operand of matrix multiplication
output_channel_axis = -1
@@ -698,6 +684,14 @@ class OVGroupNormalizationMetatype(OVOpMetatype):
hw_config_names = [HWConfigOpName.GROUPNORMALIZATION]
+@OV_OPERATOR_METATYPES.register()
+class OVScaledDotProductAttentionMetatype(OVOpMetatype):
+ name = "ScaledDotProductAttentionOp"
+ op_names = ["ScaledDotProductAttention"]
+ hw_config_names = [HWConfigOpName.SCALED_DOT_PRODUCT_ATTENTION]
+ target_input_ports = [0, 1]
+
+
def get_operator_metatypes() -> List[Type[OperatorMetatype]]:
"""
Returns a list of the operator metatypes.
diff --git a/nncf/openvino/graph/model_transformer.py b/nncf/openvino/graph/model_transformer.py
index 9813fbdc684..bfb7bc1b258 100644
--- a/nncf/openvino/graph/model_transformer.py
+++ b/nncf/openvino/graph/model_transformer.py
@@ -354,9 +354,12 @@ def _set_const_value(node_with_const: ov.Node, const_port_id: int, const_value:
if const_node is None:
raise RuntimeError("Constant node was expected but could not find it.")
- const_shape = const_node.get_data().shape
- const_value = np.reshape(const_value, const_shape)
- new_const_node = opset.constant(const_value, dtype=const_node.get_element_type())
+ const_shape = const_node.data.shape
+ const_dtype = const_node.data.dtype
+ const_value = np.reshape(const_value, const_shape).astype(const_dtype)
+
+ # TODO(andrey-churkin): Replace on opset13.constant() in a future release
+ new_const_node = ov.op.Constant(const_value, shared_memory=True)
new_const_node.set_friendly_name(const_node.get_friendly_name())
const_port.replace_source_output(new_const_node.output(0))
@@ -567,5 +570,5 @@ def _apply_extract_if_body_transformation(
name_to_node_mapping = OVModelTransformer._get_name_to_node_mapping(model)
ov_node = name_to_node_mapping[transformation.if_node_name]
if transformation.if_body_condition:
- return ov.Model(ov_node.get_function(0)) # ticket: 121115
- return ov.Model(ov_node.get_function(1)) # ticket: 121115
+ return ov_node.get_function(0)
+ return ov_node.get_function(1)
diff --git a/nncf/openvino/graph/model_utils.py b/nncf/openvino/graph/model_utils.py
index 1abf79ee14d..21013bc07c7 100644
--- a/nncf/openvino/graph/model_utils.py
+++ b/nncf/openvino/graph/model_utils.py
@@ -9,13 +9,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from collections import deque
+from typing import List
import openvino.runtime as ov
from nncf.common.factory import ModelTransformerFactory
from nncf.common.graph.graph import NNCFGraph
+from nncf.common.graph.graph import NNCFNode
from nncf.common.graph.transformations.layout import TransformationLayout
from nncf.openvino.graph.metatypes.groups import FAKE_QUANTIZE_OPERATIONS
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVReadValueMetatype
from nncf.openvino.graph.transformations.command_creation import OVCommandCreator
@@ -47,3 +50,13 @@ def remove_fq_from_inputs(model: ov.Model, graph: NNCFGraph) -> ov.Model:
nodes_queue.extend(graph.get_next_nodes(current_node))
return model_transformer.transform(transformation_layout)
+
+
+def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ """
+ Get a list of NNCFNodes to use as start nodes for activation path tracing.
+
+ :param nncf_graph: NNCFGraph to work with.
+ :return: Target NNCFGraph input nodes.
+ """
+ return nncf_graph.get_input_nodes() + nncf_graph.get_nodes_by_metatypes([OVReadValueMetatype])
diff --git a/nncf/openvino/graph/nncf_graph_builder.py b/nncf/openvino/graph/nncf_graph_builder.py
index af45c17953e..86197942032 100644
--- a/nncf/openvino/graph/nncf_graph_builder.py
+++ b/nncf/openvino/graph/nncf_graph_builder.py
@@ -18,7 +18,6 @@
from nncf.common.graph.layer_attributes import Dtype
from nncf.common.graph.operator_metatypes import OperatorMetatype
from nncf.openvino.graph.layer_attributes import OVLayerAttributes
-from nncf.openvino.graph.layer_attributes import get_weighted_layer_attributes
from nncf.openvino.graph.metatypes.groups import OPERATIONS_WITH_CONST_PORT_ID
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionBackpropDataMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionBackpropDataMetatype
@@ -27,6 +26,7 @@
from nncf.openvino.graph.metatypes.openvino_metatypes import OVMatMulMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import get_node_metatype
from nncf.openvino.graph.metatypes.openvino_metatypes import get_operation_const_op
+from nncf.openvino.graph.node_utils import get_weighted_layer_attributes
class GraphConverter:
diff --git a/nncf/openvino/graph/node_utils.py b/nncf/openvino/graph/node_utils.py
index 30792d61262..7a8eacb1693 100644
--- a/nncf/openvino/graph/node_utils.py
+++ b/nncf/openvino/graph/node_utils.py
@@ -9,7 +9,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from typing import Any, Callable, List, Optional, Tuple, Type
+from typing import Any, Callable, Dict, List, Optional, Tuple, Type
import numpy as np
import openvino.runtime as ov
@@ -17,16 +17,27 @@
from nncf.common.graph.graph import NNCFGraph
from nncf.common.graph.graph import NNCFNode
+from nncf.common.graph.layer_attributes import ConvolutionLayerAttributes
+from nncf.common.graph.layer_attributes import GenericWeightedLayerAttributes
+from nncf.common.graph.layer_attributes import LinearLayerAttributes
+from nncf.common.graph.layer_attributes import WeightedLayerAttributes
from nncf.common.tensor_statistics.collectors import ReductionAxes
-from nncf.openvino.graph.layer_attributes import get_linear_weights_layout_from_node
from nncf.openvino.graph.layout import OVLayoutElem
+from nncf.openvino.graph.layout import get_conv_weights_layout
+from nncf.openvino.graph.layout import get_conv_weights_layout_from_node
+from nncf.openvino.graph.layout import get_linear_weights_layout
+from nncf.openvino.graph.layout import get_linear_weights_layout_from_node
+from nncf.openvino.graph.metatypes.groups import CONV_OPERATIONS
from nncf.openvino.graph.metatypes.groups import OPERATIONS_WITH_BIAS
from nncf.openvino.graph.metatypes.groups import OPERATIONS_WITH_WEIGHTS
from nncf.openvino.graph.metatypes.openvino_metatypes import OVAddMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConstantMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvertMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionBackpropDataMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVGroupConvolutionBackpropDataMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVIfMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVMatMulMetatype
+from nncf.openvino.graph.metatypes.openvino_metatypes import OVOpMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import get_node_metatype
InplaceInsertionFnType = Callable[[ov.Node, int], ov.Node]
@@ -79,7 +90,7 @@ def get_const_value(const_node: ov.Node) -> np.ndarray:
:param const_node: OpenVINO node.
:return: The constant value.
"""
- return const_node.get_vector().reshape(const_node.get_output_shape(0))
+ return const_node.data
def get_bias_value(node_with_bias: NNCFNode, nncf_graph: NNCFGraph, model: ov.Model) -> np.ndarray:
@@ -351,10 +362,12 @@ def get_weight_channel_axes(node: NNCFNode) -> List[int]:
if node.metatype not in OPERATIONS_WITH_WEIGHTS:
raise ValueError("Channel axis cannot be defined for operation without weights.")
- if node.metatype != OVMatMulMetatype:
- return node.metatype.const_channel_axis
-
- return get_matmul_channel_axes(node)
+ if node.metatype in CONV_OPERATIONS:
+ weights_layout = get_conv_weights_layout_from_node(node)
+ return [idx for idx, elem in enumerate(weights_layout) if elem in [OVLayoutElem.GROUPS, OVLayoutElem.C_OUT]]
+ elif node.metatype == OVMatMulMetatype:
+ return get_matmul_channel_axes(node)
+ return node.metatype.const_channel_axis
def get_matmul_channel_axes(node: ov.Node) -> List[int]:
@@ -396,3 +409,62 @@ def create_bias_tensor(node_without_bias: NNCFNode, graph: NNCFGraph, value: Any
channel_axis = node_without_bias.metatype.output_channel_axis
bias_shape[channel_axis] = node_shape[1]
return np.full(bias_shape, value)
+
+
+def get_weighted_layer_attributes(
+ ov_node: ov.Node, ov_metatype: OVOpMetatype, constant_attributes: Dict[int, Any]
+) -> WeightedLayerAttributes:
+ """
+ Funciton retrieves common layer attributes from the given node.
+
+ :param ov_node: TargetOpenvino graph node instance.
+ :param ov_metatype: NNCF Openvino metatype of the given node.
+ :param constant_attributes: Constant attributes collected for the given node.
+ :return: Weighted layer attributes for the given node.
+ """
+ if len(constant_attributes) != 1:
+ return None
+
+ port_id, attrs = constant_attributes.copy().popitem()
+ if ov_metatype in CONV_OPERATIONS:
+ node_attrs = ov_node.get_attributes()
+ kwargs = {
+ "weight_requires_grad": False,
+ "stride": tuple(node_attrs["strides"]),
+ "dilations": node_attrs["dilations"],
+ "transpose": ov_metatype in [OVConvolutionBackpropDataMetatype, OVGroupConvolutionBackpropDataMetatype],
+ # TODO: ticket 114378: unify pad attribute
+ "padding_values": tuple(node_attrs["pads_begin"] + node_attrs["pads_end"]),
+ }
+ weights_shape = attrs["shape"]
+ weights_layout = get_conv_weights_layout(ov_metatype=ov_metatype, weights_shape=weights_shape)
+ kwargs.update(
+ {
+ "in_channels": weights_shape[weights_layout.index(OVLayoutElem.C_IN)],
+ "out_channels": weights_shape[weights_layout.index(OVLayoutElem.C_OUT)],
+ "kernel_size": tuple(
+ dim for dim, elem in zip(weights_shape, weights_layout) if elem == OVLayoutElem.SPATIAL
+ ),
+ "groups": weights_shape[weights_layout.index(OVLayoutElem.GROUPS)]
+ if OVLayoutElem.GROUPS in weights_layout
+ else 1,
+ }
+ )
+
+ return ConvolutionLayerAttributes(**kwargs)
+ if ov_metatype == OVMatMulMetatype:
+ weights_shape = attrs["shape"]
+ weights_layout = get_linear_weights_layout(
+ weights_shape=weights_shape, transpose=attrs["transpose"], port_id=port_id
+ )
+
+ kwargs = {
+ "weight_requires_grad": False,
+ "in_features": weights_shape[weights_layout.index(OVLayoutElem.C_IN)],
+ "out_features": weights_shape[weights_layout.index(OVLayoutElem.C_OUT)]
+ if OVLayoutElem.C_OUT in weights_layout
+ else None,
+ "with_bias": False,
+ }
+ return LinearLayerAttributes(**kwargs)
+ return GenericWeightedLayerAttributes(weight_requires_grad=False, weight_shape=attrs.get("shape", None))
diff --git a/nncf/openvino/quantization/quantize_model.py b/nncf/openvino/quantization/quantize_model.py
index 2a45bd9b8f3..ee35ea8bc02 100644
--- a/nncf/openvino/quantization/quantize_model.py
+++ b/nncf/openvino/quantization/quantize_model.py
@@ -11,7 +11,7 @@
import importlib
from copy import deepcopy
-from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, TypeVar, Union
+from typing import Any, Callable, Iterable, List, Optional, Tuple, TypeVar, Union
import openvino.runtime as ov
from openvino._offline_transformations import compress_quantize_weights_transformation
@@ -24,6 +24,7 @@
from nncf.openvino.quantization.backend_parameters import BackendParameters
from nncf.openvino.quantization.backend_parameters import is_weight_compression_needed
from nncf.openvino.quantization.quantize_ifmodel import apply_algorithm_if_bodies
+from nncf.openvino.rt_info import dump_parameters
from nncf.parameters import DropType
from nncf.parameters import ModelType
from nncf.parameters import TargetDevice
@@ -71,27 +72,6 @@ def should_use_pot(advanced_parameters: Optional[AdvancedQuantizationParameters]
return True
-def dump_parameters(model: ov.Model, parameters: Dict, path: Optional[List] = None) -> None:
- """
- Dumps input parameters into Model's meta section.
-
- :param model: ov.Model instance.
- :param parameters: Incoming dictionary with parameters to save.
- :param path: Optional list of the paths.
- """
- try:
- path = path if path else []
- for key, value in parameters.items():
- # Special condition for composed fields like IgnoredScope
- if isinstance(value, IgnoredScope):
- dump_parameters(model, value.__dict__, [key])
- continue
- rt_path = ["nncf", "quantization"] + path + [key]
- model.set_rt_info(str(value), rt_path)
- except RuntimeError as e:
- nncf_logger.debug(f"Unable to dump optimization parameters due to error: {e}")
-
-
@tracked_function(NNCF_OV_CATEGORY, [CompressionStartedWithQuantizeApi(), "target_device", "preset"])
def native_quantize_if_op_impl(
model: ov.Model,
diff --git a/nncf/openvino/rt_info.py b/nncf/openvino/rt_info.py
new file mode 100644
index 00000000000..45f61923a70
--- /dev/null
+++ b/nncf/openvino/rt_info.py
@@ -0,0 +1,41 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from typing import Dict, List, Optional
+
+import openvino.runtime as ov
+
+from nncf.common.logging import nncf_logger
+from nncf.scopes import IgnoredScope
+
+
+def dump_parameters(
+ model: ov.Model, parameters: Dict, algo_name: Optional[str] = "quantization", path: Optional[List] = None
+) -> None:
+ """
+ Dumps the given parameters into Model's meta section.
+
+ :param model: ov.Model instance.
+ :param algo_name: Name of the algorithm, to which the parameters refer.
+ :param parameters: Incoming dictionary with parameters to save.
+ :param path: Optional list of the paths.
+ """
+ try:
+ path = path if path else []
+ for key, value in parameters.items():
+ # Special condition for composed fields like IgnoredScope
+ if isinstance(value, IgnoredScope):
+ dump_parameters(model, value.__dict__, algo_name, [key])
+ continue
+ rt_path = ["nncf", algo_name] + path + [key]
+ model.set_rt_info(str(value), rt_path)
+ except RuntimeError as e:
+ nncf_logger.debug(f"Unable to dump optimization parameters due to error: {e}")
diff --git a/nncf/parameters.py b/nncf/parameters.py
index fd42a7e6814..97ccea267be 100644
--- a/nncf/parameters.py
+++ b/nncf/parameters.py
@@ -62,10 +62,15 @@ class DropType(Enum):
class CompressWeightsMode(Enum):
"""
Defines a mode for weight compression.
- :param INT8: Stands for 8-bit integer quantization of all weights.
+ :param INT8_SYM: Stands for 8-bit integer symmetric quantization of all weights.
+ Weights are quantized symmetrically with a fixed zero point equals to 128.
+ https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#symmetric-quantization
+ :param INT8_ASYM: The same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
+ https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#asymmetric-quantization
:param INT4_SYM: Stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#symmetric-quantization
@@ -73,9 +78,12 @@ class CompressWeightsMode(Enum):
with a typical non-fixed zero point.
https://github.com/openvinotoolkit/nncf/blob/develop/docs/compression_algorithms/Quantization.md#asymmetric-quantization
:param NF4: The the same as INT4_SYM mode, but primary precision is NF4 data type without zero point.
+ :param INT8: Mode is deprecated and will be removed in future releases. Please use `INT8_ASYM` instead.
"""
- INT8 = "int8"
+ INT8_SYM = "int8_sym"
+ INT8_ASYM = "int8_asym"
INT4_SYM = "int4_sym"
INT4_ASYM = "int4_asym"
NF4 = "nf4"
+ INT8 = "int8" # Deprecated mode
diff --git a/nncf/quantization/algorithms/accuracy_control/backend.py b/nncf/quantization/algorithms/accuracy_control/backend.py
index 2133673eb9b..1a615176d39 100644
--- a/nncf/quantization/algorithms/accuracy_control/backend.py
+++ b/nncf/quantization/algorithms/accuracy_control/backend.py
@@ -51,6 +51,16 @@ def get_quantizable_metatypes() -> List[OperatorMetatype]:
:return: The list of metatypes for operations that may be quantized.
"""
+ @staticmethod
+ @abstractmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ """
+ Returns a list of NNCFNodes to use as start nodes for activation path tracing.
+
+ :param nncf_graph: NNCFGraph to get the start nodes.
+ :return: List of NNCFNodes to use as start nodes for activation path tracing.
+ """
+
@staticmethod
@abstractmethod
def get_quantize_agnostic_metatypes() -> List[OperatorMetatype]:
diff --git a/nncf/quantization/algorithms/accuracy_control/openvino_backend.py b/nncf/quantization/algorithms/accuracy_control/openvino_backend.py
index c8344f4fec7..c28ca5dee51 100644
--- a/nncf/quantization/algorithms/accuracy_control/openvino_backend.py
+++ b/nncf/quantization/algorithms/accuracy_control/openvino_backend.py
@@ -25,6 +25,7 @@
from nncf.openvino.graph.metatypes.groups import SHAPEOF_OPERATIONS
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConcatMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVOpMetatype
+from nncf.openvino.graph.model_utils import get_start_nodes_for_activation_path_tracing
from nncf.openvino.graph.node_utils import get_bias_value
from nncf.openvino.graph.node_utils import get_weight_value
from nncf.openvino.graph.node_utils import is_node_with_bias
@@ -58,6 +59,10 @@ def get_quantize_agnostic_metatypes() -> List[OVOpMetatype]:
def get_shapeof_metatypes() -> List[OVOpMetatype]:
return SHAPEOF_OPERATIONS
+ @staticmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ return get_start_nodes_for_activation_path_tracing(nncf_graph)
+
# Manipulations with bias value and weights
@staticmethod
diff --git a/nncf/quantization/algorithms/accuracy_control/ranker.py b/nncf/quantization/algorithms/accuracy_control/ranker.py
index fc946b00140..1290d3ddb5e 100644
--- a/nncf/quantization/algorithms/accuracy_control/ranker.py
+++ b/nncf/quantization/algorithms/accuracy_control/ranker.py
@@ -99,7 +99,9 @@ def find_groups_of_quantizers_to_rank(self, quantized_model_graph: NNCFGraph) ->
]
quantized_model_graph_without_shapeof = remove_shapeof_subgraphs(
- deepcopy(quantized_model_graph), self._algo_backend.get_shapeof_metatypes()
+ deepcopy(quantized_model_graph),
+ self._algo_backend.get_shapeof_metatypes(),
+ self._algo_backend.get_start_nodes_for_activation_path_tracing(quantized_model_graph),
)
for quantizer_node in reversed(quantizers):
diff --git a/nncf/quantization/algorithms/channel_alignment/algorithm.py b/nncf/quantization/algorithms/channel_alignment/algorithm.py
index 07884540b81..46754c903a8 100644
--- a/nncf/quantization/algorithms/channel_alignment/algorithm.py
+++ b/nncf/quantization/algorithms/channel_alignment/algorithm.py
@@ -260,7 +260,7 @@ def _align_scales(
return updated_conv_in_value, updated_conv_out_value, updated_bias_in_value
def _check_consumer_conv_node(self, conv_node: NNCFNode) -> bool:
- attrs = conv_node.layer_attributes.get_backend_agnostic_attributes()
+ attrs = self._backend_entity.get_conv_layer_attributes(conv_node)
if attrs is None:
return False
# Check groups amount == 1
diff --git a/nncf/quantization/algorithms/channel_alignment/backend.py b/nncf/quantization/algorithms/channel_alignment/backend.py
index 42486547eac..9ab51977d4f 100644
--- a/nncf/quantization/algorithms/channel_alignment/backend.py
+++ b/nncf/quantization/algorithms/channel_alignment/backend.py
@@ -17,6 +17,7 @@
from nncf.common.graph import NNCFGraph
from nncf.common.graph import NNCFNode
+from nncf.common.graph.layer_attributes import ConvolutionLayerAttributes
from nncf.common.graph.transformations.commands import TargetPoint
from nncf.common.graph.transformations.commands import TargetType
from nncf.common.tensor_statistics.collectors import TensorStatisticCollectorBase
@@ -107,6 +108,15 @@ def get_statistic_collector(
:return: Backend-specific tensor collector that collects medians of minimal and maximal quantiles.
"""
+ @staticmethod
+ @abstractmethod
+ def get_conv_layer_attributes(node: NNCFNode) -> ConvolutionLayerAttributes:
+ """
+ Returns convolutional layer attributes of given node if they are present and None otherwise.
+ :param node: NNCFNode to take convolutional layer attributes from.
+ :return: Convolutional layer attributes of given node if they are present and None otherwise
+ """
+
@staticmethod
@abstractmethod
def get_dims_descriptor(node: NNCFNode) -> LayoutDescriptor:
@@ -147,6 +157,7 @@ def create_bias_tensor(node: NNCFNode, nncf_graph: NNCFGraph, value: Any) -> np.
def get_channel_agnostic_reduction_axes(channel_axis: int, shape: Tuple[int]) -> Tuple[int]:
"""
Returns filtered reduction shape without axes that corresponds channels.
+ Example: channel_axis=-2, shape=(1, 3, 2, 4), result=(0, 1, 3).
:param channel_axes: List of the channel axes.
:param shape: Shape that need to be filtered.
diff --git a/nncf/quantization/algorithms/channel_alignment/openvino_backend.py b/nncf/quantization/algorithms/channel_alignment/openvino_backend.py
index 8b98aeb55a5..a92a86bb0ae 100644
--- a/nncf/quantization/algorithms/channel_alignment/openvino_backend.py
+++ b/nncf/quantization/algorithms/channel_alignment/openvino_backend.py
@@ -16,15 +16,16 @@
from nncf.common.graph import NNCFGraph
from nncf.common.graph import NNCFNode
+from nncf.common.graph.layer_attributes import ConvolutionLayerAttributes
from nncf.common.graph.transformations.commands import TargetType
from nncf.common.tensor_statistics.collectors import ReductionAxes
from nncf.common.tensor_statistics.collectors import TensorStatisticCollectorBase
from nncf.experimental.common.tensor_statistics.collectors import MedianAggregator
from nncf.experimental.common.tensor_statistics.collectors import TensorCollector
-from nncf.openvino.graph.layer_attributes import OV_CONV_METATYPES
-from nncf.openvino.graph.layer_attributes import get_conv_weights_layout_from_node
-from nncf.openvino.graph.layer_attributes import get_linear_weights_layout_from_node
from nncf.openvino.graph.layout import OVLayoutElem
+from nncf.openvino.graph.layout import get_conv_weights_layout_from_node
+from nncf.openvino.graph.layout import get_linear_weights_layout_from_node
+from nncf.openvino.graph.metatypes.groups import CONV_OPERATIONS
from nncf.openvino.graph.metatypes.openvino_metatypes import OVAddMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVDepthwiseConvolutionMetatype
@@ -104,7 +105,7 @@ def is_node_with_bias(node: NNCFNode, nncf_graph: NNCFGraph) -> bool:
@staticmethod
def get_dims_descriptor(node: NNCFNode) -> LayoutDescriptor:
- if node.metatype in OV_CONV_METATYPES:
+ if node.metatype in CONV_OPERATIONS:
weights_layout = get_conv_weights_layout_from_node(node=node)
elif node.metatype == OVMatMulMetatype:
weights_layout = get_linear_weights_layout_from_node(node=node)
@@ -127,6 +128,10 @@ def get_dims_descriptor(node: NNCFNode) -> LayoutDescriptor:
node.metatype.output_channel_axis,
)
+ @staticmethod
+ def get_conv_layer_attributes(node: NNCFNode) -> ConvolutionLayerAttributes:
+ return node.layer_attributes.layer_attributes
+
@staticmethod
def create_bias_tensor(node: NNCFNode, nncf_graph: NNCFGraph, value: Any) -> np.ndarray:
return create_bias_tensor(node, nncf_graph, value)
diff --git a/nncf/quantization/algorithms/min_max/algorithm.py b/nncf/quantization/algorithms/min_max/algorithm.py
index e698c77946b..cba0d681cdd 100644
--- a/nncf/quantization/algorithms/min_max/algorithm.py
+++ b/nncf/quantization/algorithms/min_max/algorithm.py
@@ -382,6 +382,25 @@ def _get_ignored_scope_by_algorithm(self, inference_nncf_graph: NNCFGraph) -> Ig
nncf_node_names.append(nncf_node.node_name)
return IgnoredScope(names=nncf_node_names)
+ def _get_scope_overrides(self, inference_nncf_graph: NNCFGraph) -> Dict:
+ """
+ Returns a dictionary of quantization configuration overrides for inputs to matching operation nodes.
+
+ :param inference_nncf_graph: Inference NNCFGraph instance.
+ :return: A dictionary of quantization configuration overrides for inputs to matching operation nodes.
+ """
+ scaled_dot_product_attention_node_names = [
+ node.node_name
+ for node in inference_nncf_graph.get_nodes_by_metatypes(
+ self._backend_entity.scaled_dot_product_attention_metatypes
+ )
+ ]
+
+ scope_overrides_activations = {}
+ for node_name in scaled_dot_product_attention_node_names:
+ scope_overrides_activations[node_name] = {"mode": "symmetric"}
+ return {"activations": scope_overrides_activations}
+
def _get_quantizer_setup(
self,
nncf_graph: NNCFGraph,
@@ -416,6 +435,8 @@ def _get_quantizer_setup(
QuantizableWeightedLayerNode(node, qconf_list) for node, qconf_list in weighted_node_and_qconf_lists.items()
]
+ scope_overrides = self._get_scope_overrides(inference_nncf_graph)
+
ip_graph = InsertionPointGraph(inference_nncf_graph)
ip_graph = ip_graph.get_ip_graph_with_merged_hw_optimized_operations(hw_patterns)
post_processing_types = self._backend_entity.post_processing_metatypes
@@ -434,6 +455,7 @@ def _get_quantizer_setup(
post_processing_marker_metatypes=post_processing_types,
metatypes_to_ignore=metatypes_to_ignore,
scales_unification_map=self._backend_entity.scales_unification_map,
+ scope_overrides=scope_overrides,
)
quantization_proposal = solver.run_on_ip_graph(ip_graph)
@@ -537,10 +559,9 @@ def _get_quantization_target_points(
inference_nncf_graph = transform_to_inference_graph(
deepcopy(nncf_graph),
+ self._backend_entity.get_start_nodes_for_activation_path_tracing(nncf_graph),
self._backend_entity.shapeof_metatypes,
self._backend_entity.dropout_metatypes,
- self._backend_entity.read_variable_metatypes,
- nncf_graph_contains_constants=backend != BackendType.TORCH,
)
quantizer_setup = self._get_quantizer_setup(nncf_graph, inference_nncf_graph, hw_patterns, ignored_patterns)
diff --git a/nncf/quantization/algorithms/min_max/backend.py b/nncf/quantization/algorithms/min_max/backend.py
index 2c105309c8e..dbec3469f28 100644
--- a/nncf/quantization/algorithms/min_max/backend.py
+++ b/nncf/quantization/algorithms/min_max/backend.py
@@ -67,13 +67,6 @@ def dropout_metatypes(self) -> List[OperatorMetatype]:
Property for the backend-specific Dropout metatypes.
"""
- @property
- @abstractmethod
- def read_variable_metatypes(self) -> List[OperatorMetatype]:
- """
- Property for the backend-specific metatypes that also can be interpreted as inputs (ReadValue).
- """
-
@property
@abstractmethod
def overflow_fix_metatypes(self) -> List[OperatorMetatype]:
@@ -95,6 +88,13 @@ def group_conv_metatypes(self) -> List[OperatorMetatype]:
Property for the backend-specific Grouped Convolution metatypes.
"""
+ @property
+ @abstractmethod
+ def scaled_dot_product_attention_metatypes(self) -> List[OperatorMetatype]:
+ """
+ Property for the backend-specific Scaled Dot Product Attention metatypes.
+ """
+
@property
@abstractmethod
def scales_unification_map(self) -> Dict[OperatorMetatype, OperatorMetatype]:
@@ -146,6 +146,16 @@ def create_quantizer_insertion_command(
:return: Backend-specific TransformationCommand for the quantizer insertion operation.
"""
+ @staticmethod
+ @abstractmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ """
+ Returns a list of NNCFNodes to use as start nodes for activation path tracing.
+
+ :param nncf_graph: NNCFGraph to get the start nodes.
+ :return: List of NNCFNodes to use as start nodes for activation path tracing.
+ """
+
@staticmethod
@abstractmethod
def unify_statistics(statistics: List[MinMaxTensorStatistic]) -> MinMaxTensorStatistic:
diff --git a/nncf/quantization/algorithms/min_max/onnx_backend.py b/nncf/quantization/algorithms/min_max/onnx_backend.py
index bdd04bb22c3..70aca2753fe 100644
--- a/nncf/quantization/algorithms/min_max/onnx_backend.py
+++ b/nncf/quantization/algorithms/min_max/onnx_backend.py
@@ -80,6 +80,10 @@ def dropout_metatypes(self) -> List[OperatorMetatype]:
def read_variable_metatypes(self) -> List[OperatorMetatype]:
return []
+ @property
+ def scaled_dot_product_attention_metatypes(self) -> List[OperatorMetatype]:
+ return []
+
@property
def scales_unification_map(self) -> Dict[OperatorMetatype, OperatorMetatype]:
return {om.ONNXConcatMetatype: self.overflow_fix_metatypes}
@@ -92,6 +96,10 @@ def hw_config(self) -> HWConfig:
def quant_trait_op_dict(self) -> Dict[int, OperatorMetatype]:
return DEFAULT_ONNX_QUANT_TRAIT_TO_OP_DICT
+ @staticmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ return nncf_graph.get_input_nodes()
+
@staticmethod
def target_point(target_type: TargetType, target_node_name: str, port_id: int) -> ONNXTargetPoint:
return ONNXTargetPoint(target_type, target_node_name, port_id)
diff --git a/nncf/quantization/algorithms/min_max/openvino_backend.py b/nncf/quantization/algorithms/min_max/openvino_backend.py
index a1ebcdf0ee6..3cc452ad471 100644
--- a/nncf/quantization/algorithms/min_max/openvino_backend.py
+++ b/nncf/quantization/algorithms/min_max/openvino_backend.py
@@ -26,6 +26,7 @@
from nncf.openvino.graph.layer_attributes import OVLayerAttributes
from nncf.openvino.graph.metatypes import openvino_metatypes as om
from nncf.openvino.graph.metatypes.groups import OPERATIONS_WITH_WEIGHTS
+from nncf.openvino.graph.model_utils import get_start_nodes_for_activation_path_tracing
from nncf.openvino.graph.node_utils import get_channel_agnostic_reduction_axes
from nncf.openvino.graph.node_utils import get_weight_channel_axes
from nncf.openvino.graph.transformations.commands import OVQuantizerInsertionCommand
@@ -86,6 +87,10 @@ def dropout_metatypes(self) -> List[OperatorMetatype]:
def read_variable_metatypes(self) -> List[OperatorMetatype]:
return [om.OVReadValueMetatype]
+ @property
+ def scaled_dot_product_attention_metatypes(self) -> List[OperatorMetatype]:
+ return [om.OVScaledDotProductAttentionMetatype]
+
@property
def scales_unification_map(self) -> Dict[OperatorMetatype, OperatorMetatype]:
return {om.OVConcatMetatype: self.overflow_fix_metatypes}
@@ -98,6 +103,10 @@ def hw_config(self) -> HWConfig:
def quant_trait_op_dict(self) -> Dict[int, OperatorMetatype]:
return DEFAULT_OV_QUANT_TRAIT_TO_OP_DICT
+ @staticmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ return get_start_nodes_for_activation_path_tracing(nncf_graph)
+
@staticmethod
def target_point(target_type: TargetType, target_node_name: str, port_id: int) -> OVTargetPoint:
return OVTargetPoint(target_type, target_node_name, port_id)
diff --git a/nncf/quantization/algorithms/min_max/torch_backend.py b/nncf/quantization/algorithms/min_max/torch_backend.py
index e6dc15e46a9..744e6cf948a 100644
--- a/nncf/quantization/algorithms/min_max/torch_backend.py
+++ b/nncf/quantization/algorithms/min_max/torch_backend.py
@@ -31,6 +31,7 @@
from nncf.quantization.algorithms.min_max.backend import MinMaxAlgoBackend
from nncf.quantization.fake_quantize import FakeQuantizeParameters
from nncf.quantization.range_estimator import RangeEstimatorParameters
+from nncf.torch.graph.graph import PTNNCFGraph
from nncf.torch.graph.graph import PTTargetPoint
from nncf.torch.graph.transformations.commands import PTQuantizerInsertionCommand
from nncf.torch.hardware.config import PTHWConfig
@@ -97,6 +98,10 @@ def add_metatypes(self) -> List[OperatorMetatype]:
def group_conv_metatypes(self) -> List[OperatorMetatype]:
return self.conv_metatypes
+ @property
+ def scaled_dot_product_attention_metatypes(self) -> List[OperatorMetatype]:
+ return []
+
@property
def scales_unification_map(self) -> Dict[OperatorMetatype, OperatorMetatype]:
return {om.PTCatMetatype: self.overflow_fix_metatypes}
@@ -109,6 +114,10 @@ def hw_config(self) -> HWConfig:
def quant_trait_op_dict(self) -> Dict[int, OperatorMetatype]:
return DEFAULT_PT_QUANT_TRAIT_TO_OP_DICT
+ @staticmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: PTNNCFGraph) -> List[NNCFNode]:
+ return nncf_graph.get_nodes_with_missed_input_edges() + nncf_graph.get_input_nodes()
+
@staticmethod
def target_point(target_type: TargetType, target_node_name: str, port_id: int) -> PTTargetPoint:
if NNCFGraphNodeType.INPUT_NODE in target_node_name or target_type == TargetType.POST_LAYER_OPERATION:
diff --git a/nncf/quantization/algorithms/smooth_quant/algorithm.py b/nncf/quantization/algorithms/smooth_quant/algorithm.py
index d39cbd5a61f..6f67cf9ee98 100644
--- a/nncf/quantization/algorithms/smooth_quant/algorithm.py
+++ b/nncf/quantization/algorithms/smooth_quant/algorithm.py
@@ -127,7 +127,7 @@ def apply(
weight_port = self._backend_entity.get_weight_tensor_port_id(node_to_smooth)
weight_value = self._backend_entity.get_weight_value(node_to_smooth, model, weight_port)
- weight_statistics = self._process_weight_statistics(node_to_smooth, weight_value, weight_port)
+ weight_statistics = self._process_weight_statistics(node_to_smooth, weight_value)
weight_statistics = self._backend_entity.clip_statistics(weight_statistics)
alpha = alpha_map[node_to_smooth.metatype]
@@ -348,13 +348,12 @@ def _calculate_input_reduction_axes(self, nncf_graph: NNCFGraph, node: NNCFNode,
reduction_axes = self._backend_entity.get_channel_agnostic_reduction_axes(channel_axis, shape)
return reduction_axes
- def _process_weight_statistics(self, node: NNCFNode, weights: TTensor, port_id: int) -> TTensor:
+ def _process_weight_statistics(self, node: NNCFNode, weights: TTensor) -> TTensor:
"""
Returns processed weight statistics for node.
:param node: NNCFNode to check.
:param weights: Backend-specific weights.
- :param port_id: Weight port id.
:return: Weight statistic for node.
"""
channel_axis = 0
diff --git a/nncf/quantization/algorithms/smooth_quant/openvino_backend.py b/nncf/quantization/algorithms/smooth_quant/openvino_backend.py
index e3373cd32da..fd312c202ba 100644
--- a/nncf/quantization/algorithms/smooth_quant/openvino_backend.py
+++ b/nncf/quantization/algorithms/smooth_quant/openvino_backend.py
@@ -20,8 +20,8 @@
from nncf.common.graph.transformations.commands import TargetType
from nncf.experimental.common.tensor_statistics.collectors import MaxAggregator
from nncf.experimental.common.tensor_statistics.collectors import TensorCollector
-from nncf.openvino.graph.layer_attributes import get_linear_weights_layout_from_node
from nncf.openvino.graph.layout import OVLayoutElem
+from nncf.openvino.graph.layout import get_linear_weights_layout_from_node
from nncf.openvino.graph.metatypes.groups import QUANTIZE_AGNOSTIC_OPERATIONS
from nncf.openvino.graph.metatypes.openvino_metatypes import OVConvolutionMetatype
from nncf.openvino.graph.metatypes.openvino_metatypes import OVMatMulMetatype
diff --git a/nncf/quantization/algorithms/weight_compression/algorithm.py b/nncf/quantization/algorithms/weight_compression/algorithm.py
index add543812b0..b1596fb8028 100644
--- a/nncf/quantization/algorithms/weight_compression/algorithm.py
+++ b/nncf/quantization/algorithms/weight_compression/algorithm.py
@@ -54,17 +54,20 @@ def __init__(
):
"""
:param mode: Defines a mode for weight compression.
- INT8 stands for 8-bit integer quantization of all weights.
+ INT8_SYM stands for 8-bit integer symmetric quantization of all weights.
+ Weights are quantized symmetrically with a fixed zero point equals to 128.
+ INT8_ASYM is the same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
INT4_SYM stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
INT4_ASYM is the same as INT4_SYM mode, but weights are quantized to a primary precision asymmetrically
with a typical non-fixed zero point.
NF4 is the same as INT4_SYM mode, but primary precision is NF4 data type without zero point.
:param ratio: the ratio between baseline and backup precisions (e.g. 0.9 means 90% of layers quantized to NF4
- and the rest to INT8).
+ and the rest to INT8_ASYM).
:param group_size: number of weights (e.g. 128) in the channel dimension
that share quantization parameters (scale). The value -1 means no grouping.
:param ignored_scope: An ignored scope that defined the list of model control
diff --git a/nncf/quantization/algorithms/weight_compression/backend.py b/nncf/quantization/algorithms/weight_compression/backend.py
index b75e9a77500..4577fe8cb1c 100644
--- a/nncf/quantization/algorithms/weight_compression/backend.py
+++ b/nncf/quantization/algorithms/weight_compression/backend.py
@@ -47,10 +47,13 @@ def validate_params(mode: CompressWeightsMode, ignored_scope: Optional[IgnoredSc
parameters. Should be called on early algorithm steps to prevent execution of time-consuming operations.
:param mode: Defines a mode for weight compression.
- INT8 stands for 8-bit integer quantization of all weights.
+ INT8_SYM stands for 8-bit integer symmetric quantization of all weights.
+ Weights are quantized symmetrically with a fixed zero point equals to 128.
+ INT8_ASYM is the same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
INT4_SYM stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
INT4_ASYM is the same as INT4_SYM mode, but weights are quantized to a primary precision asymmetrically
@@ -77,17 +80,20 @@ def do_compression(
:param nodes_to_compress: List of nodes in the model's graph,
corresponding to the layers for weight compression.
:param mode: Defines a mode for weight compression.
- INT8 stands for 8-bit integer quantization of all weights.
+ INT8_SYM stands for 8-bit integer symmetric quantization of all weights.
+ Weights are quantized symmetrically with a fixed zero point equals to 128.
+ INT8_ASYM is the same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
INT4_SYM stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
INT4_ASYM is the same as INT4_SYM mode, but weights are quantized to a primary precision asymmetrically
with a typical non-fixed zero point.
NF4 is the same as INT4_SYM mode, but primary precision is NF4 data type without zero point.
:param ratio: The ratio between baseline and backup precisions (e.g. 0.9 means 90% of layers quantized to NF4
- and the rest to INT8).
+ and the rest to INT8_ASYM).
:param group_size: Number of weights (e.g. 128) in the channel dimension
that share quantization parameters (scale). The value -1 means no grouping.
:return: A resulting model with compressed weights.
diff --git a/nncf/quantization/algorithms/weight_compression/openvino_backend.py b/nncf/quantization/algorithms/weight_compression/openvino_backend.py
index 0a0d4f09fa6..ad52d9cdbde 100644
--- a/nncf/quantization/algorithms/weight_compression/openvino_backend.py
+++ b/nncf/quantization/algorithms/weight_compression/openvino_backend.py
@@ -8,6 +8,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+from collections import OrderedDict
from dataclasses import dataclass
from typing import List, Optional, Tuple, TypeVar
@@ -25,6 +26,7 @@
from nncf.openvino.graph.node_utils import get_channel_agnostic_reduction_axes
from nncf.openvino.graph.node_utils import get_const_value
from nncf.openvino.graph.node_utils import get_weight_channel_axes
+from nncf.openvino.rt_info import dump_parameters
from nncf.parameters import CompressWeightsMode
from nncf.quantization.algorithms.weight_compression.backend import WeightCompressionAlgoBackend
from nncf.quantization.fake_quantize import calculate_scale_zero_point
@@ -57,7 +59,9 @@ def do_compression(
friendly_name_to_op_map = {op.get_friendly_name(): op for op in model.get_ops()}
- for nncf_node in nodes_to_compress:
+ is_last_layer_compressed = False
+ n = len(nodes_to_compress)
+ for i, nncf_node in enumerate(nodes_to_compress):
weight_port_ids = nncf_node.layer_attributes.get_const_port_ids()
for weight_port_id in weight_port_ids:
weight_op_friendly_name = nncf_node.layer_attributes.constant_attributes[weight_port_id]["name"]
@@ -65,6 +69,8 @@ def do_compression(
if weight_node is None:
continue
if id(weight_node) in quantized_nodes_ids:
+ if i == n - 1:
+ is_last_layer_compressed = True
continue
weight_output = weight_node.output(0)
@@ -86,15 +92,19 @@ def do_compression(
fq_name = f"{weight_op_friendly_name}/fq_weights_{weight_port_id}"
num_weights = np.prod(const_shape)
weight_params = WeightNodeParams(
- reduction_axis, num_weights, fq_name, weight_node, original_weight_dtype
+ reduction_axis,
+ num_weights,
+ fq_name,
+ weight_node,
+ original_weight_dtype,
+ metatype=nncf_node.metatype,
)
all_weight_params.append(weight_params)
quantized_nodes_ids.add(id(weight_node))
- if mode != CompressWeightsMode.INT8:
- primary_config = WeightCompressionConfig(mode=mode, group_size=group_size)
- _assign_mixed_precision(all_weight_params, ratio, primary_config)
- nncf_logger.info(_get_bitwidth_distribution_str(all_weight_params))
+ internal_weight_params = _get_internal_weight_params(all_weight_params, mode, is_last_layer_compressed)
+ _set_weight_compression_config(internal_weight_params, mode, ratio, group_size)
+ nncf_logger.info(_get_bitwidth_distribution_str(all_weight_params, internal_weight_params))
for wp in track(all_weight_params, description="Applying Weight Compression"):
weight_node = wp.weight_node
@@ -106,31 +116,38 @@ def do_compression(
weight = get_const_value(weight_node)
config = wp.compression_config
+ original_shape = weight.shape
if config.mode == CompressWeightsMode.NF4:
- original_shape = weight.shape
norm_weight, scale = _get_norm_weight_and_nf4_scale(weight, wp.reduction_axis, group_size)
compressed_const = opset.constant(norm_weight, dtype=ov.Type.nf4, name=weight_name)
convert = opset.convert(compressed_const, original_weight_dtype)
mul = opset.multiply(convert, scale.astype(original_weight_dtype), name=wp.fq_name)
- if config.group_size != -1:
- mul = opset.reshape(mul, output_shape=original_shape, special_zero=False)
- last_output = mul.output(0)
else:
- original_shape = weight.shape
compressed_weights, scale, zero_point = _do_integer_quantization(weight, wp.reduction_axis, config)
- compression_type = np.uint8 if config.num_bits == 8 else ov.Type.u4
+ compression_type = ov.Type.u8 if config.num_bits == 8 else ov.Type.u4
compressed_weights_node = opset.constant(compressed_weights, dtype=compression_type, name=weight_name)
convert_weights_node = opset.convert(compressed_weights_node, original_weight_dtype)
zero_point_node = opset.constant(zero_point, dtype=compression_type, name=f"{weight_name}/ZP")
convert_zp_node = opset.convert(zero_point_node, original_weight_dtype)
sub = opset.subtract(convert_weights_node, convert_zp_node)
mul = opset.multiply(sub, scale.astype(original_weight_dtype), name=wp.fq_name)
- if config.group_size != -1:
- mul = opset.reshape(mul, output_shape=original_shape, special_zero=False)
- last_output = mul.output(0)
+
+ if config.group_size != -1:
+ mul = opset.reshape(mul, output_shape=original_shape, special_zero=False)
+ last_output = mul.output(0)
for target_input in target_inputs:
target_input.replace_source_output(last_output)
+
+ dump_parameters(
+ model,
+ parameters={
+ "mode": mode.value,
+ "group_size": group_size,
+ "ratio": ratio,
+ },
+ algo_name="weight_compression",
+ )
return model
@@ -142,12 +159,12 @@ class WeightCompressionConfig:
"""
Information on how to compress (quantize) a specific weight.
- :param mode: Defines a mode for weight compression. Defaults to INT8 mode.
+ :param mode: Defines a mode for weight compression. Defaults to INT8_ASYM mode.
:param group_size: Number of weights (e.g. 128) in the channel dimension that share quantization parameters (scale).
The value -1 means no grouping. Defaults to -1.
"""
- mode: Optional[CompressWeightsMode] = CompressWeightsMode.INT8
+ mode: Optional[CompressWeightsMode] = CompressWeightsMode.INT8_ASYM
group_size: Optional[int] = -1
@property
@@ -155,7 +172,7 @@ def num_bits(self):
"""
:return: number of bits that is used for storing a single quantized value in the given mode.
"""
- return 8 if self.mode == CompressWeightsMode.INT8 else 4
+ return 8 if self.mode in [CompressWeightsMode.INT8_SYM, CompressWeightsMode.INT8_ASYM] else 4
@dataclass
@@ -169,6 +186,7 @@ class WeightNodeParams:
:param weight_node: The weight node itself.
:param original_weight_dtype: Type of elements in the weight array.
:param compression_config: Configuration of weight compression for the weight node.
+ :param metatype: Metatype of the corresponding operation with weight.
"""
reduction_axis: int
@@ -177,6 +195,7 @@ class WeightNodeParams:
weight_node: ov.Node
original_weight_dtype: TWeightType
compression_config = WeightCompressionConfig()
+ metatype: OperatorMetatype = None
def _do_integer_quantization(
@@ -185,7 +204,10 @@ def _do_integer_quantization(
"""
The method quantizes the given weights to integer data type in accordance with the compression config.
The config defines a quantization mode:
- INT8 mode refers to unsigned int8 asymmetric weight compression - quantization to [0, 255] range.
+ INT8_SYM mode refers to unsigned int8 symmetric weight compression with a fixed zero point equals to 128 -
+ quantization to [0, 255] range.
+ INT8_ASYM mode refers to unsigned int8 asymmetric weight compression with a typical non-fixed zero-point -
+ quantization to [0, 255] range.
INT4_ASYM mode refers to unsigned int4 asymmetric weight compression with a typical non-fixed zero-point -
quantization to [0, 15] range.
INT4_SYM mode refers to unsigned int4 symmetric weight compression with a fixed zero point equals to 8 -
@@ -212,7 +234,7 @@ def _do_integer_quantization(
# weights are reshaped from [a1, r, a2] to [a1, r//gs, gs, a2]
weight, reduction_axis = _reshape_weights_for_grouped_quantization(weight, reduction_axis, group_size)
- if mode in [CompressWeightsMode.INT8, CompressWeightsMode.INT4_ASYM]:
+ if mode in [CompressWeightsMode.INT8_ASYM, CompressWeightsMode.INT4_ASYM]:
min_values = np.min(weight, axis=reduction_axis, keepdims=True) # [a1, r, a2] -> [a1, 1, a2]
max_values = np.max(weight, axis=reduction_axis, keepdims=True) # [a1, r, a2] -> [a1, 1, a2]
scale, zero_point = calculate_scale_zero_point(
@@ -314,29 +336,29 @@ def _proportion_str(num_weights_list: List[int], total_num_weights: int, total_n
return f"{percentage:.0f}% ({len(num_weights_list)} / {total_num_params})"
-def _get_bitwidth_distribution_str(all_weight_params: List[WeightNodeParams]) -> str:
+def _get_bitwidth_distribution_str(all_params: List[WeightNodeParams], internal_params: List[WeightNodeParams]) -> str:
"""
Generates a table that shows the ratio of weights quantized to different number of bits.
- :param all_weight_params: List of information about each weight node.
+ :param all_params: List of information about each weight node.
+ :param internal_params: List of information about weight nodes that are considered for mixed precision.
:return: A string containing the table.
"""
- total_num_weights = sum(ws.num_weights for ws in all_weight_params)
- num_internal_weights = 0
- num_params = len(all_weight_params)
- num_internal_params = 0
- if num_params > 2:
- num_internal_params = num_params - 2
num_bits_vs_num_weights_map = {}
- for i, data in enumerate(all_weight_params):
+ internal_fq_names = set(wp.fq_name for wp in internal_params)
+ for data in all_params:
num_bits = data.compression_config.num_bits
n_total, n_internal = num_bits_vs_num_weights_map.get(num_bits, ([], []))
- if i not in (0, num_params - 1):
+ if data.fq_name in internal_fq_names:
n_internal.append(data.num_weights)
- num_internal_weights += data.num_weights
n_total.append(data.num_weights)
num_bits_vs_num_weights_map[num_bits] = (n_total, n_internal)
+ num_internal_weights = sum(ws.num_weights for ws in internal_params)
+ num_internal_params = len(internal_params)
+ num_total_weights = sum(ws.num_weights for ws in all_params)
+ num_params = len(all_params)
+ num_bits_vs_num_weights_map = OrderedDict(sorted(num_bits_vs_num_weights_map.items(), reverse=True))
# Table creation
header = ["Num bits (N)", "% all parameters (layers)", "% internal parameters (layers)"]
rows = []
@@ -344,7 +366,7 @@ def _get_bitwidth_distribution_str(all_weight_params: List[WeightNodeParams]) ->
rows.append(
[
bitwidth,
- _proportion_str(n_total, total_num_weights, num_params),
+ _proportion_str(n_total, num_total_weights, num_params),
_proportion_str(n_internal, num_internal_weights, num_internal_params),
]
)
@@ -354,26 +376,40 @@ def _get_bitwidth_distribution_str(all_weight_params: List[WeightNodeParams]) ->
return pretty_string
+def _get_internal_weight_params(
+ all_weight_params: List[WeightNodeParams], mode: CompressWeightsMode, is_last_layer_compressed: bool
+) -> List[WeightNodeParams]:
+ """
+ Returns the internal weight parameters.
+
+ :param all_weight_params: List of all weight parameters.
+ :param mode: Weight compression mode.
+ :param is_last_layer_compressed: Indicates whether the last layer is compressed.
+ :return: List of information about weight nodes that are considered for mixed precision.
+ """
+ internal_weight_params = all_weight_params
+ if mode not in [CompressWeightsMode.INT8_SYM, CompressWeightsMode.INT8_ASYM]:
+ internal_weight_params = list(filter(lambda wp: wp.metatype != OVEmbeddingMetatype, internal_weight_params))
+ if not is_last_layer_compressed:
+ internal_weight_params = internal_weight_params[:-1]
+ return internal_weight_params
+
+
def _assign_mixed_precision(
- all_weight_params: List[WeightNodeParams], ratio: float, primary_config: WeightCompressionConfig
+ internal_weight_params: List[WeightNodeParams], ratio: float, primary_config: WeightCompressionConfig
) -> None:
"""
Assigns mixed quantization scheme (e.g. uniform int8 or non-uniform nf4) for weights based on some criteria.
-
- :param all_weight_params: List of information about each weight node. The quantization scheme is added to this info.
+ :param internal_weight_params: List of information about internal weight nodes. Only internal nodes are considered
+ for mixed precision. The quantization scheme is added to this info.
:param ratio: The ratio between primary and backup precisions (e.g. 0.9 means 90% of layers quantized to NF4
- and the rest to INT8).
+ and the rest to INT8_ASYM).
:param primary_config: Information on how to compress (quantize) weights to primary precision.
:return: None.
"""
- if ratio == 1:
- for weight_param in all_weight_params[1:-1]:
- weight_param.compression_config = primary_config
- return
errors = []
num_internal_weights = 0
- # NOTE: first and last layers are always in 8 bit: no need to calculate error for them
- for weight_param in track(all_weight_params[1:-1], description="Searching for Mixed-Precision Configuration"):
+ for weight_param in track(internal_weight_params, description="Searching for Mixed-Precision Configuration"):
weight = get_const_value(weight_param.weight_node)
backup_config = weight_param.compression_config
reduction_axis = weight_param.reduction_axis
@@ -382,16 +418,34 @@ def _assign_mixed_precision(
error = 1 / (backup_error + eps)
errors.append(error)
num_internal_weights += weight_param.num_weights
- # NOTE: index is defined in the array of all weight params by taking into account that errors were not
- # calculated for first and last layers.
indexes_of_layers_in_ascending_order_of_errors = [
- i[0] + 1 for i in sorted(enumerate(errors), reverse=False, key=lambda x: x[1])
+ i[0] for i in sorted(enumerate(errors), reverse=False, key=lambda x: x[1])
]
num_weights_in_4bit = 0
for index in indexes_of_layers_in_ascending_order_of_errors:
- weight_param = all_weight_params[index]
+ weight_param = internal_weight_params[index]
current_ratio = (num_weights_in_4bit + weight_param.num_weights) / num_internal_weights
if current_ratio >= ratio:
break
weight_param.compression_config = primary_config
num_weights_in_4bit += weight_param.num_weights
+
+
+def _set_weight_compression_config(
+ internal_weight_params: List[WeightNodeParams], mode: CompressWeightsMode, ratio: float, group_size: int
+) -> None:
+ """
+ Set the appropriate compression configuration for weights based on some criteria.
+
+ :param internal_weight_params: List of information about internal weight nodes.
+ :param mode: Weight compression mode.
+ :param ratio: The ratio between primary and backup precisions.
+ :param group_size: number of weights (e.g. 128) in the channel dimension that share quantization parameters (scale).
+ :return: None.
+ """
+ primary_config = WeightCompressionConfig(mode=mode, group_size=group_size)
+ if ratio == 1:
+ for weight_param in internal_weight_params:
+ weight_param.compression_config = primary_config
+ else:
+ _assign_mixed_precision(internal_weight_params, ratio, primary_config)
diff --git a/nncf/quantization/passes.py b/nncf/quantization/passes.py
index 055f1f27a5b..9465fa95dec 100644
--- a/nncf/quantization/passes.py
+++ b/nncf/quantization/passes.py
@@ -10,9 +10,10 @@
# limitations under the License.
import collections
-from typing import List, Optional, TypeVar
+from typing import List, TypeVar
from nncf.common.graph.graph import NNCFGraph
+from nncf.common.graph.graph import NNCFNode
from nncf.common.graph.operator_metatypes import OperatorMetatype
TModel = TypeVar("TModel")
@@ -20,50 +21,44 @@
def transform_to_inference_graph(
nncf_graph: NNCFGraph,
+ input_nodes: List[NNCFNode],
shapeof_metatypes: List[OperatorMetatype],
dropout_metatypes: List[OperatorMetatype],
- read_variable_metatypes: Optional[List[OperatorMetatype]] = None,
- nncf_graph_contains_constants: bool = True,
) -> NNCFGraph:
"""
This method contains inplace pipeline of the passes that uses to provide inference graph without constant flows.
:param nncf_graph: NNCFGraph instance for the transformation.
+ :param input_nodes: List of input nodes for the given NNCFGraph.
:param shapeof_metatypes: List of backend-specific ShapeOf metatypes.
:param dropout_metatypes: List of backend-specific Dropout metatypes.
- :param read_variable_metatypes: List of backend-specific metatypes
- that also can be interpreted as inputs (ReadValue).
- :param nncf_graph_contains_constants: Whether NNCFGraph contains constant nodes or not.
:return: NNCFGraph in the inference style.
"""
- remove_shapeof_subgraphs(nncf_graph, shapeof_metatypes, read_variable_metatypes)
+ remove_shapeof_subgraphs(nncf_graph, shapeof_metatypes, input_nodes)
+ filter_constant_nodes(nncf_graph, input_nodes)
remove_nodes_and_reconnect_graph(nncf_graph, dropout_metatypes)
- if nncf_graph_contains_constants:
- filter_constant_nodes(nncf_graph, read_variable_metatypes)
return nncf_graph
def remove_shapeof_subgraphs(
nncf_graph: NNCFGraph,
shapeof_metatypes: List[OperatorMetatype],
- read_variable_metatypes: Optional[List[OperatorMetatype]] = None,
+ input_nodes: List[NNCFNode],
) -> NNCFGraph:
"""
Removes the ShapeOf subgraphs from the provided NNCFGraph instance inplace.
+ Constant subgraph should be already removed from the given NNCFGraph.
:param nncf_graph: NNCFGraph instance for the transformation.
:param shapeof_metatypes: List of backend-specific ShapeOf metatypes.
- :param read_variable_metatypes: List of backend-specific metatypes
- that also can be interpreted as inputs (ReadValue).
+ :param input_nodes: List of input nodes for the given NNCFGraph.
:return: NNCFGraph without ShapeOf subgraphs.
"""
- read_variable_metatypes = read_variable_metatypes if read_variable_metatypes else []
nodes_to_drop = set()
shape_of_nodes = []
infer_nodes = []
- similar_inputs = nncf_graph.get_nodes_by_metatypes(read_variable_metatypes)
- nodes_queue = collections.deque(nncf_graph.get_input_nodes() + similar_inputs)
+ nodes_queue = collections.deque(input_nodes)
while nodes_queue:
node = nodes_queue.pop()
if node.metatype in shapeof_metatypes:
@@ -143,28 +138,22 @@ def remove_nodes_and_reconnect_graph(
def filter_constant_nodes(
- nncf_graph: NNCFGraph, read_variable_metatypes: Optional[List[OperatorMetatype]] = None
+ nncf_graph: NNCFGraph,
+ input_nodes: List[NNCFNode],
) -> NNCFGraph:
"""
Removes all Constant nodes from NNCFGraph inplace, making it inference graph.
The traversing starts from the input nodes and nodes with weights.
:param nncf_graph: NNCFGraph instance for the transformation.
- :param read_variable_metatypes: List of backend-specific metatypes
- that also can be interpreted as inputs (ReadValue).
+ :param input_nodes: List of input nodes for the given NNCFGraph.
:return: NNCFGraph without Constant nodes.
"""
- read_variable_metatypes = read_variable_metatypes if read_variable_metatypes else []
- input_nodes = nncf_graph.get_input_nodes()
- similar_input_nodes = nncf_graph.get_nodes_by_metatypes(read_variable_metatypes)
-
- start_nodes = input_nodes + similar_input_nodes
-
- if not start_nodes:
+ if not input_nodes:
return nncf_graph
visited_nodes = set()
- nodes_queue = collections.deque(start_nodes)
+ nodes_queue = collections.deque(input_nodes)
while nodes_queue:
node = nodes_queue.pop()
if node in visited_nodes:
diff --git a/nncf/quantization/quantize_model.py b/nncf/quantization/quantize_model.py
index 501bdb6d9a8..2516b9e0913 100644
--- a/nncf/quantization/quantize_model.py
+++ b/nncf/quantization/quantize_model.py
@@ -12,6 +12,7 @@
from typing import Any, Callable, Iterable, List, Optional, Tuple, TypeVar, Union
from nncf.api.compression import TModel
+from nncf.common.deprecation import warning_deprecated
from nncf.common.factory import NNCFGraphFactory
from nncf.common.quantization.structs import QuantizationPreset
from nncf.common.utils.api_marker import api
@@ -241,7 +242,7 @@ def quantize_with_accuracy_control(
@api(canonical_alias="nncf.compress_weights")
def compress_weights(
model: TModel,
- mode=CompressWeightsMode.INT8,
+ mode=CompressWeightsMode.INT8_ASYM,
ratio: Optional[float] = None,
group_size: Optional[int] = None,
ignored_scope: Optional[IgnoredScope] = None,
@@ -251,17 +252,19 @@ def compress_weights(
:param model: A model to be compressed.
:param mode: Defines a mode for weight compression.
- INT8 stands for 8-bit integer quantization of all weights.
+ INT8_SYM stands for 8-bit integer symmetric quantization of all weights.
+ INT8_ASYM is the same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
INT4_SYM stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
INT4_ASYM is the same as INT4_SYM mode, but weights are quantized to a primary precision asymmetrically
with a typical non-fixed zero point.
NF4 is the same as INT4_SYM mode, but primary precision is NF4 data type without zero point.
:param ratio: the ratio between baseline and backup precisions (e.g. 0.9 means 90% of layers quantized to NF4
- and the rest to INT8).
+ and the rest to INT8_ASYM).
:param group_size: number of weights (e.g. 128) in the channel dimension that share quantization parameters (scale).
The value -1 means no grouping.
:param ignored_scope: An ignored scope that defined the list of model control
@@ -269,6 +272,12 @@ def compress_weights(
:return: The non-trainable model with compressed weights.
"""
if mode == CompressWeightsMode.INT8:
+ warning_deprecated(
+ "`CompressWeightsMode.INT8` is deprecated." "Please, use `CompressWeightsMode.INT8_ASYM` as value instead."
+ )
+ mode = CompressWeightsMode.INT8_ASYM
+
+ if mode in [CompressWeightsMode.INT8_ASYM, CompressWeightsMode.INT8_SYM]:
if ratio is None:
ratio = 1
if group_size is None:
diff --git a/nncf/torch/dynamic_graph/context.py b/nncf/torch/dynamic_graph/context.py
index d57e042af1e..c95b1e9765b 100644
--- a/nncf/torch/dynamic_graph/context.py
+++ b/nncf/torch/dynamic_graph/context.py
@@ -71,6 +71,7 @@ def reset(self):
self.operator_counters = {}
self.node_call_tracker = {}
self.traced_tensor_weakrefs = []
+ self.nested_contexts_stack = []
class CopySafeThreadingVars:
@@ -90,7 +91,6 @@ class TracingContext:
def __init__(self):
self.graph = DynamicGraph()
- self._save_context = None
self._post_hooks = {}
self._pre_hooks: Dict[PreHookId, List[Callable]] = {}
self._num_nested_hooks = 0
@@ -122,25 +122,29 @@ def __enter__(self):
# all replicas. Otherwise we will have data races on setting and reading the global _CURRENT_CONTEXT
# variable, which will in turn lead to DP-specific runtime errors such as
# "'_thread._local' object has no attribute 'scopes'"
- self._save_context = get_current_context()
+ self._threading.thread_local.nested_contexts_stack.append(get_current_context())
set_current_context(self)
- self._reset_thread_local()
- if is_debug():
- self.reset_node_call_counters()
return self
def __exit__(self, *args):
- if self._save_context is not self: # NNCFNetwork.rebuild_graph() uses the compressed context nested in self
- for traced_tensor_weakref in self._threading.thread_local.traced_tensor_weakrefs:
- tt = traced_tensor_weakref()
- if tt is not None:
- tt.nncf_expire()
-
- self._reset_thread_local()
-
- set_current_context(self._save_context)
- self._save_context = None
+ previous_context = self._threading.thread_local.nested_contexts_stack.pop(-1)
+ for traced_tensor_weakref in self._threading.thread_local.traced_tensor_weakrefs:
+ tt = traced_tensor_weakref()
+ if tt is None or not isinstance(tt, TracedTensor):
+ continue
+ if previous_context is None:
+ tt.strip()
+ elif previous_context is not self:
+ previous_context.register_traced_tensor(tt)
+
+ if previous_context is not self:
+ self._reset_thread_local()
+
+ if is_debug():
+ self.reset_node_call_counters()
+
+ set_current_context(previous_context)
def find_operator_node(
self, tensor_metas: List[Optional[TensorMeta]], op_address: OperationAddress
diff --git a/nncf/torch/dynamic_graph/layer_attributes_handlers.py b/nncf/torch/dynamic_graph/layer_attributes_handlers.py
index 151645181b0..6cbf6a71c69 100644
--- a/nncf/torch/dynamic_graph/layer_attributes_handlers.py
+++ b/nncf/torch/dynamic_graph/layer_attributes_handlers.py
@@ -31,7 +31,6 @@
from nncf.common.graph.layer_attributes import PermuteLayerAttributes
from nncf.common.graph.layer_attributes import ReshapeLayerAttributes
from nncf.common.graph.layer_attributes import TransposeLayerAttributes
-from nncf.common.graph.utils import get_concat_axis
from nncf.common.graph.utils import get_split_axis
from nncf.torch.graph.operator_metatypes import PTCatMetatype
from nncf.torch.graph.operator_metatypes import PTGroupNormMetatype
@@ -49,8 +48,9 @@
PERMUTE_OP_NAMES = ["permute"]
GETITEM_OP_NAMES = ["__getitem__"]
PAD_OP_NAMES = PTPadMetatype.get_all_aliases()
+CONCAT_OP_NAMES = PTCatMetatype.get_all_aliases()
OP_NAMES_REQUIRING_ATTRS_FROM_ARGS_KWARGS = list(
- TRANSPOSE_OP_NAMES + PERMUTE_OP_NAMES + GETITEM_OP_NAMES + PAD_OP_NAMES
+ TRANSPOSE_OP_NAMES + PERMUTE_OP_NAMES + GETITEM_OP_NAMES + PAD_OP_NAMES + CONCAT_OP_NAMES
)
@@ -119,25 +119,13 @@ def get_layer_attributes_from_args_and_kwargs(op_name: str, args, kwargs) -> Bas
layer_attrs = _get_getitem_attrs_from_args_kwargs(args, kwargs)
elif op_name in PAD_OP_NAMES:
layer_attrs = _get_pad_attrs_from_args_kwargs(args, kwargs)
+ elif op_name in CONCAT_OP_NAMES:
+ layer_attrs = _get_concat_attrs_from_args_kwargs(args, kwargs)
return layer_attrs
def set_nodes_attributes_in_nncf_graph(graph: NNCFGraph) -> None:
for node in graph.get_all_nodes():
- if node.metatype is PTCatMetatype:
- input_edges = graph.get_input_edges(node)
- output_edges = graph.get_output_edges(node)
- # Case of intermediate node
- if input_edges and output_edges:
- input_shapes = [edge.tensor_shape for edge in input_edges]
- output_shapes = [edge.tensor_shape for edge in output_edges]
- # Case node is stack
- if len(input_shapes[0]) != len(output_shapes[0]):
- continue
- axis = get_concat_axis(input_shapes, output_shapes)
- layer_attributes = MultipleInputLayerAttributes(axis)
- node.layer_attributes = layer_attributes
-
if node.metatype in [PTReshapeMetatype, PTSqueezeMetatype]:
input_nodes = graph.get_input_edges(node)
output_nodes = graph.get_output_edges(node)
@@ -178,6 +166,15 @@ def _get_pad_attrs_from_args_kwargs(args, kwargs) -> PadLayerAttributes:
return PadLayerAttributes(mode, value)
+def _get_concat_attrs_from_args_kwargs(args, kwargs) -> MultipleInputLayerAttributes:
+ if "tensors" in kwargs:
+ tensors = kwargs["tensors"]
+ else:
+ tensors = args[0]
+ axis = kwargs.get("dim", 0 if len(args) < 2 else args[1])
+ return MultipleInputLayerAttributes(axis=axis, num_inputs=len(tensors))
+
+
def _get_kwargs_shifted(args_names, args, kwargs, shift=1):
res_kwargs = {}
for idx, arg_name in enumerate(args_names):
diff --git a/nncf/torch/dynamic_graph/patch_pytorch.py b/nncf/torch/dynamic_graph/patch_pytorch.py
index cf4e24ff9a0..90baa351c74 100644
--- a/nncf/torch/dynamic_graph/patch_pytorch.py
+++ b/nncf/torch/dynamic_graph/patch_pytorch.py
@@ -122,35 +122,49 @@ class FunctionsToPatchWithoutTracing:
class MagicFunctionsToPatch:
MAGIC_FUNCTIONS_TO_PATCH = {
NamespaceTarget.TORCH_TENSOR: [
+ "__abs__",
"__add__",
- "__iadd__",
- "__radd__",
- "__sub__",
- "__isub__",
- "__rsub__",
- "__mul__",
- "__matmul__",
- "__rmatmul__",
- "__imul__",
- "__rmul__",
+ "__and__",
"__div__",
- "__idiv__",
- "__truediv__",
+ "__eq__",
"__floordiv__",
- "__ifloordiv__",
- "__rfloordiv__",
+ "__ge__",
"__getitem__",
- "__lt__",
- "__le__",
"__gt__",
- "__ge__",
+ "__iadd__",
+ "__iand__",
+ "__idiv__",
+ "__ifloordiv__",
+ "__imul__",
+ "__invert__",
+ "__ior__",
+ "__ipow__",
+ "__isub__",
+ "__itruediv__",
+ "__ixor__",
+ "__le__",
+ "__lt__",
+ "__matmul__",
"__mod__",
- "__eq__",
+ "__mul__",
"__ne__",
+ "__neg__",
"__or__",
- "__xor__",
- "__and__",
"__pow__",
+ "__radd__",
+ "__rand__",
+ "__rdiv__",
+ "__rfloordiv__",
+ "__rmatmul__",
+ "__rmul__",
+ "__ror__",
+ "__rpow__",
+ "__rsub__",
+ "__rtruediv__",
+ "__rxor__",
+ "__sub__",
+ "__truediv__",
+ "__xor__",
]
}
diff --git a/nncf/torch/dynamic_graph/trace_tensor.py b/nncf/torch/dynamic_graph/trace_tensor.py
index 18b9c750168..83682a065fa 100644
--- a/nncf/torch/dynamic_graph/trace_tensor.py
+++ b/nncf/torch/dynamic_graph/trace_tensor.py
@@ -8,7 +8,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-from typing import Iterable, List, Optional, Tuple, TypeVar, Union
+from typing import Dict, Iterable, List, Optional, Tuple, TypeVar, Union
import numpy as np
import torch
@@ -16,6 +16,7 @@
from nncf import nncf_logger
from nncf.common.graph.layer_attributes import Dtype
from nncf.torch.dynamic_graph.op_input_processing import OperatorInput
+from nncf.torch.nested_objects_traversal import objwalk
class TensorMeta:
@@ -57,23 +58,28 @@ class TracedTensor(torch.Tensor):
"""
@staticmethod
- def from_torch_tensor(tensor, tensor_meta: TensorMeta):
+ def from_torch_tensor(tensor: torch.Tensor, tensor_meta: TensorMeta) -> "TracedTensor":
+ """
+ Creates a TracedTensor by patching a given torch.Tensor, associating it with the provided tensor_meta.
+
+ :param tensor: The input torch.Tensor.
+ :param tensor_meta: The metadata associated with the tensor.
+ :return: The resulting TracedTensor.
+ """
tensor.tensor_meta = tensor_meta
- tensor.__class__ = TracedTensor
+ if not isinstance(tensor, TracedTensor):
+ tensor.original_class = tensor.__class__
+ tensor.__class__ = TracedTensor
- tensor._nncf_expired = False
return tensor
- def nncf_expire(self):
+ def strip(self) -> None:
"""
- Mark the traced tensor as "expired". The tensor's metainformation should
- then be considered outdated/invalid.
+ Reverts the tensor to its original class by removing tracing attributes.
"""
- self._nncf_expired = True
-
- @property
- def nncf_expired(self) -> bool:
- return self._nncf_expired
+ self.__class__ = self.original_class
+ delattr(self, "tensor_meta")
+ delattr(self, "original_class")
def as_subclass(self, cls: "TracedTensor") -> "TracedTensor":
"""
@@ -166,14 +172,23 @@ def make_tensor_metas(inputs: OperatorInput) -> List[Optional[TensorMeta]]:
for i, node_input_index_entry in enumerate(inputs):
node_input = node_input_index_entry.getter()
if isinstance(node_input, TracedTensor):
- if not node_input.nncf_expired:
- tensor_metas.append(node_input.tensor_meta)
- else:
- meta = TensorMeta(None, i, node_input.shape)
- tensor_metas.append(meta)
+ tensor_metas.append(node_input.tensor_meta)
elif isinstance(node_input, torch.Tensor) and not isinstance(node_input, TracedTensor):
meta = TensorMeta(None, i, node_input.shape)
tensor_metas.append(meta)
else:
tensor_metas.append(None)
return tensor_metas
+
+
+def strip_traced_tensors(args: Tuple, kwargs: Dict) -> Tuple[Tuple, Dict]:
+ """
+ Required to guard against new forward calls on tensors that have already passed
+ through NNCF's forward once and got turned into TracedTensors by reference access.
+ """
+ is_traced_tensor_predicate = lambda x: isinstance(x, TracedTensor)
+ strip_traced_tensor = lambda x: x.strip()
+
+ args = objwalk(args, is_traced_tensor_predicate, strip_traced_tensor)
+ kwargs = objwalk(kwargs, is_traced_tensor_predicate, strip_traced_tensor)
+ return args, kwargs
diff --git a/nncf/torch/dynamic_graph/wrappers.py b/nncf/torch/dynamic_graph/wrappers.py
index ee0a74355bb..144f5d68238 100644
--- a/nncf/torch/dynamic_graph/wrappers.py
+++ b/nncf/torch/dynamic_graph/wrappers.py
@@ -28,6 +28,8 @@
from nncf.torch.dynamic_graph.trace_tensor import trace_tensors
from nncf.torch.layer_utils import _NNCFModuleMixin
from nncf.torch.layers import ITERATION_MODULES
+from nncf.torch.return_types import maybe_unwrap_from_torch_return_type
+from nncf.torch.return_types import maybe_wrap_to_torch_return_type
_IGNORED_SCOPES = []
@@ -188,8 +190,10 @@ def _execute_op(
if is_debug() and node is not None:
ctx.register_node_call(node)
- result = trace_tensors(result, node, ctx)
- result = ctx.execute_post_hooks(op_address, result)
+ unwrapped_result = maybe_unwrap_from_torch_return_type(result)
+ unwrapped_result = trace_tensors(unwrapped_result, node, ctx)
+ unwrapped_result = ctx.execute_post_hooks(op_address, unwrapped_result)
+ result = maybe_wrap_to_torch_return_type(unwrapped_result, result)
return result
diff --git a/nncf/torch/graph/graph.py b/nncf/torch/graph/graph.py
index 5c1adfac91e..ba993910ebb 100644
--- a/nncf/torch/graph/graph.py
+++ b/nncf/torch/graph/graph.py
@@ -14,6 +14,7 @@
from nncf.common.graph import NNCFGraph
from nncf.common.graph import NNCFNode
from nncf.common.graph import NNCFNodeName
+from nncf.common.graph.layer_attributes import MultipleInputLayerAttributes
from nncf.torch.dynamic_graph.scope import Scope
from nncf.torch.graph.transformations.commands import PTTargetPoint
@@ -68,3 +69,26 @@ def get_scope_by_node_name(self, node_name: NNCFNodeName) -> Scope:
if not matches:
raise RuntimeError("Node name {} not found in the node-vs-scope dict!".format(node_name))
return matches[0]
+
+ def get_nodes_with_missed_input_edges(self) -> List[NNCFNode]:
+ """
+ Returns a list of NNCFNodes that have at least one expected input edge missed.
+ Requires MultipleInputLayerAttributes for nodes with several inputs and
+ right `num_expected_input_edges` parameter setted for nncf nodes metatypes.
+
+ :return: List of NNCFNodes that are identified as diconected.
+ """
+ input_nodes = set()
+ for node in self.get_all_nodes():
+ num_expected_input_edges = None
+ if hasattr(node.metatype, "num_expected_input_edges"):
+ num_expected_input_edges = node.metatype.num_expected_input_edges
+ if node.layer_attributes is not None and isinstance(node.layer_attributes, MultipleInputLayerAttributes):
+ num_expected_input_edges = node.layer_attributes.num_inputs
+ if num_expected_input_edges:
+ input_edges = self.get_input_edges(node)
+ if len(input_edges) < num_expected_input_edges:
+ # If node has missed input edges we assume this node is an input node
+ # that was disconected from an activation input.
+ input_nodes.add(node)
+ return list(input_nodes)
diff --git a/nncf/torch/graph/operator_metatypes.py b/nncf/torch/graph/operator_metatypes.py
index a05b8b7d85d..49577736e19 100644
--- a/nncf/torch/graph/operator_metatypes.py
+++ b/nncf/torch/graph/operator_metatypes.py
@@ -48,6 +48,7 @@ class PTOperatorMetatype(OperatorMetatype):
"""
external_op_names: List[str] = []
+ num_expected_input_edges: Optional[int] = None
module_to_function_names: Dict[NamespaceTarget, List[str]] = {
NamespaceTarget.TORCH_NN_FUNCTIONAL: [],
@@ -153,8 +154,8 @@ class PTNoopMetatype(PTOperatorMetatype):
external_op_names = [name]
module_to_function_names = {
NamespaceTarget.TORCH_NN_FUNCTIONAL: [],
- NamespaceTarget.TORCH_TENSOR: [],
- NamespaceTarget.TORCH: ["contiguous", "clone"],
+ NamespaceTarget.TORCH_TENSOR: ["contiguous"],
+ NamespaceTarget.TORCH: ["clone"],
}
@@ -164,6 +165,7 @@ class PTDepthwiseConv1dSubtype(PTDepthwiseConvOperatorSubtype):
hw_config_name = [HWConfigOpName.DEPTHWISECONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv1d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -173,6 +175,7 @@ class PTModuleConv1dMetatype(PTModuleOperatorSubtype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv1d"]}
subtypes = [PTDepthwiseConv1dSubtype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -182,6 +185,7 @@ class PTConv1dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv1d"]}
subtypes = [PTModuleConv1dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -190,6 +194,7 @@ class PTDepthwiseConv2dSubtype(PTDepthwiseConvOperatorSubtype):
hw_config_names = [HWConfigOpName.DEPTHWISECONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv2d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -199,6 +204,7 @@ class PTModuleConv2dMetatype(PTModuleOperatorSubtype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv2d"]}
subtypes = [PTDepthwiseConv2dSubtype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -208,6 +214,7 @@ class PTConv2dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv2d"]}
subtypes = [PTModuleConv2dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -216,6 +223,7 @@ class PTDepthwiseConv3dSubtype(PTDepthwiseConvOperatorSubtype):
hw_config_names = [HWConfigOpName.DEPTHWISECONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv3d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -225,6 +233,7 @@ class PTModuleConv3dMetatype(PTModuleOperatorSubtype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv3d"]}
subtypes = [PTDepthwiseConv3dSubtype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -234,6 +243,7 @@ class PTConv3dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv3d"]}
subtypes = [PTModuleConv3dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -242,6 +252,7 @@ class PTModuleConvTranspose1dMetatype(PTModuleOperatorSubtype):
hw_config_names = [HWConfigOpName.CONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose1d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -251,6 +262,7 @@ class PTConvTranspose1dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose1d"]}
subtypes = [PTModuleConvTranspose1dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -259,6 +271,7 @@ class PTModuleConvTranspose2dMetatype(PTModuleOperatorSubtype):
hw_config_names = [HWConfigOpName.CONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose2d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -268,6 +281,7 @@ class PTConvTranspose2dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose2d"]}
subtypes = [PTModuleConvTranspose2dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -276,6 +290,7 @@ class PTModuleConvTranspose3dMetatype(PTModuleOperatorSubtype):
hw_config_names = [HWConfigOpName.CONVOLUTION]
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose3d"]}
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -285,12 +300,14 @@ class PTConvTranspose3dMetatype(PTOperatorMetatype):
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["conv_transpose3d"]}
subtypes = [PTModuleConvTranspose3dMetatype]
output_channel_axis = 1
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
class PTModuleDeformConv2dMetatype(PTModuleOperatorSubtype):
name = "DeformConv2dOp"
module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["deform_conv2d"]}
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -420,6 +437,7 @@ class PTAddMetatype(PTOperatorMetatype):
NamespaceTarget.TORCH: ["add"],
}
hw_config_names = [HWConfigOpName.ADD]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -430,6 +448,7 @@ class PTSubMetatype(PTOperatorMetatype):
NamespaceTarget.TORCH: ["sub"],
}
hw_config_names = [HWConfigOpName.SUBTRACT]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -440,16 +459,26 @@ class PTMulMetatype(PTOperatorMetatype):
NamespaceTarget.TORCH: ["mul"],
}
hw_config_names = [HWConfigOpName.MULTIPLY]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
class PTDivMetatype(PTOperatorMetatype):
name = "DivOp"
module_to_function_names = {
- NamespaceTarget.TORCH_TENSOR: ["__div__", "__idiv__", "__truediv__"],
+ NamespaceTarget.TORCH_TENSOR: [
+ "div",
+ "__div__",
+ "__idiv__",
+ "__rdiv__",
+ "__truediv__",
+ "__itruediv__",
+ "__rtruediv__",
+ ],
NamespaceTarget.TORCH: ["div"],
}
hw_config_names = [HWConfigOpName.DIVIDE]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -457,6 +486,7 @@ class PTFloorDivMetatype(PTOperatorMetatype):
name = "FloordivOp"
module_to_function_names = {
NamespaceTarget.TORCH_TENSOR: ["__floordiv__", "__ifloordiv__", "__rfloordiv__"],
+ NamespaceTarget.TORCH: ["floor_divide"],
}
@@ -464,6 +494,7 @@ class PTFloorDivMetatype(PTOperatorMetatype):
class PTExpMetatype(PTOperatorMetatype):
name = "ExpOp"
module_to_function_names = {
+ NamespaceTarget.TORCH_TENSOR: ["exp"],
NamespaceTarget.TORCH: ["exp"],
}
@@ -472,6 +503,7 @@ class PTExpMetatype(PTOperatorMetatype):
class PTLogMetatype(PTOperatorMetatype):
name = "LogOp"
module_to_function_names = {
+ NamespaceTarget.TORCH_TENSOR: ["log"],
NamespaceTarget.TORCH: ["log"],
}
@@ -480,6 +512,7 @@ class PTLogMetatype(PTOperatorMetatype):
class PTAbsMetatype(PTOperatorMetatype):
name = "AbsOp"
module_to_function_names = {
+ NamespaceTarget.TORCH_TENSOR: ["abs", "__abs__"],
NamespaceTarget.TORCH: ["abs"],
}
@@ -496,10 +529,11 @@ class PTErfMetatype(PTOperatorMetatype):
class PTMatMulMetatype(PTOperatorMetatype):
name = "MatMulOp"
module_to_function_names = {
- NamespaceTarget.TORCH_TENSOR: ["matmul", "__matmul__"],
+ NamespaceTarget.TORCH_TENSOR: ["matmul", "__matmul__", "__rmatmul__"],
NamespaceTarget.TORCH: ["matmul", "bmm", "mm"],
}
hw_config_names = [HWConfigOpName.MATMUL]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -511,6 +545,7 @@ class PTBaddBmmMetatype(PTOperatorMetatype):
# presuming that most runtime implementations will fuse the bias addition into the matrix multiplication
# and therefore won't quantize the bias input, as this would break the hardware-fused pattern.
ignored_input_ports: List[int] = [0]
+ num_expected_input_edges = 2
@PT_OPERATOR_METATYPES.register()
@@ -565,23 +600,40 @@ class PTAvgPool3dMetatype(PTOperatorMetatype):
hw_config_names = [HWConfigOpName.AVGPOOL]
+class PTAdaptiveMaxPool1dMetatype(PTOperatorMetatype):
+ name = "AdaptiveMaxPool1DOp"
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["adaptive_max_pool1d"]}
+
+
+@PT_OPERATOR_METATYPES.register()
+class PTAdaptiveMaxPool2dMetatype(PTOperatorMetatype):
+ name = "AdaptiveMaxPool2DOp"
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["adaptive_max_pool2d"]}
+
+
+@PT_OPERATOR_METATYPES.register()
+class PTAdaptiveMaxPool3dMetatype(PTOperatorMetatype):
+ name = "AdaptiveMaxPool3DOp"
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["adaptive_max_pool3d"]}
+
+
class PTMaxPool1dMetatype(PTOperatorMetatype):
name = "MaxPool1DOp"
- module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool1d", "adaptive_max_pool1d"]}
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool1d"]}
hw_config_names = [HWConfigOpName.MAXPOOL]
@PT_OPERATOR_METATYPES.register()
class PTMaxPool2dMetatype(PTOperatorMetatype):
name = "MaxPool2DOp"
- module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool2d", "adaptive_max_pool2d"]}
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool2d"]}
hw_config_names = [HWConfigOpName.MAXPOOL]
@PT_OPERATOR_METATYPES.register()
class PTMaxPool3dMetatype(PTOperatorMetatype):
name = "MaxPool3DOp"
- module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool3d", "adaptive_max_pool3d"]}
+ module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["max_pool3d"]}
hw_config_names = [HWConfigOpName.MAXPOOL]
@@ -690,7 +742,11 @@ class PTSqueezeMetatype(PTOperatorMetatype):
@PT_OPERATOR_METATYPES.register()
class PTSplitMetatype(PTOperatorMetatype):
name = "SplitOp"
- module_to_function_names = {NamespaceTarget.TORCH_NN_FUNCTIONAL: ["split", "chunk", "unbind"]}
+ module_to_function_names = {
+ NamespaceTarget.TORCH_NN_FUNCTIONAL: [],
+ NamespaceTarget.TORCH_TENSOR: ["split", "chunk", "unbind"],
+ NamespaceTarget.TORCH: ["split", "chunk", "unbind"],
+ }
hw_config_names = [HWConfigOpName.SPLIT, HWConfigOpName.CHUNK]
@@ -795,35 +851,47 @@ class PTNotEqualMetatype(PTOperatorMetatype):
@PT_OPERATOR_METATYPES.register()
class PTLogicalOrMetatype(PTOperatorMetatype):
name = "LogicalOrOp"
- module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__or__"]}
+ module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__or__", "__ior__", "__ror__"]}
hw_config_names = [HWConfigOpName.LOGICALOR]
@PT_OPERATOR_METATYPES.register()
class PTLogicalXorMetatype(PTOperatorMetatype):
name = "LogicalXorOp"
- module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__xor__"]}
+ module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__xor__", "__ixor__", "__rxor__"]}
hw_config_names = [HWConfigOpName.LOGICALXOR]
@PT_OPERATOR_METATYPES.register()
class PTLogicalAndMetatype(PTOperatorMetatype):
name = "LogicalAndOp"
- module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__and__"]}
+ module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__and__", "__iand__", "__rand__"]}
hw_config_names = [HWConfigOpName.LOGICALAND]
@PT_OPERATOR_METATYPES.register()
class PTLogicalNotMetatype(PTOperatorMetatype):
name = "LogicalNotOp"
- module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["logical_not_"]}
+ module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["logical_not_", "__invert__"]}
hw_config_names = [HWConfigOpName.LOGICALNOT]
+@PT_OPERATOR_METATYPES.register()
+class PTNegativeMetatype(PTOperatorMetatype):
+ name = "NegativeOp"
+ module_to_function_names = {
+ NamespaceTarget.TORCH_TENSOR: ["neg", "__neg__"],
+ NamespaceTarget.TORCH: ["neg"],
+ }
+
+
@PT_OPERATOR_METATYPES.register()
class PTPowerMetatype(PTOperatorMetatype):
name = "PowerOp"
- module_to_function_names = {NamespaceTarget.TORCH_TENSOR: ["__pow__", "pow"], NamespaceTarget.TORCH: ["pow"]}
+ module_to_function_names = {
+ NamespaceTarget.TORCH_TENSOR: ["pow", "__pow__", "__ipow__", "__rpow__"],
+ NamespaceTarget.TORCH: ["pow"],
+ }
hw_config_names = [HWConfigOpName.POWER]
diff --git a/nncf/torch/nncf_network.py b/nncf/torch/nncf_network.py
index 29eb4b63d03..d8cbcb34140 100644
--- a/nncf/torch/nncf_network.py
+++ b/nncf/torch/nncf_network.py
@@ -51,7 +51,7 @@
from nncf.torch.dynamic_graph.patch_pytorch import ORIGINAL_CALL
from nncf.torch.dynamic_graph.scope import Scope
from nncf.torch.dynamic_graph.scope_access import get_module_by_scope
-from nncf.torch.dynamic_graph.trace_tensor import TracedTensor
+from nncf.torch.dynamic_graph.trace_tensor import strip_traced_tensors
from nncf.torch.dynamic_graph.wrappers import wrap_module_call
from nncf.torch.graph.graph import PTNNCFGraph
from nncf.torch.graph.graph_builder import GraphBuilder
@@ -61,7 +61,6 @@
from nncf.torch.graph.transformations.commands import PTTargetPoint
from nncf.torch.knowledge_distillation.knowledge_distillation_handler import KnowledgeDistillationLossHandler
from nncf.torch.layer_utils import _NNCFModuleMixin
-from nncf.torch.nested_objects_traversal import objwalk
from nncf.torch.nncf_module_replacement import replace_modules_by_nncf_modules
from nncf.torch.quantization.external_quantizer import EXTERNAL_QUANTIZERS_STORAGE_NAME
from nncf.torch.utils import compute_FLOPs_hook
@@ -245,14 +244,17 @@ def __init__(
self._extra_module_types: List[ExtraCompressionModuleType] = []
self._insertions_into_original_graph: Dict[PTTargetPoint, List[Tuple[Callable, TransformationPriority]]] = {}
- _orig_graph_build_forward_fn = self._get_dummy_forward_fn_for_graph_building(
- with_input_tracing=True, with_output_tracing=True
- )
+ if isinstance(model, NNCFNetwork):
+ self._nncf_replaced_modules = model.nncf._nncf_replaced_modules
+ else:
+ _orig_graph_build_forward_fn = self._get_dummy_forward_fn_for_graph_building(
+ with_input_tracing=True, with_output_tracing=True
+ )
- eval_op_scopes = self._collect_eval_op_scopes(model, _orig_graph_build_forward_fn)
+ eval_op_scopes = self._collect_eval_op_scopes(model, _orig_graph_build_forward_fn)
- # all modules called in eval mode should be replaced prior to graph building
- self._replace_modules_by_nncf_modules(model, eval_op_scopes)
+ # all modules called in eval mode should be replaced prior to graph building
+ self._replace_modules_by_nncf_modules(model, eval_op_scopes)
_orig_context = TracingContext()
@@ -314,23 +316,6 @@ def _model_ref(self) -> "NNCFNetwork":
def input_infos(self) -> ModelInputInfo:
return deepcopy(self._input_info)
- def _strip_traced_tensors(self, args: Tuple, kwargs: Dict) -> Tuple[Tuple, Dict]:
- """
- Required to guard against new forward calls on tensors that have already passed
- through NNCF's forward once and got turned into TracedTensors by reference access.
- """
- is_traced_tensor_predicate = lambda x: isinstance(x, TracedTensor)
-
- def strip_fn(tensor: TracedTensor) -> torch.Tensor:
- if hasattr(torch.Tensor, "as_subclass"):
- return torch.Tensor.as_subclass(tensor, torch.Tensor)
- # Torch < 1.7.0 fallback
- return torch.tensor(tensor, device=tensor.device, requires_grad=tensor.requires_grad)
-
- args = objwalk(args, is_traced_tensor_predicate, strip_fn)
- kwargs = objwalk(kwargs, is_traced_tensor_predicate, strip_fn)
- return args, kwargs
-
def create_knowledge_distillation_loss_handler(
self, kd_original_model: nn.Module, calculate_fn
) -> KnowledgeDistillationLossHandler:
@@ -752,7 +737,8 @@ def strip(self, do_copy: bool = True) -> "NNCFNetwork":
# PTQ algorithm does not set compressed controller
from nncf.torch.quantization.strip import strip_quantized_model
- return strip_quantized_model(self._model_ref)
+ model = deepcopy(self._model_ref) if do_copy else self._model_ref
+ return strip_quantized_model(model)
return self.compression_controller.strip(do_copy)
@@ -935,7 +921,7 @@ def forward(self, *args, **kwargs):
if not self.nncf._in_user_dummy_forward:
# If a user supplies own dummy forward, he is responsible for
# correctly wrapping inputs inside it as well.
- args, kwargs = self.nncf._strip_traced_tensors(args, kwargs)
+ args, kwargs = strip_traced_tensors(args, kwargs)
args, kwargs = self.nncf._wrap_inputs_fn(args, kwargs)
# For purposes of scope tracking, need the original forward call to occur as if it were
diff --git a/nncf/torch/pruning/operations.py b/nncf/torch/pruning/operations.py
index 67f2fad49d3..833aa22635b 100644
--- a/nncf/torch/pruning/operations.py
+++ b/nncf/torch/pruning/operations.py
@@ -37,6 +37,8 @@
from nncf.common.pruning.utils import PruningOperationsMetatypeRegistry
from nncf.common.pruning.utils import get_input_masks
from nncf.common.pruning.utils import is_prunable_depthwise_conv
+from nncf.torch.graph.operator_metatypes import PTAdaptiveMaxPool2dMetatype
+from nncf.torch.graph.operator_metatypes import PTAdaptiveMaxPool3dMetatype
from nncf.torch.graph.operator_metatypes import PTAddMetatype
from nncf.torch.graph.operator_metatypes import PTAvgPool2dMetatype
from nncf.torch.graph.operator_metatypes import PTAvgPool3dMetatype
@@ -167,8 +169,10 @@ class PTIdentityMaskForwardPruningOp(IdentityMaskForwardPruningOp, PTPruner):
PTGELUMetatype,
PTSigmoidMetatype,
PTSoftmaxMetatype,
+ PTAdaptiveMaxPool2dMetatype,
PTAvgPool2dMetatype,
PTMaxPool2dMetatype,
+ PTAdaptiveMaxPool3dMetatype,
PTAvgPool3dMetatype,
PTMaxPool3dMetatype,
PTMeanMetatype,
diff --git a/nncf/torch/quantization/quantize_model.py b/nncf/torch/quantization/quantize_model.py
index be68ba40f3a..91487604199 100644
--- a/nncf/torch/quantization/quantize_model.py
+++ b/nncf/torch/quantization/quantize_model.py
@@ -74,7 +74,7 @@ def quantize_impl(
def compress_weights_impl(
model: torch.nn.Module,
- mode=CompressWeightsMode.INT8,
+ mode=CompressWeightsMode.INT8_ASYM,
ratio: Optional[float] = None,
group_size: Optional[int] = None,
ignored_scope: Optional[IgnoredScope] = None,
@@ -85,17 +85,20 @@ def compress_weights_impl(
:param model: a Torch model for compression.
:param mode: Defines a mode for weight compression.
- INT8 stands for 8-bit integer quantization of all weights.
+ INT8_SYM stands for 8-bit integer symmetric quantization of all weights.
+ Weights are quantized symmetrically with a fixed zero point equals to 128.
+ INT8_ASYM is the same as INT8_SYM mode, but weights are quantized to a primary precision asymmetrically
+ with a typical non-fixed zero point.
INT4_SYM stands for a mixed-precision weights quantization with 4-bit integer as a primary precision.
Weights are quantized to a primary precision symmetrically with a fixed zero point equals to 8.
- The first and the last layers are always compressed to a backup precision, which is 8-bit integer,
+ All embeddings and the last layer are always compressed to a backup precision, which is INT8_ASYM,
by default. All others are quantized whether to 4-bit integer or to a backup precision depending on
criteria and the given ratio.
INT4_ASYM is the same as INT4_SYM mode, but weights are quantized to a primary precision asymmetrically
with a typical non-fixed zero point.
NF4 is the same as INT4_SYM mode, but primary precision is NF4 data type without zero point.
:param ratio: the ratio between baseline and backup precisions (e.g. 0.9 means 90% of layers quantized to NF4
- and the rest to INT8).
+ and the rest to INT8_ASYM).
:param group_size: number of weights (e.g. 128) in the channel dimension that share quantization parameters (scale).
The value -1 means no grouping.
:param ignored_scope: An ignored scope that defined the list of model control
@@ -104,8 +107,10 @@ def compress_weights_impl(
"""
if ignored_scope is not None:
raise AttributeError("Torch backend does not support ignored scope.")
- if mode != CompressWeightsMode.INT8:
- raise AttributeError(f"Torch backend supports only INT8 mode for weight compression, but given {mode} mode.")
+ if mode != CompressWeightsMode.INT8_ASYM:
+ raise AttributeError(
+ f"Torch backend supports only INT8_ASYM mode for weight compression, but given {mode} mode."
+ )
compressed_model, _ = replace_modules_by_nncf_modules(model)
insert_pre_compression_operations(model)
diff --git a/nncf/torch/return_types.py b/nncf/torch/return_types.py
new file mode 100644
index 00000000000..1b8c8e4fd75
--- /dev/null
+++ b/nncf/torch/return_types.py
@@ -0,0 +1,59 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import inspect
+from typing import Any, Optional, Tuple, Type, Union
+
+import torch
+
+
+def __get_supported_torch_return_types() -> Tuple[Type[tuple], ...]:
+ """
+ Collects types from torch.return_type which can be wrapped/unwrapped by NNCF.
+ NNCF can wrap/unwrap only return types that have two attributes, one of them
+ should be the `values` attribute.
+
+ :return: List of types from torch.return_type which can be wrapped/unwrapped by NNCF.
+ """
+ retval = [t for _, t in inspect.getmembers(torch.return_types) if inspect.isclass(t) and hasattr(t, "values")]
+ return tuple(t for t in retval if t.n_fields == 2)
+
+
+_TORCH_RETURN_TYPES = __get_supported_torch_return_types()
+
+
+def maybe_unwrap_from_torch_return_type(tensor: Any) -> torch.Tensor:
+ """
+ Attempts to unwrap the tensor value from one of torch.return_types instances
+ in case torch operation output is wrapped by a torch return_type.
+
+ :param tensor: Torch tensor or torch return type instance to unwrap values from.
+ :return: Unwrapped torch tensor.
+ """
+ if isinstance(tensor, _TORCH_RETURN_TYPES):
+ return tensor.values
+ return tensor
+
+
+def maybe_wrap_to_torch_return_type(tensor: torch.Tensor, wrapped_input: Optional[Union[tuple, torch.Tensor]]) -> Any:
+ """
+ Wraps tensor to wrapped_input wrapper in case wrapped_input is wrapped by a torch.return_value container.
+
+ :param tensor: Torch tensor to wrap.
+ :param wrapped_tensor: Instance of the tensor before it was unwrapped.
+ :return: Wrapped tensor in case wrapped_input is wrapped by a torch.return_value container else the tensor.
+ """
+
+ if isinstance(wrapped_input, _TORCH_RETURN_TYPES):
+ # We assume that return_type has only two attributes, the first one is `value`.
+ # This assumption is checked by `test_unwrap_wrap_torch_return_type`.
+ return wrapped_input.__class__((tensor, wrapped_input[1]))
+ return tensor
diff --git a/nncf/version.py b/nncf/version.py
index 7e34bdba420..fd30864ff0e 100644
--- a/nncf/version.py
+++ b/nncf/version.py
@@ -9,7 +9,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__ = "2.6.0"
+__version__ = "2.7.0"
BKC_TORCH_VERSION = "2.1.0"
BKC_TORCHVISION_VERSION = "0.16.0"
diff --git a/setup.py b/setup.py
index 05a8239ca71..ce44ce1c96b 100644
--- a/setup.py
+++ b/setup.py
@@ -133,7 +133,7 @@ def find_version(*file_paths):
ONNX_EXTRAS = ["onnx~=1.13.1", "onnxruntime~=1.14.1;python_version < '3.11'"]
-OPENVINO_EXTRAS = ["openvino==2023.1"]
+OPENVINO_EXTRAS = ["openvino==2023.2"]
EXTRAS_REQUIRE = {
diff --git a/tests/common/accuracy_control/backend.py b/tests/common/accuracy_control/backend.py
new file mode 100644
index 00000000000..116426e89e3
--- /dev/null
+++ b/tests/common/accuracy_control/backend.py
@@ -0,0 +1,77 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from typing import Any, List, Optional
+
+from nncf.common.graph.graph import NNCFGraph
+from nncf.common.graph.graph import NNCFNode
+from nncf.common.graph.operator_metatypes import OperatorMetatype
+from nncf.quantization.algorithms.accuracy_control.backend import AccuracyControlAlgoBackend
+from nncf.quantization.algorithms.accuracy_control.backend import TModel
+from tests.common.quantization.metatypes import CONSTANT_METATYPES
+from tests.common.quantization.metatypes import QUANTIZABLE_METATYPES
+from tests.common.quantization.metatypes import QUANTIZE_AGNOSTIC_METATYPES
+from tests.common.quantization.metatypes import QUANTIZER_METATYPES
+from tests.common.quantization.metatypes import ShapeOfTestMetatype
+
+
+class AABackendForTests(AccuracyControlAlgoBackend):
+ @staticmethod
+ def get_quantizer_metatypes() -> List[OperatorMetatype]:
+ return QUANTIZER_METATYPES
+
+ @staticmethod
+ def get_const_metatypes() -> List[OperatorMetatype]:
+ return CONSTANT_METATYPES
+
+ @staticmethod
+ def get_quantizable_metatypes() -> List[OperatorMetatype]:
+ return QUANTIZABLE_METATYPES
+
+ @staticmethod
+ def get_start_nodes_for_activation_path_tracing(nncf_graph: NNCFGraph) -> List[NNCFNode]:
+ return nncf_graph.get_input_nodes()
+
+ @staticmethod
+ def get_quantize_agnostic_metatypes() -> List[OperatorMetatype]:
+ return QUANTIZE_AGNOSTIC_METATYPES
+
+ @staticmethod
+ def get_shapeof_metatypes() -> List[OperatorMetatype]:
+ return [ShapeOfTestMetatype]
+
+ @staticmethod
+ def is_node_with_bias(node: NNCFNode, nncf_graph: NNCFGraph) -> bool:
+ return False
+
+ @staticmethod
+ def is_node_with_weight(node: NNCFNode) -> bool:
+ return False
+
+ @staticmethod
+ def get_bias_value(node_with_bias: NNCFNode, nncf_graph: NNCFGraph, model: TModel) -> Any:
+ return None
+
+ @staticmethod
+ def get_weight_value(node_with_weight: NNCFNode, model: TModel, port_id: int) -> Any:
+ return None
+
+ @staticmethod
+ def get_weight_tensor_port_ids(node: NNCFNode) -> List[Optional[int]]:
+ return None
+
+ @staticmethod
+ def get_model_size(model: TModel) -> int:
+ return 0
+
+ @staticmethod
+ def prepare_for_inference(model: TModel) -> TModel:
+ return model
diff --git a/tests/common/accuracy_control/test_ranking.py b/tests/common/accuracy_control/test_ranking.py
index a383f8281cc..c1000d81314 100644
--- a/tests/common/accuracy_control/test_ranking.py
+++ b/tests/common/accuracy_control/test_ranking.py
@@ -9,13 +9,20 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+
from typing import List
import numpy as np
import pytest
+from nncf.common.graph.graph import NNCFGraph
from nncf.quantization.algorithms.accuracy_control.rank_functions import normalized_mse
+from nncf.quantization.algorithms.accuracy_control.ranker import GroupToRank
+from nncf.quantization.algorithms.accuracy_control.ranker import Ranker
from nncf.quantization.algorithms.accuracy_control.subset_selection import get_subset_indices
+from tests.common.accuracy_control.backend import AABackendForTests
+from tests.common.quantization.test_quantizer_removal import GRAPHS as AA_GRAPHS_DESCR
+from tests.common.quantization.test_quantizer_removal import create_nncf_graph as aa_create_nncf_graph
def create_fp32_tensor_1d(items):
@@ -77,3 +84,41 @@ def test_normalized_mse(x_ref: np.ndarray, x_approx: np.ndarray, expected_nmse:
def test_get_subset_indices(errors: List[float], subset_size: int, expected_indices: List[int]):
actual_indices = get_subset_indices(errors, subset_size)
assert expected_indices == actual_indices
+
+
+@pytest.mark.parametrize(
+ "nncf_graph_name,ref_groups",
+ [
+ (
+ "simple_graph",
+ [
+ GroupToRank(["quantizer_139", "quantizer_162", "quantizer_119"], ["add_117", "conv2d_161"]),
+ GroupToRank(["quantizer_153", "quantizer_147"], ["conv2d_146"]),
+ GroupToRank(["quantizer_134", "quantizer_128"], ["conv2d_127"]),
+ ],
+ ),
+ (
+ "graph_with_shapeof",
+ [
+ GroupToRank(["quantizer_105"], ["interpolate_115"]),
+ GroupToRank(["quantizer_710", "quantizer_93"], ["multiply_99"]),
+ GroupToRank(["quantizer_82"], ["power_87"]),
+ ],
+ ),
+ ],
+)
+def test_find_groups_of_quantizers_to_rank(nncf_graph_name: NNCFGraph, ref_groups: List[GroupToRank]):
+ ranker = Ranker(1, tuple(), AABackendForTests, None)
+ nncf_graph = aa_create_nncf_graph(AA_GRAPHS_DESCR[nncf_graph_name])
+ ret_val = ranker.find_groups_of_quantizers_to_rank(nncf_graph)
+ assert len(ret_val) == len(ref_groups)
+ # Can zip as qauantizers are topologically sorted
+ for actual_group, ref_group in zip(ret_val, ref_groups):
+ for attr in ["quantizers", "operations"]:
+ acutal_attr_value = getattr(actual_group, attr)
+ ref_attr_value = getattr(ref_group, attr)
+
+ assert len(acutal_attr_value) == len(ref_attr_value)
+ actual_node_names = [n.node_name for n in acutal_attr_value]
+ for ref_node_name in ref_attr_value:
+ assert ref_node_name in actual_node_names
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after.dot
deleted file mode 100644
index 3dc12b5ad16..00000000000
--- a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after.dot
+++ /dev/null
@@ -1,12 +0,0 @@
-strict digraph {
-"0 /Input_1_0" [id=0, type=Input_1];
-"1 /ReadVariable_0" [id=1, type=ReadVariable];
-"4 /Conv_0" [id=4, type=Conv];
-"6 /Conv2_0" [id=6, type=Conv2];
-"7 /Add_0" [id=7, type=Add];
-"8 /Final_node_0" [id=8, type=Final_node];
-"0 /Input_1_0" -> "4 /Conv_0";
-"1 /ReadVariable_0" -> "7 /Add_0";
-"6 /Conv2_0" -> "7 /Add_0";
-"7 /Add_0" -> "8 /Final_node_0";
-}
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after0.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after0.dot
new file mode 100644
index 00000000000..98034ff015e
--- /dev/null
+++ b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after0.dot
@@ -0,0 +1,16 @@
+strict digraph {
+"8 /Concat_with_missed_input_0" [id=8, type=Concat_with_missed_input];
+"9 /Input_1_0" [id=9, type=Input_1];
+"10 /Input_2_0" [id=10, type=Input_2];
+"11 /Concat_with_input_0" [id=11, type=Concat_with_input];
+"12 /ReadVariable_0" [id=12, type=ReadVariable];
+"14 /Conv_0" [id=14, type=Conv];
+"16 /Conv2_0" [id=16, type=Conv2];
+"17 /Add_0" [id=17, type=Add];
+"18 /Final_node_0" [id=18, type=Final_node];
+"9 /Input_1_0" -> "14 /Conv_0";
+"10 /Input_2_0" -> "11 /Concat_with_input_0";
+"12 /ReadVariable_0" -> "17 /Add_0";
+"16 /Conv2_0" -> "17 /Add_0";
+"17 /Add_0" -> "18 /Final_node_0";
+}
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after1.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after1.dot
new file mode 100644
index 00000000000..87aab101c9e
--- /dev/null
+++ b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_after1.dot
@@ -0,0 +1,16 @@
+strict digraph {
+"15 /Concat_with_missed_input_0" [id=15, type=Concat_with_missed_input];
+"16 /Input_1_0" [id=16, type=Input_1];
+"17 /Input_2_0" [id=17, type=Input_2];
+"18 /Concat_with_input_0" [id=18, type=Concat_with_input];
+"19 /ReadVariable_0" [id=19, type=ReadVariable];
+"22 /Conv_0" [id=22, type=Conv];
+"25 /Conv2_0" [id=25, type=Conv2];
+"26 /Add_0" [id=26, type=Add];
+"27 /Final_node_0" [id=27, type=Final_node];
+"16 /Input_1_0" -> "22 /Conv_0";
+"17 /Input_2_0" -> "18 /Concat_with_input_0";
+"19 /ReadVariable_0" -> "26 /Add_0";
+"25 /Conv2_0" -> "26 /Add_0";
+"26 /Add_0" -> "27 /Final_node_0";
+}
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before.dot
deleted file mode 100644
index b4590b212a3..00000000000
--- a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before.dot
+++ /dev/null
@@ -1,18 +0,0 @@
-strict digraph {
-"0 /Input_1_0" [id=0, type=Input_1];
-"1 /ReadVariable_0" [id=1, type=ReadVariable];
-"2 /Weights_0" [id=2, type=Weights];
-"3 /AnyNodeBetweenWeightAndConv_0" [id=3, type=AnyNodeBetweenWeightAndConv];
-"4 /Conv_0" [id=4, type=Conv];
-"5 /Weights2_0" [id=5, type=Weights2];
-"6 /Conv2_0" [id=6, type=Conv2];
-"7 /Add_0" [id=7, type=Add];
-"8 /Final_node_0" [id=8, type=Final_node];
-"0 /Input_1_0" -> "4 /Conv_0";
-"1 /ReadVariable_0" -> "7 /Add_0";
-"2 /Weights_0" -> "3 /AnyNodeBetweenWeightAndConv_0";
-"3 /AnyNodeBetweenWeightAndConv_0" -> "4 /Conv_0";
-"5 /Weights2_0" -> "6 /Conv2_0";
-"6 /Conv2_0" -> "7 /Add_0";
-"7 /Add_0" -> "8 /Final_node_0";
-}
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before0.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before0.dot
new file mode 100644
index 00000000000..ed66aae8628
--- /dev/null
+++ b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before0.dot
@@ -0,0 +1,42 @@
+strict digraph {
+"0 /Const0_0" [id=0, type=Const0];
+"1 /Const1_0" [id=1, type=Const1];
+"2 /Const2_0" [id=2, type=Const2];
+"3 /Const3_0" [id=3, type=Const3];
+"4 /Const4_0" [id=4, type=Const4];
+"5 /Concat_with_constant_0" [id=5, type=Concat_with_constant];
+"6 /Const5_0" [id=6, type=Const5];
+"7 /Const6_0" [id=7, type=Const6];
+"8 /Concat_with_missed_input_0" [id=8, type=Concat_with_missed_input];
+"9 /Input_1_0" [id=9, type=Input_1];
+"10 /Input_2_0" [id=10, type=Input_2];
+"11 /Concat_with_input_0" [id=11, type=Concat_with_input];
+"12 /ReadVariable_0" [id=12, type=ReadVariable];
+"13 /Weights_0" [id=13, type=Weights];
+"14 /Conv_0" [id=14, type=Conv];
+"15 /Weights2_0" [id=15, type=Weights2];
+"16 /Conv2_0" [id=16, type=Conv2];
+"17 /Add_0" [id=17, type=Add];
+"18 /Final_node_0" [id=18, type=Final_node];
+"19 /Weights3_0" [id=19, type=Weights3];
+"20 /Weights4_0" [id=20, type=Weights4];
+"21 /Conv3_0" [id=21, type=Conv3];
+"22 /NodeAfterConstantConv_0" [id=22, type=NodeAfterConstantConv];
+"0 /Const0_0" -> "11 /Concat_with_input_0";
+"1 /Const1_0" -> "11 /Concat_with_input_0";
+"2 /Const2_0" -> "5 /Concat_with_constant_0";
+"3 /Const3_0" -> "5 /Concat_with_constant_0";
+"4 /Const4_0" -> "5 /Concat_with_constant_0";
+"6 /Const5_0" -> "8 /Concat_with_missed_input_0";
+"7 /Const6_0" -> "8 /Concat_with_missed_input_0";
+"9 /Input_1_0" -> "14 /Conv_0";
+"10 /Input_2_0" -> "11 /Concat_with_input_0";
+"12 /ReadVariable_0" -> "17 /Add_0";
+"13 /Weights_0" -> "14 /Conv_0";
+"15 /Weights2_0" -> "16 /Conv2_0";
+"16 /Conv2_0" -> "17 /Add_0";
+"17 /Add_0" -> "18 /Final_node_0";
+"19 /Weights3_0" -> "21 /Conv3_0";
+"20 /Weights4_0" -> "21 /Conv3_0";
+"21 /Conv3_0" -> "22 /NodeAfterConstantConv_0";
+}
diff --git a/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before1.dot b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before1.dot
new file mode 100644
index 00000000000..8b1942fe1c0
--- /dev/null
+++ b/tests/common/data/reference_graphs/passes/test_constant_filtering_model_before1.dot
@@ -0,0 +1,64 @@
+strict digraph {
+"0 /Const0_0" [id=0, type=Const0];
+"1 /AnyAfterConst0_0" [id=1, type=AnyAfterConst0];
+"2 /Const1_0" [id=2, type=Const1];
+"3 /AnyAfterConst1_0" [id=3, type=AnyAfterConst1];
+"4 /Const2_0" [id=4, type=Const2];
+"5 /AnyAfterConst2_0" [id=5, type=AnyAfterConst2];
+"6 /Const3_0" [id=6, type=Const3];
+"7 /AnyAfterConst3_0" [id=7, type=AnyAfterConst3];
+"8 /Const4_0" [id=8, type=Const4];
+"9 /AnyAfterConst4_0" [id=9, type=AnyAfterConst4];
+"10 /Concat_with_constant_0" [id=10, type=Concat_with_constant];
+"11 /Const5_0" [id=11, type=Const5];
+"12 /AnyAfterConst5_0" [id=12, type=AnyAfterConst5];
+"13 /Const6_0" [id=13, type=Const6];
+"14 /AnyAfterConst6_0" [id=14, type=AnyAfterConst6];
+"15 /Concat_with_missed_input_0" [id=15, type=Concat_with_missed_input];
+"16 /Input_1_0" [id=16, type=Input_1];
+"17 /Input_2_0" [id=17, type=Input_2];
+"18 /Concat_with_input_0" [id=18, type=Concat_with_input];
+"19 /ReadVariable_0" [id=19, type=ReadVariable];
+"20 /Weights_0" [id=20, type=Weights];
+"21 /AnyAfterWeights_0" [id=21, type=AnyAfterWeights];
+"22 /Conv_0" [id=22, type=Conv];
+"23 /Weights2_0" [id=23, type=Weights2];
+"24 /AnyAfterWeights2_0" [id=24, type=AnyAfterWeights2];
+"25 /Conv2_0" [id=25, type=Conv2];
+"26 /Add_0" [id=26, type=Add];
+"27 /Final_node_0" [id=27, type=Final_node];
+"28 /Weights3_0" [id=28, type=Weights3];
+"29 /AnyAfterWeights3_0" [id=29, type=AnyAfterWeights3];
+"30 /Weights4_0" [id=30, type=Weights4];
+"31 /AnyAfterWeights4_0" [id=31, type=AnyAfterWeights4];
+"32 /Conv3_0" [id=32, type=Conv3];
+"33 /NodeAfterConstantConv_0" [id=33, type=NodeAfterConstantConv];
+"0 /Const0_0" -> "1 /AnyAfterConst0_0";
+"1 /AnyAfterConst0_0" -> "18 /Concat_with_input_0";
+"2 /Const1_0" -> "3 /AnyAfterConst1_0";
+"3 /AnyAfterConst1_0" -> "18 /Concat_with_input_0";
+"4 /Const2_0" -> "5 /AnyAfterConst2_0";
+"5 /AnyAfterConst2_0" -> "10 /Concat_with_constant_0";
+"6 /Const3_0" -> "7 /AnyAfterConst3_0";
+"7 /AnyAfterConst3_0" -> "10 /Concat_with_constant_0";
+"8 /Const4_0" -> "9 /AnyAfterConst4_0";
+"9 /AnyAfterConst4_0" -> "10 /Concat_with_constant_0";
+"11 /Const5_0" -> "12 /AnyAfterConst5_0";
+"12 /AnyAfterConst5_0" -> "15 /Concat_with_missed_input_0";
+"13 /Const6_0" -> "14 /AnyAfterConst6_0";
+"14 /AnyAfterConst6_0" -> "15 /Concat_with_missed_input_0";
+"16 /Input_1_0" -> "22 /Conv_0";
+"17 /Input_2_0" -> "18 /Concat_with_input_0";
+"19 /ReadVariable_0" -> "26 /Add_0";
+"20 /Weights_0" -> "21 /AnyAfterWeights_0";
+"21 /AnyAfterWeights_0" -> "22 /Conv_0";
+"23 /Weights2_0" -> "24 /AnyAfterWeights2_0";
+"24 /AnyAfterWeights2_0" -> "25 /Conv2_0";
+"25 /Conv2_0" -> "26 /Add_0";
+"26 /Add_0" -> "27 /Final_node_0";
+"28 /Weights3_0" -> "29 /AnyAfterWeights3_0";
+"29 /AnyAfterWeights3_0" -> "32 /Conv3_0";
+"30 /Weights4_0" -> "31 /AnyAfterWeights4_0";
+"31 /AnyAfterWeights4_0" -> "32 /Conv3_0";
+"32 /Conv3_0" -> "33 /NodeAfterConstantConv_0";
+}
diff --git a/tests/torch/data/schema_validation_bad_configs/bad_algo_name.json b/tests/common/data/schema_validation_bad_configs/bad_algo_name.json
similarity index 100%
rename from tests/torch/data/schema_validation_bad_configs/bad_algo_name.json
rename to tests/common/data/schema_validation_bad_configs/bad_algo_name.json
diff --git a/tests/torch/data/schema_validation_bad_configs/hawq_bitwidth_per_scope_format_mismatch.json b/tests/common/data/schema_validation_bad_configs/hawq_bitwidth_per_scope_format_mismatch.json
similarity index 100%
rename from tests/torch/data/schema_validation_bad_configs/hawq_bitwidth_per_scope_format_mismatch.json
rename to tests/common/data/schema_validation_bad_configs/hawq_bitwidth_per_scope_format_mismatch.json
diff --git a/tests/torch/data/schema_validation_bad_configs/params_mismatch.json b/tests/common/data/schema_validation_bad_configs/params_mismatch.json
similarity index 100%
rename from tests/torch/data/schema_validation_bad_configs/params_mismatch.json
rename to tests/common/data/schema_validation_bad_configs/params_mismatch.json
diff --git a/tests/torch/data/schema_validation_bad_configs/wrong_num_init_steps_placement.json b/tests/common/data/schema_validation_bad_configs/wrong_num_init_steps_placement.json
similarity index 100%
rename from tests/torch/data/schema_validation_bad_configs/wrong_num_init_steps_placement.json
rename to tests/common/data/schema_validation_bad_configs/wrong_num_init_steps_placement.json
diff --git a/tests/torch/data/schema_validation_good_configs/full_movement_sparsity_params.json b/tests/common/data/schema_validation_good_configs/full_movement_sparsity_params.json
similarity index 100%
rename from tests/torch/data/schema_validation_good_configs/full_movement_sparsity_params.json
rename to tests/common/data/schema_validation_good_configs/full_movement_sparsity_params.json
diff --git a/tests/torch/data/schema_validation_good_configs/full_nas_params.json b/tests/common/data/schema_validation_good_configs/full_nas_params.json
similarity index 100%
rename from tests/torch/data/schema_validation_good_configs/full_nas_params.json
rename to tests/common/data/schema_validation_good_configs/full_nas_params.json
diff --git a/tests/common/graph/test_graph_pattern.py b/tests/common/graph/test_graph_pattern.py
index d995a85942f..21be7755bf3 100644
--- a/tests/common/graph/test_graph_pattern.py
+++ b/tests/common/graph/test_graph_pattern.py
@@ -11,6 +11,7 @@
import copy
import itertools
+from pathlib import Path
import networkx as nx
@@ -213,3 +214,10 @@ def test_join_pattern_with_special_input_node():
ref_pattern.add_edge(node, added_node)
assert pattern == ref_pattern
+
+
+def test_dump(tmp_path: Path):
+ path_dot = tmp_path / "pattern.dot"
+ TestPattern.first_pattern.dump_graph(path_dot)
+ assert path_dot.is_file()
+ path_dot.unlink()
diff --git a/tests/common/quantization/metatypes.py b/tests/common/quantization/metatypes.py
index 8b8255c59a7..a8a8c0a92e4 100644
--- a/tests/common/quantization/metatypes.py
+++ b/tests/common/quantization/metatypes.py
@@ -36,11 +36,13 @@ class BatchNormTestMetatype(TestMetatype):
@METATYPES_FOR_TEST.register()
class Conv2dTestMetatype(TestMetatype):
name = "conv2d"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
class MatMulTestMetatype(TestMetatype):
name = "matmul"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
@@ -76,6 +78,7 @@ class CatTestMetatype(TestMetatype):
@METATYPES_FOR_TEST.register()
class LinearTestMetatype(TestMetatype):
name = "linear"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
@@ -96,11 +99,13 @@ class IdentityTestMetatype(TestMetatype):
@METATYPES_FOR_TEST.register()
class ReshapeTestMetatype(TestMetatype):
name = "reshape"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
class QuantizerTestMetatype(TestMetatype):
name = "quantizer"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
@@ -116,6 +121,7 @@ class ReluTestMetatype(TestMetatype):
@METATYPES_FOR_TEST.register()
class AddTestMetatype(TestMetatype):
name = "add"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
@@ -126,16 +132,19 @@ class ShapeOfTestMetatype(TestMetatype):
@METATYPES_FOR_TEST.register()
class PowerTestMetatype(TestMetatype):
name = "power"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
class MultiplyTestMetatype(TestMetatype):
name = "multiply"
+ num_expected_input_edges = 2
@METATYPES_FOR_TEST.register()
class InterpolateTestMetatype(TestMetatype):
name = "interpolate"
+ num_expected_input_edges = 3
@METATYPES_FOR_TEST.register()
diff --git a/tests/common/quantization/test_passes.py b/tests/common/quantization/test_passes.py
index 87d38d09805..4113decfc58 100644
--- a/tests/common/quantization/test_passes.py
+++ b/tests/common/quantization/test_passes.py
@@ -14,6 +14,8 @@
import pytest
+from nncf.common.graph.layer_attributes import MultipleInputLayerAttributes
+from nncf.common.graph.operator_metatypes import OperatorMetatype
from nncf.quantization.passes import filter_constant_nodes
from nncf.quantization.passes import remove_nodes_and_reconnect_graph
from tests.post_training.test_templates.models import NNCFGraphDropoutRemovingCase
@@ -57,17 +59,31 @@ def test_remove_nodes_and_reconnect_graph(mode: TestModes):
_check_graphs(dot_reference_path_after, nncf_graph)
-@pytest.mark.xfail
-def test_filter_constant_nodes():
- dot_reference_path_before = Path("passes") / "test_constant_filtering_model_before.dot"
- dot_reference_path_after = Path("passes") / "test_constant_filtering_model_after.dot"
+@pytest.mark.parametrize("node_between_const_and_op", [False, True])
+def test_filter_constant_nodes(node_between_const_and_op):
+ dot_reference_path_before = (
+ Path("passes") / f"test_constant_filtering_model_before{int(node_between_const_and_op)}.dot"
+ )
+ dot_reference_path_after = (
+ Path("passes") / f"test_constant_filtering_model_after{int(node_between_const_and_op)}.dot"
+ )
+
+ class ConstantMetatype(OperatorMetatype):
+ num_expected_input_edges = 0
+ pass
- constant_metatype = "CONSTANT_METATYPE"
- read_variable_metatype = "READ_VARIABLE_METATYPE"
+ class NodeWithWeightMetatype(OperatorMetatype):
+ num_expected_input_edges = 2
- nncf_graph = NNCFGraphToTestConstantFiltering(constant_metatype, read_variable_metatype).nncf_graph
+ nncf_graph = NNCFGraphToTestConstantFiltering(
+ ConstantMetatype,
+ NodeWithWeightMetatype,
+ MultipleInputLayerAttributes(1, 3),
+ node_between_const_and_op,
+ ).nncf_graph
+
+ additional_input_names = ["/Conv2_0", "/Concat_with_missed_input_0"]
+ input_nodes = nncf_graph.get_input_nodes() + [nncf_graph.get_node_by_name(name) for name in additional_input_names]
_check_graphs(dot_reference_path_before, nncf_graph)
- filter_constant_nodes(
- nncf_graph, read_variable_metatypes=[read_variable_metatype], constant_nodes_metatypes=[constant_metatype]
- )
+ filter_constant_nodes(nncf_graph, input_nodes)
_check_graphs(dot_reference_path_after, nncf_graph)
diff --git a/tests/common/quantization/test_quantizer_removal.py b/tests/common/quantization/test_quantizer_removal.py
index 159095fd0ae..65baa4aad40 100644
--- a/tests/common/quantization/test_quantizer_removal.py
+++ b/tests/common/quantization/test_quantizer_removal.py
@@ -24,7 +24,7 @@
from tests.common.quantization.metatypes import QUANTIZABLE_METATYPES
from tests.common.quantization.metatypes import QUANTIZE_AGNOSTIC_METATYPES
from tests.common.quantization.metatypes import QUANTIZER_METATYPES
-from tests.common.quantization.metatypes import SHAPEOF_METATYPES
+from tests.common.quantization.metatypes import ShapeOfTestMetatype
@dataclass
@@ -226,7 +226,10 @@ def create_test_params():
@pytest.mark.parametrize("nncf_graph,test_case", create_test_params())
def test_find_quantizer_nodes_to_cut(nncf_graph: NNCFGraph, test_case: TestCase):
quantizer_node = nncf_graph.get_node_by_name(test_case.node_name)
- nncf_graph_without_shapeof = remove_shapeof_subgraphs(deepcopy(nncf_graph), SHAPEOF_METATYPES)
+ # As test graphs are fully connected and does not have readvariable metatyep,
+ # this should work
+ input_nodes = nncf_graph.get_input_nodes()
+ nncf_graph_without_shapeof = remove_shapeof_subgraphs(deepcopy(nncf_graph), [ShapeOfTestMetatype], input_nodes)
nodes, ops = find_quantizer_nodes_to_cut(
nncf_graph_without_shapeof,
quantizer_node,
diff --git a/tests/common/sdl/__init__.py b/tests/common/sdl/__init__.py
new file mode 100644
index 00000000000..9b29b47534a
--- /dev/null
+++ b/tests/common/sdl/__init__.py
@@ -0,0 +1,10 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
diff --git a/tests/torch/test_config_schema.py b/tests/common/sdl/test_config_schema.py
similarity index 85%
rename from tests/torch/test_config_schema.py
rename to tests/common/sdl/test_config_schema.py
index 7b4bf9a5534..9dbfcb42780 100644
--- a/tests/torch/test_config_schema.py
+++ b/tests/common/sdl/test_config_schema.py
@@ -26,9 +26,14 @@
PROJECT_ROOT / Path("examples/torch/object_detection/configs"),
TEST_ROOT / Path("torch/data/configs"),
TEST_ROOT / Path("torch/data/schema_validation_good_configs"),
+ PROJECT_ROOT / Path("examples/tensorflow/classification/configs"),
+ PROJECT_ROOT / Path("examples/tensorflow/segmentation/configs"),
+ PROJECT_ROOT / Path("examples/tensorflow/object_detection/configs"),
+ TEST_ROOT / Path("tensorflow/data/configs"),
+ TEST_ROOT / Path("common/data/schema_validation_good_configs"),
]
-BAD_CONFIG_SOURCES = [TEST_ROOT / Path("torch/data/schema_validation_bad_configs")]
+BAD_CONFIG_SOURCES = [TEST_ROOT / Path("common/data/schema_validation_bad_configs")]
ConfigPathVsPassesSchemaVal = namedtuple("ConfigPathVsPassesSchemaVal", ("path", "should_pass"))
TEST_STRUCTS = []
diff --git a/tests/common/sdl/test_symlinks.py b/tests/common/sdl/test_symlinks.py
new file mode 100644
index 00000000000..aa42a83086a
--- /dev/null
+++ b/tests/common/sdl/test_symlinks.py
@@ -0,0 +1,29 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+from pathlib import Path
+from typing import Any, Callable
+
+import pytest
+
+from nncf import NNCFConfig
+from tests.cross_fw.sdl.symlinks import FileOpeningEntrypointProvider
+from tests.cross_fw.sdl.symlinks import check_symlinks_are_not_followed
+
+
+class NNCFConfigFromJSON(FileOpeningEntrypointProvider):
+ def get_entrypoint(self) -> Callable[[str], Any]:
+ return NNCFConfig.from_json
+
+
+@pytest.mark.parametrize("file_opening_entrypoint", [NNCFConfigFromJSON()])
+def test_symlinks_are_not_followed(tmp_path: Path, file_opening_entrypoint: FileOpeningEntrypointProvider):
+ entrypoint = file_opening_entrypoint.get_entrypoint()
+ check_symlinks_are_not_followed(tmp_path, entrypoint)
diff --git a/tests/cross_fw/examples/example_scope.json b/tests/cross_fw/examples/example_scope.json
index 1bb9f43f0b0..35222ac6452 100644
--- a/tests/cross_fw/examples/example_scope.json
+++ b/tests/cross_fw/examples/example_scope.json
@@ -110,8 +110,8 @@
"cpu": "Intel(R) Core(TM) i9-10980XE CPU @ 3.00GHz",
"accuracy_metrics": {
"fp32_top1": 0.9864968152866243,
- "int8_top1": 0.9836942675159236,
- "accuracy_drop": 0.0035668789808918078
+ "int8_top1": 0.9849681528662421,
+ "accuracy_drop": 0.0015286624203821875
},
"performance_metrics": {
"fp32_fps": 1624.67,
@@ -119,9 +119,9 @@
"performance_speed_up": 3.681947718613626
},
"model_size_metrics": {
- "fp32_model_size": 8.605537414550781,
- "int8_model_size": 2.748152732849121,
- "model_compression_rate": 3.131389792018245
+ "fp32_model_size": 8.610844612121582,
+ "int8_model_size": 2.637709617614746,
+ "model_compression_rate": 3.264515758147889
}
},
"post_training_quantization_torch_ssd300_vgg16": {
diff --git a/tests/cross_fw/sdl/__init__.py b/tests/cross_fw/sdl/__init__.py
new file mode 100644
index 00000000000..9b29b47534a
--- /dev/null
+++ b/tests/cross_fw/sdl/__init__.py
@@ -0,0 +1,10 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
diff --git a/tests/cross_fw/sdl/symlinks.py b/tests/cross_fw/sdl/symlinks.py
new file mode 100644
index 00000000000..982ac0b8bf7
--- /dev/null
+++ b/tests/cross_fw/sdl/symlinks.py
@@ -0,0 +1,34 @@
+# Copyright (c) 2023 Intel Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+import abc
+from pathlib import Path
+from typing import Any, Callable
+
+import pytest
+
+from nncf.common.utils.os import is_windows
+
+
+def check_symlinks_are_not_followed(tmp_path: Path, file_opening_entrypoint: Callable[[str], Any]):
+ if is_windows():
+ pytest.skip("Symlinks are not supported on Windows")
+ symlink_path = tmp_path / "symlink"
+ real_file = tmp_path / "real_file"
+ real_file.touch(exist_ok=True)
+ symlink_path.symlink_to(real_file)
+ with pytest.raises(RuntimeError, match="is a symbolic link, aborting"):
+ file_opening_entrypoint(str(symlink_path))
+
+
+class FileOpeningEntrypointProvider(abc.ABC):
+ @abc.abstractmethod
+ def get_entrypoint(self) -> Callable[[str], Any]:
+ pass
diff --git a/tests/onnx/benchmarking/requirements.txt b/tests/onnx/benchmarking/requirements.txt
index 53ef73b9603..544d7539e13 100644
--- a/tests/onnx/benchmarking/requirements.txt
+++ b/tests/onnx/benchmarking/requirements.txt
@@ -1,2 +1,2 @@
pycocotools
-openvino-dev==2023.1
+openvino-dev==2023.2
diff --git a/tests/onnx/requirements.txt b/tests/onnx/requirements.txt
index bf62b68561f..fbfc2c1306c 100644
--- a/tests/onnx/requirements.txt
+++ b/tests/onnx/requirements.txt
@@ -5,7 +5,7 @@ pytest-ordering>=0.6
torch~=1.13.0
torchvision~=0.14.0
yattag>=1.14.0
-openvino-dev==2023.1
+openvino-dev==2023.2
fastdownload
scikit-learn
# Pandas requires it for styling in e2e report generation
diff --git a/tests/openvino/native/common.py b/tests/openvino/native/common.py
index fdb4f534f45..f31751581e7 100644
--- a/tests/openvino/native/common.py
+++ b/tests/openvino/native/common.py
@@ -10,6 +10,7 @@
# limitations under the License.
import json
from copy import deepcopy
+from typing import Tuple
import numpy as np
import openvino.runtime as ov
@@ -65,13 +66,17 @@ def dump_to_json(local_path, data):
json.dump(deepcopy(data), file, indent=4, cls=NumpyEncoder)
-def get_openvino_version() -> str:
+def get_openvino_major_minor_version() -> Tuple[int]:
ov_version = ov.__version__
pos = ov_version.find("-")
if pos != -1:
ov_version = ov_version[:pos]
ov_version = version.parse(ov_version).base_version
- version_major, version_minor = ov_version.split(".")[:2]
+ return tuple(map(int, ov_version.split(".")[:2]))
+
+
+def get_openvino_version() -> str:
+ major_verison, minor_version = get_openvino_major_minor_version()
- return f"{version_major}.{version_minor}"
+ return f"{major_verison}.{minor_version}"
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ComparisonBinaryModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ComparisonBinaryModel.dot
deleted file mode 100644
index 467811ae36f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ComparisonBinaryModel.dot
+++ /dev/null
@@ -1,19 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Add" [id=1, type=Add];
-"2 Gather_6" [id=2, type=Gather];
-"3 GreaterEqual" [id=3, type=GreaterEqual];
-"4 Result_Add" [id=4, type=Result];
-"5 Convert" [id=5, type=Convert];
-"6 Constant_5" [id=6, type=Constant];
-"7 Constant_2" [id=7, type=Constant];
-"0 Input" -> "1 Add" [label="[1, 3, 4, 2]", style=solid];
-"0 Input" -> "2 Gather_6" [label="[1, 3, 4, 2]", style=solid];
-"0 Input" -> "3 GreaterEqual" [label="[1, 3, 4, 2]", style=solid];
-"1 Add" -> "4 Result_Add" [label="[1, 3, 4, 2, 3, 4, 2]", style=solid];
-"2 Gather_6" -> "1 Add" [label="[1, 3, 4, 2, 3, 4, 2]", style=solid];
-"3 GreaterEqual" -> "5 Convert" [label="[1, 3, 4, 2]", style=dashed];
-"5 Convert" -> "2 Gather_6" [label="[1, 3, 4, 2]", style=dashed];
-"6 Constant_5" -> "2 Gather_6" [label="[]", style=dashed];
-"7 Constant_2" -> "3 GreaterEqual" [label="[1, 3, 4, 2]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvModel.dot
deleted file mode 100644
index dcc2423384f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvModel.dot
+++ /dev/null
@@ -1,35 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Conv" [id=4, type=Convolution];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv_Add" [id=6, type=Add];
-"7 Transpose" [id=7, type=Transpose];
-"8 Relu" [id=8, type=Relu];
-"9 Concat_15" [id=9, type=Concat];
-"10 Result" [id=10, type=Result];
-"11 Constant_13" [id=11, type=Constant];
-"12 Constant_11" [id=12, type=Constant];
-"13 Constant_9" [id=13, type=Constant];
-"14 Bias" [id=14, type=Constant];
-"15 Constant_3" [id=15, type=Constant];
-"16 Constant_1" [id=16, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Conv" [label="[1, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[1, 3, 2, 4]", style=solid];
-"4 Conv" -> "6 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[1, 3, 2, 4]", style=solid];
-"6 Conv_Add" -> "8 Relu" [label="[1, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_15" [label="[1, 3, 4, 2]", style=solid];
-"8 Relu" -> "9 Concat_15" [label="[1, 3, 4, 2]", style=solid];
-"9 Concat_15" -> "10 Result" [label="[2, 3, 4, 2]", style=solid];
-"11 Constant_13" -> "7 Transpose" [label="[4]", style=dashed];
-"12 Constant_11" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"13 Constant_9" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"14 Bias" -> "6 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Constant_3" -> "4 Conv" [label="[3, 3, 1, 1]", style=solid];
-"16 Constant_1" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvNotBiasModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvNotBiasModel.dot
deleted file mode 100644
index a53e7699cce..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ConvNotBiasModel.dot
+++ /dev/null
@@ -1,19 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Sub" [id=1, type=Subtract];
-"2 Conv" [id=2, type=Convolution];
-"3 Conv_Add" [id=3, type=Add];
-"4 Relu" [id=4, type=Relu];
-"5 Result" [id=5, type=Result];
-"6 NotBias" [id=6, type=Constant];
-"7 Constant_143" [id=7, type=Constant];
-"8 Constant_141" [id=8, type=Constant];
-"0 Input_1" -> "1 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Sub" -> "2 Conv" [label="[1, 3, 4, 2]", style=solid];
-"2 Conv" -> "3 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"3 Conv_Add" -> "4 Relu" [label="[1, 3, 4, 2]", style=solid];
-"4 Relu" -> "5 Result" [label="[1, 3, 4, 2]", style=solid];
-"6 NotBias" -> "3 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"7 Constant_143" -> "2 Conv" [label="[3, 3, 1, 1]", style=solid];
-"8 Constant_141" -> "1 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DepthwiseConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DepthwiseConvModel.dot
deleted file mode 100644
index 884ed9bce29..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DepthwiseConvModel.dot
+++ /dev/null
@@ -1,15 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Conv" [id=1, type=GroupConvolution];
-"2 Add" [id=2, type=Add];
-"3 Relu" [id=3, type=Relu];
-"4 Result" [id=4, type=Result];
-"5 Constant_4" [id=5, type=Constant];
-"6 Constant_2" [id=6, type=Constant];
-"0 Input_1" -> "1 Conv" [label="[1, 3, 5, 5]", style=solid];
-"1 Conv" -> "2 Add" [label="[1, 3, 3, 3]", style=solid];
-"2 Add" -> "3 Relu" [label="[1, 3, 3, 3]", style=solid];
-"3 Relu" -> "4 Result" [label="[1, 3, 3, 3]", style=solid];
-"5 Constant_4" -> "2 Add" [label="[1, 3, 1, 1]", style=solid];
-"6 Constant_2" -> "1 Conv" [label="[3, 1, 1, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DynamicModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DynamicModel.dot
deleted file mode 100644
index bf3926ef1ad..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/DynamicModel.dot
+++ /dev/null
@@ -1,35 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Conv" [id=4, type=Convolution];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv_Add" [id=6, type=Add];
-"7 Transpose" [id=7, type=Transpose];
-"8 Relu" [id=8, type=Relu];
-"9 Concat_58" [id=9, type=Concat];
-"10 Result" [id=10, type=Result];
-"11 Constant_56" [id=11, type=Constant];
-"12 Constant_54" [id=12, type=Constant];
-"13 Constant_52" [id=13, type=Constant];
-"14 Bias" [id=14, type=Constant];
-"15 Constant_46" [id=15, type=Constant];
-"16 Constant_44" [id=16, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[99, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[99, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Conv" [label="[99, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[99, 3, 2, 4]", style=solid];
-"4 Conv" -> "6 Conv_Add" [label="[99, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[99, 3, 2, 4]", style=solid];
-"6 Conv_Add" -> "8 Relu" [label="[99, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_58" [label="[99, 3, 4, 2]", style=solid];
-"8 Relu" -> "9 Concat_58" [label="[99, 3, 4, 2]", style=solid];
-"9 Concat_58" -> "10 Result" [label="[198, 3, 4, 2]", style=solid];
-"11 Constant_56" -> "7 Transpose" [label="[4]", style=dashed];
-"12 Constant_54" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"13 Constant_52" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"14 Bias" -> "6 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Constant_46" -> "4 Conv" [label="[3, 3, 1, 1]", style=solid];
-"16 Constant_44" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/GroupNormalizationModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/GroupNormalizationModel.dot
deleted file mode 100644
index 44ba7698a92..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/GroupNormalizationModel.dot
+++ /dev/null
@@ -1,29 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Conv" [id=1, type=Convolution];
-"2 Conv_Add" [id=2, type=Add];
-"3 GroupNormalization_169" [id=3, type=GroupNormalization];
-"4 Relu" [id=4, type=Relu];
-"5 Mul" [id=5, type=Multiply];
-"6 Add" [id=6, type=Add];
-"7 Result" [id=7, type=Result];
-"8 Constant_173" [id=8, type=Constant];
-"9 Constant_171" [id=9, type=Constant];
-"10 Constant_168" [id=10, type=Constant];
-"11 Constant_167" [id=11, type=Constant];
-"12 Bias" [id=12, type=Constant];
-"13 Constant_163" [id=13, type=Constant];
-"0 Input_1" -> "1 Conv" [label="[1, 2, 3, 4, 4]", style=solid];
-"1 Conv" -> "2 Conv_Add" [label="[1, 4, 1, 2, 2]", style=solid];
-"2 Conv_Add" -> "3 GroupNormalization_169" [label="[1, 4, 3, 2, 2]", style=solid];
-"3 GroupNormalization_169" -> "4 Relu" [label="[1, 4, 3, 2, 2]", style=solid];
-"4 Relu" -> "5 Mul" [label="[1, 4, 3, 2, 2]", style=solid];
-"5 Mul" -> "6 Add" [label="[1, 4, 3, 2, 2]", style=solid];
-"6 Add" -> "7 Result" [label="[1, 4, 3, 2, 2]", style=solid];
-"8 Constant_173" -> "6 Add" [label="[1, 4, 1, 1, 1]", style=solid];
-"9 Constant_171" -> "5 Mul" [label="[1, 4, 1, 1, 1]", style=solid];
-"10 Constant_168" -> "3 GroupNormalization_169" [label="[4]", style=solid];
-"11 Constant_167" -> "3 GroupNormalization_169" [label="[4]", style=solid];
-"12 Bias" -> "2 Conv_Add" [label="[1, 1, 3, 1, 1]", style=solid];
-"13 Constant_163" -> "1 Conv" [label="[4, 2, 3, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/IntegerModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/IntegerModel.dot
deleted file mode 100644
index 63cc63bfa23..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/IntegerModel.dot
+++ /dev/null
@@ -1,42 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Convert_1" [id=1, type=Convert];
-"2 Gather_15" [id=2, type=Gather];
-"3 Gather_4" [id=3, type=Gather];
-"4 MatMul_2" [id=4, type=MatMul];
-"5 Gather_7" [id=5, type=Gather];
-"6 Add_1" [id=6, type=Add];
-"7 Gather_10" [id=7, type=Gather];
-"8 Result" [id=8, type=Result];
-"9 MatMul_1" [id=9, type=MatMul];
-"10 Constant_16" [id=10, type=Constant];
-"11 Constant_14" [id=11, type=Constant];
-"12 Constant_13" [id=12, type=Constant];
-"13 Constant_11" [id=13, type=Constant];
-"14 Constant_9" [id=14, type=Constant];
-"15 Constant_8" [id=15, type=Constant];
-"16 Constant_6" [id=16, type=Constant];
-"17 Constant_3" [id=17, type=Constant];
-"18 Constant_2" [id=18, type=Constant];
-"19 Constant_5" [id=19, type=Constant];
-"0 Input" -> "1 Convert_1" [label="[1, 192, 1]", style=solid];
-"0 Input" -> "2 Gather_15" [label="[1, 192, 1]", style=solid];
-"1 Convert_1" -> "3 Gather_4" [label="[1, 192, 1]", style=dashed];
-"2 Gather_15" -> "4 MatMul_2" [label="[1, 192]", style=solid];
-"3 Gather_4" -> "5 Gather_7" [label="[192, 1]", style=dashed];
-"4 MatMul_2" -> "6 Add_1" [label="[1, 160]", style=solid];
-"5 Gather_7" -> "7 Gather_10" [label="[192, 1, 160]", style=solid];
-"6 Add_1" -> "8 Result" [label="[1, 160]", style=solid];
-"7 Gather_10" -> "9 MatMul_1" [label="[1, 160]", style=solid];
-"9 MatMul_1" -> "6 Add_1" [label="[1, 160]", style=solid];
-"10 Constant_16" -> "4 MatMul_2" [label="[160, 192]", style=solid];
-"11 Constant_14" -> "2 Gather_15" [label="[]", style=dashed];
-"12 Constant_13" -> "2 Gather_15" [label="[]", style=dashed];
-"13 Constant_11" -> "9 MatMul_1" [label="[160, 160]", style=solid];
-"14 Constant_9" -> "7 Gather_10" [label="[]", style=dashed];
-"15 Constant_8" -> "7 Gather_10" [label="[]", style=dashed];
-"16 Constant_6" -> "5 Gather_7" [label="[]", style=dashed];
-"17 Constant_3" -> "3 Gather_4" [label="[]", style=dashed];
-"18 Constant_2" -> "3 Gather_4" [label="[]", style=dashed];
-"19 Constant_5" -> "5 Gather_7" [label="[369, 160]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMModel.dot
deleted file mode 100644
index b23d980fed3..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMModel.dot
+++ /dev/null
@@ -1,60 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 ReadValue_1" [id=1, type=ReadValue];
-"2 Squeeze_1" [id=2, type=Squeeze];
-"3 Add" [id=3, type=Add];
-"4 MatMul_1" [id=4, type=MatMul];
-"5 MatMul_2" [id=5, type=MatMul];
-"6 Add_1" [id=6, type=Add];
-"7 Split_13" [id=7, type=Split];
-"8 Sigmoid_1" [id=8, type=Sigmoid];
-"9 Sigmoid_2" [id=9, type=Sigmoid];
-"10 Sigmoid_3" [id=10, type=Sigmoid];
-"11 Tanh_1" [id=11, type=Tanh];
-"12 Multiply_1" [id=12, type=Multiply];
-"13 Multiply_2" [id=13, type=Multiply];
-"14 Multiply_3" [id=14, type=Multiply];
-"15 Add_2" [id=15, type=Add];
-"16 Assign_1" [id=16, type=Assign];
-"17 MatMul_3" [id=17, type=MatMul];
-"18 Tanh_2" [id=18, type=Tanh];
-"19 Result" [id=19, type=Result];
-"20 Constant_12" [id=20, type=Constant];
-"21 Constant_9" [id=21, type=Constant];
-"22 Constant_7" [id=22, type=Constant];
-"23 Constant_5" [id=23, type=Constant];
-"24 Constant_3" [id=24, type=Constant];
-"25 Constant_1" [id=25, type=Constant];
-"26 Constant_18" [id=26, type=Constant];
-"27 Constant_25" [id=27, type=Constant];
-"0 Input" -> "2 Squeeze_1" [label="[1, 1, 128]", style=solid];
-"1 ReadValue_1" -> "3 Add" [label="[1, 64]", style=solid];
-"2 Squeeze_1" -> "4 MatMul_1" [label="[1, 128]", style=solid];
-"3 Add" -> "5 MatMul_2" [label="[1, 64]", style=solid];
-"4 MatMul_1" -> "6 Add_1" [label="[1, 256]", style=solid];
-"5 MatMul_2" -> "6 Add_1" [label="[1, 256]", style=solid];
-"6 Add_1" -> "7 Split_13" [label="[1, 256]", style=solid];
-"7 Split_13" -> "8 Sigmoid_1" [label="[1, 64]", style=solid];
-"7 Split_13" -> "9 Sigmoid_2" [label="[1, 64]", style=solid];
-"7 Split_13" -> "10 Sigmoid_3" [label="[1, 64]", style=solid];
-"7 Split_13" -> "11 Tanh_1" [label="[1, 64]", style=solid];
-"8 Sigmoid_1" -> "12 Multiply_1" [label="[1, 64]", style=solid];
-"9 Sigmoid_2" -> "13 Multiply_2" [label="[1, 64]", style=solid];
-"10 Sigmoid_3" -> "14 Multiply_3" [label="[1, 64]", style=solid];
-"11 Tanh_1" -> "13 Multiply_2" [label="[1, 64]", style=solid];
-"12 Multiply_1" -> "15 Add_2" [label="[1, 64]", style=solid];
-"13 Multiply_2" -> "15 Add_2" [label="[1, 64]", style=solid];
-"14 Multiply_3" -> "16 Assign_1" [label="[1, 64]", style=solid];
-"14 Multiply_3" -> "17 MatMul_3" [label="[1, 64]", style=solid];
-"15 Add_2" -> "18 Tanh_2" [label="[1, 64]", style=solid];
-"17 MatMul_3" -> "19 Result" [label="[1, 128]", style=solid];
-"18 Tanh_2" -> "14 Multiply_3" [label="[1, 64]", style=solid];
-"20 Constant_12" -> "7 Split_13" [label="[]", style=dashed];
-"21 Constant_9" -> "5 MatMul_2" [label="[256, 64]", style=solid];
-"22 Constant_7" -> "3 Add" [label="[1, 64]", style=solid];
-"23 Constant_5" -> "1 ReadValue_1" [label="[1, 64]", style=solid];
-"24 Constant_3" -> "4 MatMul_1" [label="[256, 128]", style=solid];
-"25 Constant_1" -> "2 Squeeze_1" [label="[]", style=dashed];
-"26 Constant_18" -> "12 Multiply_1" [label="[1, 64]", style=solid];
-"27 Constant_25" -> "17 MatMul_3" [label="[128, 64]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMSequenceModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMSequenceModel.dot
deleted file mode 100644
index 91f5b08577c..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LSTMSequenceModel.dot
+++ /dev/null
@@ -1,23 +0,0 @@
-strict digraph {
-"0 X" [id=0, type=Parameter];
-"1 initial_hidden_state" [id=1, type=Parameter];
-"2 initial_cell_state" [id=2, type=Parameter];
-"3 LSTMSequence_7" [id=3, type=LSTMSequence];
-"4 MatMul" [id=4, type=MatMul];
-"5 Result" [id=5, type=Result];
-"6 Constant_8" [id=6, type=Constant];
-"7 Constant_6" [id=7, type=Constant];
-"8 Constant_5" [id=8, type=Constant];
-"9 Constant_4" [id=9, type=Constant];
-"10 Constant_3" [id=10, type=Constant];
-"0 X" -> "3 LSTMSequence_7" [label="[1, 2, 16]", style=solid];
-"1 initial_hidden_state" -> "3 LSTMSequence_7" [label="[1, 1, 128]", style=solid];
-"2 initial_cell_state" -> "3 LSTMSequence_7" [label="[1, 1, 128]", style=solid];
-"3 LSTMSequence_7" -> "4 MatMul" [label="[1, 1, 2, 128]", style=solid];
-"4 MatMul" -> "5 Result" [label="[1, 1, 2, 3]", style=solid];
-"6 Constant_8" -> "4 MatMul" [label="[1, 1, 128, 3]", style=solid];
-"7 Constant_6" -> "3 LSTMSequence_7" [label="[1, 512]", style=solid];
-"8 Constant_5" -> "3 LSTMSequence_7" [label="[1, 512, 128]", style=solid];
-"9 Constant_4" -> "3 LSTMSequence_7" [label="[1, 512, 16]", style=solid];
-"10 Constant_3" -> "3 LSTMSequence_7" [label="[1]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LinearModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LinearModel.dot
deleted file mode 100644
index 50c34d96235..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/LinearModel.dot
+++ /dev/null
@@ -1,19 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Reshape" [id=1, type=Reshape];
-"2 Add" [id=2, type=Add];
-"3 MatMul" [id=3, type=MatMul];
-"4 Result_Add" [id=4, type=Result];
-"5 Result_MatMul" [id=5, type=Result];
-"6 Constant_10" [id=6, type=Constant];
-"7 Constant_1" [id=7, type=Constant];
-"8 Constant_8" [id=8, type=Constant];
-"0 Input" -> "1 Reshape" [label="[1, 3, 4, 2]", style=solid];
-"1 Reshape" -> "2 Add" [label="[1, 3, 2, 4]", style=solid];
-"1 Reshape" -> "3 MatMul" [label="[1, 3, 2, 4]", style=solid];
-"2 Add" -> "4 Result_Add" [label="[1, 3, 2, 4]", style=solid];
-"3 MatMul" -> "5 Result_MatMul" [label="[1, 3, 2, 5]", style=solid];
-"6 Constant_10" -> "2 Add" [label="[1, 3, 2, 4]", style=solid];
-"7 Constant_1" -> "1 Reshape" [label="[4]", style=dashed];
-"8 Constant_8" -> "3 MatMul" [label="[1, 3, 4, 5]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatMul2DModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatMul2DModel.dot
deleted file mode 100644
index d7bd2d4b57d..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatMul2DModel.dot
+++ /dev/null
@@ -1,13 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 MatMul" [id=1, type=MatMul];
-"2 Add" [id=2, type=Add];
-"3 Result" [id=3, type=Result];
-"4 Constant_32" [id=4, type=Constant];
-"5 Constant_30" [id=5, type=Constant];
-"0 Input" -> "1 MatMul" [label="[3, 5]", style=solid];
-"1 MatMul" -> "2 Add" [label="[3, 2]", style=solid];
-"2 Add" -> "3 Result" [label="[3, 2]", style=solid];
-"4 Constant_32" -> "2 Add" [label="[1, 2]", style=solid];
-"5 Constant_30" -> "1 MatMul" [label="[5, 2]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatmulSoftmaxMatmulBlock.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatmulSoftmaxMatmulBlock.dot
deleted file mode 100644
index 55cb4dfe072..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/MatmulSoftmaxMatmulBlock.dot
+++ /dev/null
@@ -1,18 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 MatMul_1" [id=1, type=MatMul];
-"2 Squeeze_1" [id=2, type=Squeeze];
-"3 Softmax_1" [id=3, type=Softmax];
-"4 MatMul_2" [id=4, type=MatMul];
-"5 Result" [id=5, type=Result];
-"6 Constant_178" [id=6, type=Constant];
-"7 Constant_180" [id=7, type=Constant];
-"0 Input" -> "1 MatMul_1" [label="[1, 1, 1]", style=solid];
-"0 Input" -> "2 Squeeze_1" [label="[1, 1, 1]", style=solid];
-"1 MatMul_1" -> "3 Softmax_1" [label="[1, 1, 1]", style=solid];
-"2 Squeeze_1" -> "4 MatMul_2" [label="[1, 1]", style=solid];
-"3 Softmax_1" -> "4 MatMul_2" [label="[1, 1, 1]", style=solid];
-"4 MatMul_2" -> "5 Result" [label="[1, 1, 1]", style=solid];
-"6 Constant_178" -> "2 Squeeze_1" [label="[]", style=dashed];
-"7 Constant_180" -> "1 MatMul_1" [label="[1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ScaleShiftReluModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ScaleShiftReluModel.dot
deleted file mode 100644
index a811bd55053..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ScaleShiftReluModel.dot
+++ /dev/null
@@ -1,23 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 MatMul" [id=1, type=MatMul];
-"2 Mul" [id=2, type=Multiply];
-"3 Add" [id=3, type=Add];
-"4 Relu" [id=4, type=Relu];
-"5 MatMul2" [id=5, type=MatMul];
-"6 Result" [id=6, type=Result];
-"7 Constant_45" [id=7, type=Constant];
-"8 Constant_42" [id=8, type=Constant];
-"9 Constant_40" [id=9, type=Constant];
-"10 Constant_38" [id=10, type=Constant];
-"0 Input" -> "1 MatMul" [label="[3, 5]", style=solid];
-"1 MatMul" -> "2 Mul" [label="[3, 2]", style=solid];
-"2 Mul" -> "3 Add" [label="[3, 2]", style=solid];
-"3 Add" -> "4 Relu" [label="[3, 2]", style=solid];
-"4 Relu" -> "5 MatMul2" [label="[3, 2]", style=solid];
-"5 MatMul2" -> "6 Result" [label="[3, 4]", style=solid];
-"7 Constant_45" -> "5 MatMul2" [label="[2, 4]", style=solid];
-"8 Constant_42" -> "3 Add" [label="[1, 2]", style=solid];
-"9 Constant_40" -> "2 Mul" [label="[1, 2]", style=solid];
-"10 Constant_38" -> "1 MatMul" [label="[5, 2]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SeBlockModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SeBlockModel.dot
deleted file mode 100644
index f3ba7b4bedb..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SeBlockModel.dot
+++ /dev/null
@@ -1,44 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Conv0" [id=1, type=Convolution];
-"2 Add0" [id=2, type=Add];
-"3 Mul" [id=3, type=Multiply];
-"4 ReduceMean_6" [id=4, type=ReduceMean];
-"5 MatMul" [id=5, type=MatMul];
-"6 Conv" [id=6, type=Convolution];
-"7 Result" [id=7, type=Result];
-"8 Add" [id=8, type=Add];
-"9 Relu" [id=9, type=Relu];
-"10 Conv2" [id=10, type=Convolution];
-"11 Add2" [id=11, type=Add];
-"12 Sigmoid" [id=12, type=Sigmoid];
-"13 Constant_18" [id=13, type=Constant];
-"14 Constant_14" [id=14, type=Constant];
-"15 Constant_12" [id=15, type=Constant];
-"16 Constant_9" [id=16, type=Constant];
-"17 Constant_7" [id=17, type=Constant];
-"18 Constant_5" [id=18, type=Constant];
-"19 Constant_3" [id=19, type=Constant];
-"20 Constant_1" [id=20, type=Constant];
-"0 Input" -> "1 Conv0" [label="[1, 3, 5, 6]", style=solid];
-"1 Conv0" -> "2 Add0" [label="[1, 3, 5, 6]", style=solid];
-"2 Add0" -> "3 Mul" [label="[1, 3, 5, 6]", style=solid];
-"2 Add0" -> "4 ReduceMean_6" [label="[1, 3, 5, 6]", style=solid];
-"3 Mul" -> "5 MatMul" [label="[1, 3, 5, 6]", style=solid];
-"4 ReduceMean_6" -> "6 Conv" [label="[1, 3, 1, 1]", style=solid];
-"5 MatMul" -> "7 Result" [label="[1, 3, 5, 5]", style=solid];
-"6 Conv" -> "8 Add" [label="[1, 5, 1, 1]", style=solid];
-"8 Add" -> "9 Relu" [label="[1, 5, 1, 1]", style=solid];
-"9 Relu" -> "10 Conv2" [label="[1, 5, 1, 1]", style=solid];
-"10 Conv2" -> "11 Add2" [label="[1, 3, 1, 1]", style=solid];
-"11 Add2" -> "12 Sigmoid" [label="[1, 3, 1, 1]", style=solid];
-"12 Sigmoid" -> "3 Mul" [label="[1, 3, 1, 1]", style=solid];
-"13 Constant_18" -> "5 MatMul" [label="[1, 3, 6, 5]", style=solid];
-"14 Constant_14" -> "11 Add2" [label="[1, 3, 1, 1]", style=solid];
-"15 Constant_12" -> "10 Conv2" [label="[3, 5, 1, 1]", style=solid];
-"16 Constant_9" -> "8 Add" [label="[1, 5, 1, 1]", style=solid];
-"17 Constant_7" -> "6 Conv" [label="[5, 3, 1, 1]", style=solid];
-"18 Constant_5" -> "4 ReduceMean_6" [label="[2]", style=dashed];
-"19 Constant_3" -> "2 Add0" [label="[1, 3, 1, 1]", style=solid];
-"20 Constant_1" -> "1 Conv0" [label="[3, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ShapeOfModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ShapeOfModel.dot
deleted file mode 100644
index 234d08dc31d..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ShapeOfModel.dot
+++ /dev/null
@@ -1,63 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Conv_1" [id=1, type=Convolution];
-"2 Conv_Add_1" [id=2, type=Add];
-"3 Reshape_1" [id=3, type=Reshape];
-"4 ShapeOf_1" [id=4, type=ShapeOf];
-"5 Transpose" [id=5, type=Transpose];
-"6 Gather_33092" [id=6, type=Gather];
-"7 Conv_2" [id=7, type=Convolution];
-"8 Concat_33095" [id=8, type=Concat];
-"9 Conv_Add_2" [id=9, type=Add];
-"10 Reshape_2" [id=10, type=Reshape];
-"11 ShapeOf_2" [id=11, type=ShapeOf];
-"12 Conv_3" [id=12, type=Convolution];
-"13 Convert_1" [id=13, type=Convert];
-"14 Conv_Add_3" [id=14, type=Add];
-"15 Multiply" [id=15, type=Multiply];
-"16 Result" [id=16, type=Result];
-"17 Convert_2" [id=17, type=Convert];
-"18 Bias_3" [id=18, type=Constant];
-"19 Constant_33121" [id=19, type=Constant];
-"20 Constant_33107" [id=20, type=Constant];
-"21 Bias_2" [id=21, type=Constant];
-"22 Constant_33101" [id=22, type=Constant];
-"23 Constant_33099" [id=23, type=Constant];
-"24 Constant_33091" [id=24, type=Constant];
-"25 Constant_33090" [id=25, type=Constant];
-"26 Bias_1" [id=26, type=Constant];
-"27 Constant_33085" [id=27, type=Constant];
-"28 Constant_33094" [id=28, type=Constant];
-"29 Constant_33093" [id=29, type=Constant];
-"0 Input" -> "1 Conv_1" [label="[1, 3, 4, 2]", style=solid];
-"1 Conv_1" -> "2 Conv_Add_1" [label="[1, 3, 4, 2]", style=solid];
-"2 Conv_Add_1" -> "3 Reshape_1" [label="[1, 3, 4, 2]", style=solid];
-"2 Conv_Add_1" -> "4 ShapeOf_1" [label="[1, 3, 4, 2]", style=solid];
-"3 Reshape_1" -> "5 Transpose" [label="[1, 3, 4, 2]", style=solid];
-"4 ShapeOf_1" -> "6 Gather_33092" [label="[4]", style=dashed];
-"5 Transpose" -> "7 Conv_2" [label="[1, 3, 2, 4]", style=solid];
-"6 Gather_33092" -> "8 Concat_33095" [label="[2]", style=dashed];
-"7 Conv_2" -> "9 Conv_Add_2" [label="[1, 3, 2, 4]", style=solid];
-"8 Concat_33095" -> "3 Reshape_1" [label="[4]", style=dashed];
-"9 Conv_Add_2" -> "10 Reshape_2" [label="[1, 3, 2, 4]", style=solid];
-"9 Conv_Add_2" -> "11 ShapeOf_2" [label="[1, 3, 2, 4]", style=solid];
-"10 Reshape_2" -> "12 Conv_3" [label="[1, 3, 2, 4]", style=solid];
-"11 ShapeOf_2" -> "13 Convert_1" [label="[4]", style=dashed];
-"12 Conv_3" -> "14 Conv_Add_3" [label="[1, 3, 2, 4]", style=solid];
-"13 Convert_1" -> "15 Multiply" [label="[4]", style=solid];
-"14 Conv_Add_3" -> "16 Result" [label="[1, 3, 2, 4]", style=solid];
-"15 Multiply" -> "17 Convert_2" [label="[4]", style=solid];
-"17 Convert_2" -> "10 Reshape_2" [label="[4]", style=dashed];
-"18 Bias_3" -> "14 Conv_Add_3" [label="[1, 3, 1, 1]", style=solid];
-"19 Constant_33121" -> "12 Conv_3" [label="[3, 3, 1, 1]", style=solid];
-"20 Constant_33107" -> "15 Multiply" [label="[4]", style=solid];
-"21 Bias_2" -> "9 Conv_Add_2" [label="[1, 3, 1, 1]", style=solid];
-"22 Constant_33101" -> "7 Conv_2" [label="[3, 3, 1, 1]", style=solid];
-"23 Constant_33099" -> "5 Transpose" [label="[4]", style=dashed];
-"24 Constant_33091" -> "6 Gather_33092" [label="[]", style=dashed];
-"25 Constant_33090" -> "6 Gather_33092" [label="[2]", style=dashed];
-"26 Bias_1" -> "2 Conv_Add_1" [label="[1, 3, 1, 1]", style=solid];
-"27 Constant_33085" -> "1 Conv_1" [label="[3, 3, 1, 1]", style=solid];
-"28 Constant_33094" -> "8 Concat_33095" [label="[1]", style=dashed];
-"29 Constant_33093" -> "8 Concat_33095" [label="[1]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SharedConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SharedConvModel.dot
deleted file mode 100644
index 2bc26e8711a..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/SharedConvModel.dot
+++ /dev/null
@@ -1,14 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Conv_1" [id=1, type=Convolution];
-"2 Conv_2" [id=2, type=Convolution];
-"3 Result_1" [id=3, type=Result];
-"4 Result_2" [id=4, type=Result];
-"5 Shared_conv_w" [id=5, type=Constant];
-"0 Input" -> "1 Conv_1" [label="[1, 3, 3, 3]", style=solid];
-"0 Input" -> "2 Conv_2" [label="[1, 3, 3, 3]", style=solid];
-"1 Conv_1" -> "3 Result_1" [label="[1, 3, 3, 3]", style=solid];
-"2 Conv_2" -> "4 Result_2" [label="[1, 3, 3, 3]", style=solid];
-"5 Shared_conv_w" -> "1 Conv_1" [label="[3, 3, 1, 1]", style=solid];
-"5 Shared_conv_w" -> "2 Conv_2" [label="[3, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/UnifiedEmbeddingModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/UnifiedEmbeddingModel.dot
deleted file mode 100644
index b779ab79695..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/UnifiedEmbeddingModel.dot
+++ /dev/null
@@ -1,28 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Convert_1" [id=1, type=Convert];
-"2 MatMul_1" [id=2, type=MatMul];
-"3 Gather_1" [id=3, type=Gather];
-"4 Reshape_1" [id=4, type=Reshape];
-"5 Concat_12" [id=5, type=Concat];
-"6 MatMul_2" [id=6, type=MatMul];
-"7 Result" [id=7, type=Result];
-"8 matmul_2_data" [id=8, type=Constant];
-"9 Constant_8" [id=9, type=Constant];
-"10 matmul_1_data" [id=10, type=Constant];
-"11 Constant_4" [id=11, type=Constant];
-"12 gather_1_data" [id=12, type=Constant];
-"0 Input" -> "1 Convert_1" [label="[1, 3]", style=solid];
-"0 Input" -> "2 MatMul_1" [label="[1, 3]", style=solid];
-"1 Convert_1" -> "3 Gather_1" [label="[1, 3]", style=dashed];
-"2 MatMul_1" -> "4 Reshape_1" [label="[3, 1, 5]", style=solid];
-"3 Gather_1" -> "5 Concat_12" [label="[1, 3, 5]", style=solid];
-"4 Reshape_1" -> "5 Concat_12" [label="[1, 3, 5]", style=solid];
-"5 Concat_12" -> "6 MatMul_2" [label="[1, 6, 5]", style=solid];
-"6 MatMul_2" -> "7 Result" [label="[1, 6, 1]", style=solid];
-"8 matmul_2_data" -> "6 MatMul_2" [label="[1, 5]", style=solid];
-"9 Constant_8" -> "4 Reshape_1" [label="[3]", style=dashed];
-"10 matmul_1_data" -> "2 MatMul_1" [label="[3, 3, 5]", style=solid];
-"11 Constant_4" -> "3 Gather_1" [label="[]", style=dashed];
-"12 gather_1_data" -> "3 Gather_1" [label="[4, 5]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/WeightsModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/WeightsModel.dot
deleted file mode 100644
index fe530ba099a..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/WeightsModel.dot
+++ /dev/null
@@ -1,32 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Conv" [id=1, type=Convolution];
-"2 Conv_backprop" [id=2, type=ConvolutionBackpropData];
-"3 MatMul_1" [id=3, type=MatMul];
-"4 MatMul" [id=4, type=MatMul];
-"5 MatMul_0" [id=5, type=MatMul];
-"6 Add_15" [id=6, type=Add];
-"7 Result" [id=7, type=Result];
-"8 weights_1" [id=8, type=Constant];
-"9 Constant_5" [id=9, type=Constant];
-"10 Constant_4" [id=10, type=Constant];
-"11 Constant_2" [id=11, type=Constant];
-"12 weights_0" [id=12, type=Constant];
-"13 MatMul_const" [id=13, type=MatMul];
-"0 Input_1" -> "1 Conv" [label="[1, 3, 5, 5]", style=solid];
-"1 Conv" -> "2 Conv_backprop" [label="[1, 3, 5, 5]", style=solid];
-"2 Conv_backprop" -> "3 MatMul_1" [label="[1, 3, 1, 1]", style=solid];
-"3 MatMul_1" -> "4 MatMul" [label="[1, 3, 1, 4]", style=solid];
-"3 MatMul_1" -> "5 MatMul_0" [label="[1, 3, 1, 4]", style=solid];
-"4 MatMul" -> "6 Add_15" [label="[1, 3, 1, 1]", style=solid];
-"5 MatMul_0" -> "4 MatMul" [label="[1, 3, 1, 4]", style=solid];
-"6 Add_15" -> "7 Result" [label="[1, 3, 4, 1]", style=solid];
-"8 weights_1" -> "3 MatMul_1" [label="[1, 4]", style=solid];
-"8 weights_1" -> "13 MatMul_const" [label="[1, 4]", style=solid];
-"9 Constant_5" -> "2 Conv_backprop" [label="[2]", style=dashed];
-"10 Constant_4" -> "2 Conv_backprop" [label="[3, 3, 1, 1]", style=solid];
-"11 Constant_2" -> "1 Conv" [label="[3, 3, 1, 1]", style=solid];
-"12 weights_0" -> "5 MatMul_0" [label="[1, 1]", style=solid];
-"12 weights_0" -> "13 MatMul_const" [label="[1, 1]", style=solid];
-"13 MatMul_const" -> "6 Add_15" [label="[4, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_ConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_ConvModel.dot
deleted file mode 100644
index fc05c2e496a..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_ConvModel.dot
+++ /dev/null
@@ -1,9 +0,0 @@
-strict digraph {
-"0 Parameter_Conv" [id=0, type=Parameter];
-"1 Conv" [id=1, type=Convolution];
-"2 Result_Conv.0" [id=2, type=Result];
-"3 Constant_58" [id=3, type=Constant];
-"0 Parameter_Conv" -> "1 Conv" [label="[1, 3, 4, 2]", style=solid];
-"1 Conv" -> "2 Result_Conv.0" [label="[1, 3, 4, 2]", style=solid];
-"3 Constant_58" -> "1 Conv" [label="[3, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_QuantizedModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_QuantizedModel.dot
deleted file mode 100644
index cb59d32c930..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/exctracted_QuantizedModel.dot
+++ /dev/null
@@ -1,81 +0,0 @@
-strict digraph {
-"0 Parameter_Relu_1" [id=0, type=Parameter];
-"1 Parameter_Transpose" [id=1, type=Parameter];
-"2 Relu_1" [id=2, type=Relu];
-"3 Transpose" [id=3, type=Transpose];
-"4 Concat_1/fq_input_0" [id=4, type=FakeQuantize];
-"5 Concat_1" [id=5, type=Concat];
-"6 Add_2" [id=6, type=Add];
-"7 Conv_2" [id=7, type=Convolution];
-"8 Result_Add_2.0" [id=8, type=Result];
-"9 Relu_2" [id=9, type=Relu];
-"10 Conv_3/fq_input_0" [id=10, type=FakeQuantize];
-"11 Conv_3" [id=11, type=Convolution];
-"12 Result_Conv_3.0" [id=12, type=Result];
-"13 Add_2/fq_weights_0" [id=13, type=FakeQuantize];
-"14 Constant_128" [id=14, type=Constant];
-"15 Constant_127" [id=15, type=Constant];
-"16 Constant_126" [id=16, type=Constant];
-"17 Constant_125" [id=17, type=Constant];
-"18 Constant_124" [id=18, type=Constant];
-"19 Constant_96" [id=19, type=Constant];
-"20 Constant_101" [id=20, type=Constant];
-"21 Constant_100" [id=21, type=Constant];
-"22 Constant_99" [id=22, type=Constant];
-"23 Constant_98" [id=23, type=Constant];
-"24 Conv_3/fq_weights_0" [id=24, type=FakeQuantize];
-"25 Constant_121" [id=25, type=Constant];
-"26 Constant_120" [id=26, type=Constant];
-"27 Constant_119" [id=27, type=Constant];
-"28 Constant_118" [id=28, type=Constant];
-"29 Constant_117" [id=29, type=Constant];
-"30 Constant_115" [id=30, type=Constant];
-"31 Constant_114" [id=31, type=Constant];
-"32 Constant_113" [id=32, type=Constant];
-"33 Constant_112" [id=33, type=Constant];
-"34 Conv_2/fq_weights_0" [id=34, type=FakeQuantize];
-"35 Constant_108" [id=35, type=Constant];
-"36 Constant_107" [id=36, type=Constant];
-"37 Constant_106" [id=37, type=Constant];
-"38 Constant_105" [id=38, type=Constant];
-"39 Constant_104" [id=39, type=Constant];
-"0 Parameter_Relu_1" -> "2 Relu_1" [label="[1, 3, 14, 28]", style=solid];
-"1 Parameter_Transpose" -> "3 Transpose" [label="[1, 3, 28, 14]", style=solid];
-"2 Relu_1" -> "4 Concat_1/fq_input_0" [label="[1, 3, 14, 28]", style=solid];
-"3 Transpose" -> "5 Concat_1" [label="[1, 3, 14, 28]", style=solid];
-"4 Concat_1/fq_input_0" -> "5 Concat_1" [label="[1, 3, 14, 28]", style=solid];
-"5 Concat_1" -> "6 Add_2" [label="[1, 6, 14, 28]", style=solid];
-"5 Concat_1" -> "7 Conv_2" [label="[1, 6, 14, 28]", style=solid];
-"6 Add_2" -> "8 Result_Add_2.0" [label="[1, 6, 14, 28]", style=solid];
-"7 Conv_2" -> "9 Relu_2" [label="[1, 12, 14, 28]", style=solid];
-"9 Relu_2" -> "10 Conv_3/fq_input_0" [label="[1, 12, 14, 28]", style=solid];
-"10 Conv_3/fq_input_0" -> "11 Conv_3" [label="[1, 12, 14, 28]", style=solid];
-"11 Conv_3" -> "12 Result_Conv_3.0" [label="[1, 6, 14, 28]", style=solid];
-"13 Add_2/fq_weights_0" -> "6 Add_2" [label="[1, 6, 1, 1]", style=solid];
-"14 Constant_128" -> "13 Add_2/fq_weights_0" [label="[]", style=solid];
-"15 Constant_127" -> "13 Add_2/fq_weights_0" [label="[]", style=solid];
-"16 Constant_126" -> "13 Add_2/fq_weights_0" [label="[]", style=solid];
-"17 Constant_125" -> "13 Add_2/fq_weights_0" [label="[]", style=solid];
-"18 Constant_124" -> "13 Add_2/fq_weights_0" [label="[1, 6, 1, 1]", style=solid];
-"19 Constant_96" -> "3 Transpose" [label="[4]", style=dashed];
-"20 Constant_101" -> "4 Concat_1/fq_input_0" [label="[]", style=solid];
-"21 Constant_100" -> "4 Concat_1/fq_input_0" [label="[]", style=solid];
-"22 Constant_99" -> "4 Concat_1/fq_input_0" [label="[]", style=solid];
-"23 Constant_98" -> "4 Concat_1/fq_input_0" [label="[]", style=solid];
-"24 Conv_3/fq_weights_0" -> "11 Conv_3" [label="[6, 12, 1, 1]", style=solid];
-"25 Constant_121" -> "24 Conv_3/fq_weights_0" [label="[]", style=solid];
-"26 Constant_120" -> "24 Conv_3/fq_weights_0" [label="[]", style=solid];
-"27 Constant_119" -> "24 Conv_3/fq_weights_0" [label="[]", style=solid];
-"28 Constant_118" -> "24 Conv_3/fq_weights_0" [label="[]", style=solid];
-"29 Constant_117" -> "24 Conv_3/fq_weights_0" [label="[6, 12, 1, 1]", style=solid];
-"30 Constant_115" -> "10 Conv_3/fq_input_0" [label="[]", style=solid];
-"31 Constant_114" -> "10 Conv_3/fq_input_0" [label="[]", style=solid];
-"32 Constant_113" -> "10 Conv_3/fq_input_0" [label="[]", style=solid];
-"33 Constant_112" -> "10 Conv_3/fq_input_0" [label="[]", style=solid];
-"34 Conv_2/fq_weights_0" -> "7 Conv_2" [label="[12, 6, 1, 1]", style=solid];
-"35 Constant_108" -> "34 Conv_2/fq_weights_0" [label="[]", style=solid];
-"36 Constant_107" -> "34 Conv_2/fq_weights_0" [label="[]", style=solid];
-"37 Constant_106" -> "34 Conv_2/fq_weights_0" [label="[]", style=solid];
-"38 Constant_105" -> "34 Conv_2/fq_weights_0" [label="[]", style=solid];
-"39 Constant_104" -> "34 Conv_2/fq_weights_0" [label="[12, 6, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/googlenet-v3-pytorch.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/googlenet-v3-pytorch.dot
deleted file mode 100644
index 508b31bcc30..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/googlenet-v3-pytorch.dot
+++ /dev/null
@@ -1,1052 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_4031" [id=1, type=Multiply];
-"2 Divide_1751" [id=2, type=Add];
-"3 /Conv2d_1a_3x3/conv/Conv/WithoutBiases" [id=3, type=Convolution];
-"4 /Conv2d_1a_3x3/conv/Conv" [id=4, type=Add];
-"5 /Conv2d_1a_3x3/Relu" [id=5, type=Relu];
-"6 /Conv2d_2a_3x3/conv/Conv/WithoutBiases" [id=6, type=Convolution];
-"7 /Conv2d_2a_3x3/conv/Conv" [id=7, type=Add];
-"8 /Conv2d_2a_3x3/Relu" [id=8, type=Relu];
-"9 /Conv2d_2b_3x3/conv/Conv/WithoutBiases" [id=9, type=Convolution];
-"10 /Conv2d_2b_3x3/conv/Conv" [id=10, type=Add];
-"11 /Conv2d_2b_3x3/Relu" [id=11, type=Relu];
-"12 /maxpool1/MaxPool" [id=12, type=MaxPool];
-"13 /Conv2d_3b_1x1/conv/Conv/WithoutBiases" [id=13, type=Convolution];
-"14 /Conv2d_3b_1x1/conv/Conv" [id=14, type=Add];
-"15 /Conv2d_3b_1x1/Relu" [id=15, type=Relu];
-"16 /Conv2d_4a_3x3/conv/Conv/WithoutBiases" [id=16, type=Convolution];
-"17 /Conv2d_4a_3x3/conv/Conv" [id=17, type=Add];
-"18 /Conv2d_4a_3x3/Relu" [id=18, type=Relu];
-"19 /maxpool2/MaxPool" [id=19, type=MaxPool];
-"20 /Mixed_5b/AveragePool" [id=20, type=AvgPool];
-"21 /Mixed_5b/branch1x1/conv/Conv/WithoutBiases" [id=21, type=Convolution];
-"22 /Mixed_5b/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=22, type=Convolution];
-"23 /Mixed_5b/branch5x5_1/conv/Conv/WithoutBiases" [id=23, type=Convolution];
-"24 /Mixed_5b/branch_pool/conv/Conv/WithoutBiases" [id=24, type=Convolution];
-"25 /Mixed_5b/branch1x1/conv/Conv" [id=25, type=Add];
-"26 /Mixed_5b/branch3x3dbl_1/conv/Conv" [id=26, type=Add];
-"27 /Mixed_5b/branch5x5_1/conv/Conv" [id=27, type=Add];
-"28 /Mixed_5b/branch_pool/conv/Conv" [id=28, type=Add];
-"29 /Mixed_5b/branch1x1/Relu" [id=29, type=Relu];
-"30 /Mixed_5b/branch3x3dbl_1/Relu" [id=30, type=Relu];
-"31 /Mixed_5b/branch5x5_1/Relu" [id=31, type=Relu];
-"32 /Mixed_5b/branch_pool/Relu" [id=32, type=Relu];
-"33 /Mixed_5b/Concat" [id=33, type=Concat];
-"34 /Mixed_5b/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=34, type=Convolution];
-"35 /Mixed_5b/branch5x5_2/conv/Conv/WithoutBiases" [id=35, type=Convolution];
-"36 /Mixed_5c/AveragePool" [id=36, type=AvgPool];
-"37 /Mixed_5c/branch1x1/conv/Conv/WithoutBiases" [id=37, type=Convolution];
-"38 /Mixed_5c/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=38, type=Convolution];
-"39 /Mixed_5c/branch5x5_1/conv/Conv/WithoutBiases" [id=39, type=Convolution];
-"40 /Mixed_5b/branch3x3dbl_2/conv/Conv" [id=40, type=Add];
-"41 /Mixed_5b/branch5x5_2/conv/Conv" [id=41, type=Add];
-"42 /Mixed_5c/branch_pool/conv/Conv/WithoutBiases" [id=42, type=Convolution];
-"43 /Mixed_5c/branch1x1/conv/Conv" [id=43, type=Add];
-"44 /Mixed_5c/branch3x3dbl_1/conv/Conv" [id=44, type=Add];
-"45 /Mixed_5c/branch5x5_1/conv/Conv" [id=45, type=Add];
-"46 /Mixed_5b/branch3x3dbl_2/Relu" [id=46, type=Relu];
-"47 /Mixed_5b/branch5x5_2/Relu" [id=47, type=Relu];
-"48 /Mixed_5c/branch_pool/conv/Conv" [id=48, type=Add];
-"49 /Mixed_5c/branch1x1/Relu" [id=49, type=Relu];
-"50 /Mixed_5c/branch3x3dbl_1/Relu" [id=50, type=Relu];
-"51 /Mixed_5c/branch5x5_1/Relu" [id=51, type=Relu];
-"52 /Mixed_5b/branch3x3dbl_3/conv/Conv/WithoutBiases" [id=52, type=Convolution];
-"53 /Mixed_5c/branch_pool/Relu" [id=53, type=Relu];
-"54 /Mixed_5c/Concat" [id=54, type=Concat];
-"55 /Mixed_5c/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=55, type=Convolution];
-"56 /Mixed_5c/branch5x5_2/conv/Conv/WithoutBiases" [id=56, type=Convolution];
-"57 /Mixed_5b/branch3x3dbl_3/conv/Conv" [id=57, type=Add];
-"58 /Mixed_5d/AveragePool" [id=58, type=AvgPool];
-"59 /Mixed_5d/branch1x1/conv/Conv/WithoutBiases" [id=59, type=Convolution];
-"60 /Mixed_5d/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=60, type=Convolution];
-"61 /Mixed_5d/branch5x5_1/conv/Conv/WithoutBiases" [id=61, type=Convolution];
-"62 /Mixed_5c/branch3x3dbl_2/conv/Conv" [id=62, type=Add];
-"63 /Mixed_5c/branch5x5_2/conv/Conv" [id=63, type=Add];
-"64 /Mixed_5b/branch3x3dbl_3/Relu" [id=64, type=Relu];
-"65 /Mixed_5d/branch_pool/conv/Conv/WithoutBiases" [id=65, type=Convolution];
-"66 /Mixed_5d/branch1x1/conv/Conv" [id=66, type=Add];
-"67 /Mixed_5d/branch3x3dbl_1/conv/Conv" [id=67, type=Add];
-"68 /Mixed_5d/branch5x5_1/conv/Conv" [id=68, type=Add];
-"69 /Mixed_5c/branch3x3dbl_2/Relu" [id=69, type=Relu];
-"70 /Mixed_5c/branch5x5_2/Relu" [id=70, type=Relu];
-"71 /Mixed_5d/branch_pool/conv/Conv" [id=71, type=Add];
-"72 /Mixed_5d/branch1x1/Relu" [id=72, type=Relu];
-"73 /Mixed_5d/branch3x3dbl_1/Relu" [id=73, type=Relu];
-"74 /Mixed_5d/branch5x5_1/Relu" [id=74, type=Relu];
-"75 /Mixed_5c/branch3x3dbl_3/conv/Conv/WithoutBiases" [id=75, type=Convolution];
-"76 /Mixed_5d/branch_pool/Relu" [id=76, type=Relu];
-"77 /Mixed_5d/Concat" [id=77, type=Concat];
-"78 /Mixed_5d/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=78, type=Convolution];
-"79 /Mixed_5d/branch5x5_2/conv/Conv/WithoutBiases" [id=79, type=Convolution];
-"80 /Mixed_5c/branch3x3dbl_3/conv/Conv" [id=80, type=Add];
-"81 /Mixed_6a/MaxPool" [id=81, type=MaxPool];
-"82 /Mixed_6a/branch3x3/conv/Conv/WithoutBiases" [id=82, type=Convolution];
-"83 /Mixed_6a/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=83, type=Convolution];
-"84 /Mixed_5d/branch3x3dbl_2/conv/Conv" [id=84, type=Add];
-"85 /Mixed_5d/branch5x5_2/conv/Conv" [id=85, type=Add];
-"86 /Mixed_5c/branch3x3dbl_3/Relu" [id=86, type=Relu];
-"87 /Mixed_6a/Concat" [id=87, type=Concat];
-"88 /Mixed_6a/branch3x3/conv/Conv" [id=88, type=Add];
-"89 /Mixed_6a/branch3x3dbl_1/conv/Conv" [id=89, type=Add];
-"90 /Mixed_5d/branch3x3dbl_2/Relu" [id=90, type=Relu];
-"91 /Mixed_5d/branch5x5_2/Relu" [id=91, type=Relu];
-"92 /Mixed_6b/AveragePool" [id=92, type=AvgPool];
-"93 /Mixed_6b/branch1x1/conv/Conv/WithoutBiases" [id=93, type=Convolution];
-"94 /Mixed_6b/branch7x7_1/conv/Conv/WithoutBiases" [id=94, type=Convolution];
-"95 /Mixed_6b/branch7x7dbl_1/conv/Conv/WithoutBiases" [id=95, type=Convolution];
-"96 /Mixed_6a/branch3x3/Relu" [id=96, type=Relu];
-"97 /Mixed_6a/branch3x3dbl_1/Relu" [id=97, type=Relu];
-"98 /Mixed_5d/branch3x3dbl_3/conv/Conv/WithoutBiases" [id=98, type=Convolution];
-"99 /Mixed_6b/branch_pool/conv/Conv/WithoutBiases" [id=99, type=Convolution];
-"100 /Mixed_6b/branch1x1/conv/Conv" [id=100, type=Add];
-"101 /Mixed_6b/branch7x7_1/conv/Conv" [id=101, type=Add];
-"102 /Mixed_6b/branch7x7dbl_1/conv/Conv" [id=102, type=Add];
-"103 /Mixed_6a/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=103, type=Convolution];
-"104 /Mixed_5d/branch3x3dbl_3/conv/Conv" [id=104, type=Add];
-"105 /Mixed_6b/branch_pool/conv/Conv" [id=105, type=Add];
-"106 /Mixed_6b/branch1x1/Relu" [id=106, type=Relu];
-"107 /Mixed_6b/branch7x7_1/Relu" [id=107, type=Relu];
-"108 /Mixed_6b/branch7x7dbl_1/Relu" [id=108, type=Relu];
-"109 /Mixed_6a/branch3x3dbl_2/conv/Conv" [id=109, type=Add];
-"110 /Mixed_5d/branch3x3dbl_3/Relu" [id=110, type=Relu];
-"111 /Mixed_6b/branch_pool/Relu" [id=111, type=Relu];
-"112 /Mixed_6b/Concat" [id=112, type=Concat];
-"113 /Mixed_6b/branch7x7_2/conv/Conv/WithoutBiases" [id=113, type=Convolution];
-"114 /Mixed_6b/branch7x7dbl_2/conv/Conv/WithoutBiases" [id=114, type=Convolution];
-"115 /Mixed_6a/branch3x3dbl_2/Relu" [id=115, type=Relu];
-"116 /Mixed_6c/AveragePool" [id=116, type=AvgPool];
-"117 /Mixed_6c/branch1x1/conv/Conv/WithoutBiases" [id=117, type=Convolution];
-"118 /Mixed_6c/branch7x7_1/conv/Conv/WithoutBiases" [id=118, type=Convolution];
-"119 /Mixed_6c/branch7x7dbl_1/conv/Conv/WithoutBiases" [id=119, type=Convolution];
-"120 /Mixed_6b/branch7x7_2/conv/Conv" [id=120, type=Add];
-"121 /Mixed_6b/branch7x7dbl_2/conv/Conv" [id=121, type=Add];
-"122 /Mixed_6a/branch3x3dbl_3/conv/Conv/WithoutBiases" [id=122, type=Convolution];
-"123 /Mixed_6c/branch_pool/conv/Conv/WithoutBiases" [id=123, type=Convolution];
-"124 /Mixed_6c/branch1x1/conv/Conv" [id=124, type=Add];
-"125 /Mixed_6c/branch7x7_1/conv/Conv" [id=125, type=Add];
-"126 /Mixed_6c/branch7x7dbl_1/conv/Conv" [id=126, type=Add];
-"127 /Mixed_6b/branch7x7_2/Relu" [id=127, type=Relu];
-"128 /Mixed_6b/branch7x7dbl_2/Relu" [id=128, type=Relu];
-"129 /Mixed_6a/branch3x3dbl_3/conv/Conv" [id=129, type=Add];
-"130 /Mixed_6c/branch_pool/conv/Conv" [id=130, type=Add];
-"131 /Mixed_6c/branch1x1/Relu" [id=131, type=Relu];
-"132 /Mixed_6c/branch7x7_1/Relu" [id=132, type=Relu];
-"133 /Mixed_6c/branch7x7dbl_1/Relu" [id=133, type=Relu];
-"134 /Mixed_6b/branch7x7_3/conv/Conv/WithoutBiases" [id=134, type=Convolution];
-"135 /Mixed_6b/branch7x7dbl_3/conv/Conv/WithoutBiases" [id=135, type=Convolution];
-"136 /Mixed_6a/branch3x3dbl_3/Relu" [id=136, type=Relu];
-"137 /Mixed_6c/branch_pool/Relu" [id=137, type=Relu];
-"138 /Mixed_6c/Concat" [id=138, type=Concat];
-"139 /Mixed_6c/branch7x7_2/conv/Conv/WithoutBiases" [id=139, type=Convolution];
-"140 /Mixed_6c/branch7x7dbl_2/conv/Conv/WithoutBiases" [id=140, type=Convolution];
-"141 /Mixed_6b/branch7x7_3/conv/Conv" [id=141, type=Add];
-"142 /Mixed_6b/branch7x7dbl_3/conv/Conv" [id=142, type=Add];
-"143 /Mixed_6d/AveragePool" [id=143, type=AvgPool];
-"144 /Mixed_6d/branch1x1/conv/Conv/WithoutBiases" [id=144, type=Convolution];
-"145 /Mixed_6d/branch7x7_1/conv/Conv/WithoutBiases" [id=145, type=Convolution];
-"146 /Mixed_6d/branch7x7dbl_1/conv/Conv/WithoutBiases" [id=146, type=Convolution];
-"147 /Mixed_6c/branch7x7_2/conv/Conv" [id=147, type=Add];
-"148 /Mixed_6c/branch7x7dbl_2/conv/Conv" [id=148, type=Add];
-"149 /Mixed_6b/branch7x7_3/Relu" [id=149, type=Relu];
-"150 /Mixed_6b/branch7x7dbl_3/Relu" [id=150, type=Relu];
-"151 /Mixed_6d/branch_pool/conv/Conv/WithoutBiases" [id=151, type=Convolution];
-"152 /Mixed_6d/branch1x1/conv/Conv" [id=152, type=Add];
-"153 /Mixed_6d/branch7x7_1/conv/Conv" [id=153, type=Add];
-"154 /Mixed_6d/branch7x7dbl_1/conv/Conv" [id=154, type=Add];
-"155 /Mixed_6c/branch7x7_2/Relu" [id=155, type=Relu];
-"156 /Mixed_6c/branch7x7dbl_2/Relu" [id=156, type=Relu];
-"157 /Mixed_6b/branch7x7dbl_4/conv/Conv/WithoutBiases" [id=157, type=Convolution];
-"158 /Mixed_6d/branch_pool/conv/Conv" [id=158, type=Add];
-"159 /Mixed_6d/branch1x1/Relu" [id=159, type=Relu];
-"160 /Mixed_6d/branch7x7_1/Relu" [id=160, type=Relu];
-"161 /Mixed_6d/branch7x7dbl_1/Relu" [id=161, type=Relu];
-"162 /Mixed_6c/branch7x7_3/conv/Conv/WithoutBiases" [id=162, type=Convolution];
-"163 /Mixed_6c/branch7x7dbl_3/conv/Conv/WithoutBiases" [id=163, type=Convolution];
-"164 /Mixed_6b/branch7x7dbl_4/conv/Conv" [id=164, type=Add];
-"165 /Mixed_6d/branch_pool/Relu" [id=165, type=Relu];
-"166 /Mixed_6d/Concat" [id=166, type=Concat];
-"167 /Mixed_6d/branch7x7_2/conv/Conv/WithoutBiases" [id=167, type=Convolution];
-"168 /Mixed_6d/branch7x7dbl_2/conv/Conv/WithoutBiases" [id=168, type=Convolution];
-"169 /Mixed_6c/branch7x7_3/conv/Conv" [id=169, type=Add];
-"170 /Mixed_6c/branch7x7dbl_3/conv/Conv" [id=170, type=Add];
-"171 /Mixed_6b/branch7x7dbl_4/Relu" [id=171, type=Relu];
-"172 /Mixed_6e/AveragePool" [id=172, type=AvgPool];
-"173 /Mixed_6e/branch1x1/conv/Conv/WithoutBiases" [id=173, type=Convolution];
-"174 /Mixed_6e/branch7x7_1/conv/Conv/WithoutBiases" [id=174, type=Convolution];
-"175 /Mixed_6e/branch7x7dbl_1/conv/Conv/WithoutBiases" [id=175, type=Convolution];
-"176 /Mixed_6d/branch7x7_2/conv/Conv" [id=176, type=Add];
-"177 /Mixed_6d/branch7x7dbl_2/conv/Conv" [id=177, type=Add];
-"178 /Mixed_6c/branch7x7_3/Relu" [id=178, type=Relu];
-"179 /Mixed_6c/branch7x7dbl_3/Relu" [id=179, type=Relu];
-"180 /Mixed_6b/branch7x7dbl_5/conv/Conv/WithoutBiases" [id=180, type=Convolution];
-"181 /Mixed_6e/branch_pool/conv/Conv/WithoutBiases" [id=181, type=Convolution];
-"182 /Mixed_6e/branch1x1/conv/Conv" [id=182, type=Add];
-"183 /Mixed_6e/branch7x7_1/conv/Conv" [id=183, type=Add];
-"184 /Mixed_6e/branch7x7dbl_1/conv/Conv" [id=184, type=Add];
-"185 /Mixed_6d/branch7x7_2/Relu" [id=185, type=Relu];
-"186 /Mixed_6d/branch7x7dbl_2/Relu" [id=186, type=Relu];
-"187 /Mixed_6c/branch7x7dbl_4/conv/Conv/WithoutBiases" [id=187, type=Convolution];
-"188 /Mixed_6b/branch7x7dbl_5/conv/Conv" [id=188, type=Add];
-"189 /Mixed_6e/branch_pool/conv/Conv" [id=189, type=Add];
-"190 /Mixed_6e/branch1x1/Relu" [id=190, type=Relu];
-"191 /Mixed_6e/branch7x7_1/Relu" [id=191, type=Relu];
-"192 /Mixed_6e/branch7x7dbl_1/Relu" [id=192, type=Relu];
-"193 /Mixed_6d/branch7x7_3/conv/Conv/WithoutBiases" [id=193, type=Convolution];
-"194 /Mixed_6d/branch7x7dbl_3/conv/Conv/WithoutBiases" [id=194, type=Convolution];
-"195 /Mixed_6c/branch7x7dbl_4/conv/Conv" [id=195, type=Add];
-"196 /Mixed_6b/branch7x7dbl_5/Relu" [id=196, type=Relu];
-"197 /Mixed_6e/branch_pool/Relu" [id=197, type=Relu];
-"198 /Mixed_6e/Concat" [id=198, type=Concat];
-"199 /Mixed_6e/branch7x7_2/conv/Conv/WithoutBiases" [id=199, type=Convolution];
-"200 /Mixed_6e/branch7x7dbl_2/conv/Conv/WithoutBiases" [id=200, type=Convolution];
-"201 /Mixed_6d/branch7x7_3/conv/Conv" [id=201, type=Add];
-"202 /Mixed_6d/branch7x7dbl_3/conv/Conv" [id=202, type=Add];
-"203 /Mixed_6c/branch7x7dbl_4/Relu" [id=203, type=Relu];
-"204 /Mixed_7a/MaxPool" [id=204, type=MaxPool];
-"205 /Mixed_7a/branch3x3_1/conv/Conv/WithoutBiases" [id=205, type=Convolution];
-"206 /Mixed_7a/branch7x7x3_1/conv/Conv/WithoutBiases" [id=206, type=Convolution];
-"207 /Mixed_6e/branch7x7_2/conv/Conv" [id=207, type=Add];
-"208 /Mixed_6e/branch7x7dbl_2/conv/Conv" [id=208, type=Add];
-"209 /Mixed_6d/branch7x7_3/Relu" [id=209, type=Relu];
-"210 /Mixed_6d/branch7x7dbl_3/Relu" [id=210, type=Relu];
-"211 /Mixed_6c/branch7x7dbl_5/conv/Conv/WithoutBiases" [id=211, type=Convolution];
-"212 /Mixed_7a/Concat" [id=212, type=Concat];
-"213 /Mixed_7a/branch3x3_1/conv/Conv" [id=213, type=Add];
-"214 /Mixed_7a/branch7x7x3_1/conv/Conv" [id=214, type=Add];
-"215 /Mixed_6e/branch7x7_2/Relu" [id=215, type=Relu];
-"216 /Mixed_6e/branch7x7dbl_2/Relu" [id=216, type=Relu];
-"217 /Mixed_6d/branch7x7dbl_4/conv/Conv/WithoutBiases" [id=217, type=Convolution];
-"218 /Mixed_6c/branch7x7dbl_5/conv/Conv" [id=218, type=Add];
-"219 /Mixed_7b/AveragePool" [id=219, type=AvgPool];
-"220 /Mixed_7b/branch1x1/conv/Conv/WithoutBiases" [id=220, type=Convolution];
-"221 /Mixed_7b/branch3x3_1/conv/Conv/WithoutBiases" [id=221, type=Convolution];
-"222 /Mixed_7b/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=222, type=Convolution];
-"223 /Mixed_7a/branch3x3_1/Relu" [id=223, type=Relu];
-"224 /Mixed_7a/branch7x7x3_1/Relu" [id=224, type=Relu];
-"225 /Mixed_6e/branch7x7_3/conv/Conv/WithoutBiases" [id=225, type=Convolution];
-"226 /Mixed_6e/branch7x7dbl_3/conv/Conv/WithoutBiases" [id=226, type=Convolution];
-"227 /Mixed_6d/branch7x7dbl_4/conv/Conv" [id=227, type=Add];
-"228 /Mixed_6c/branch7x7dbl_5/Relu" [id=228, type=Relu];
-"229 /Mixed_7b/branch_pool/conv/Conv/WithoutBiases" [id=229, type=Convolution];
-"230 /Mixed_7b/branch1x1/conv/Conv" [id=230, type=Add];
-"231 /Mixed_7b/branch3x3_1/conv/Conv" [id=231, type=Add];
-"232 /Mixed_7b/branch3x3dbl_1/conv/Conv" [id=232, type=Add];
-"233 /Mixed_7a/branch3x3_2/conv/Conv/WithoutBiases" [id=233, type=Convolution];
-"234 /Mixed_7a/branch7x7x3_2/conv/Conv/WithoutBiases" [id=234, type=Convolution];
-"235 /Mixed_6e/branch7x7_3/conv/Conv" [id=235, type=Add];
-"236 /Mixed_6e/branch7x7dbl_3/conv/Conv" [id=236, type=Add];
-"237 /Mixed_6d/branch7x7dbl_4/Relu" [id=237, type=Relu];
-"238 /Mixed_7b/branch_pool/conv/Conv" [id=238, type=Add];
-"239 /Mixed_7b/branch1x1/Relu" [id=239, type=Relu];
-"240 /Mixed_7b/branch3x3_1/Relu" [id=240, type=Relu];
-"241 /Mixed_7b/branch3x3dbl_1/Relu" [id=241, type=Relu];
-"242 /Mixed_7a/branch3x3_2/conv/Conv" [id=242, type=Add];
-"243 /Mixed_7a/branch7x7x3_2/conv/Conv" [id=243, type=Add];
-"244 /Mixed_6e/branch7x7_3/Relu" [id=244, type=Relu];
-"245 /Mixed_6e/branch7x7dbl_3/Relu" [id=245, type=Relu];
-"246 /Mixed_6d/branch7x7dbl_5/conv/Conv/WithoutBiases" [id=246, type=Convolution];
-"247 /Mixed_7b/branch_pool/Relu" [id=247, type=Relu];
-"248 /Mixed_7b/Concat" [id=248, type=Concat];
-"249 /Mixed_7b/branch3x3_2a/conv/Conv/WithoutBiases" [id=249, type=Convolution];
-"250 /Mixed_7b/branch3x3_2b/conv/Conv/WithoutBiases" [id=250, type=Convolution];
-"251 /Mixed_7b/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=251, type=Convolution];
-"252 /Mixed_7a/branch3x3_2/Relu" [id=252, type=Relu];
-"253 /Mixed_7a/branch7x7x3_2/Relu" [id=253, type=Relu];
-"254 /Mixed_6e/branch7x7dbl_4/conv/Conv/WithoutBiases" [id=254, type=Convolution];
-"255 /Mixed_6d/branch7x7dbl_5/conv/Conv" [id=255, type=Add];
-"256 /Mixed_7c/AveragePool" [id=256, type=AvgPool];
-"257 /Mixed_7c/branch1x1/conv/Conv/WithoutBiases" [id=257, type=Convolution];
-"258 /Mixed_7c/branch3x3_1/conv/Conv/WithoutBiases" [id=258, type=Convolution];
-"259 /Mixed_7c/branch3x3dbl_1/conv/Conv/WithoutBiases" [id=259, type=Convolution];
-"260 /Mixed_7b/branch3x3_2a/conv/Conv" [id=260, type=Add];
-"261 /Mixed_7b/branch3x3_2b/conv/Conv" [id=261, type=Add];
-"262 /Mixed_7b/branch3x3dbl_2/conv/Conv" [id=262, type=Add];
-"263 /Mixed_7a/branch7x7x3_3/conv/Conv/WithoutBiases" [id=263, type=Convolution];
-"264 /Mixed_6e/branch7x7dbl_4/conv/Conv" [id=264, type=Add];
-"265 /Mixed_6d/branch7x7dbl_5/Relu" [id=265, type=Relu];
-"266 /Mixed_7c/branch_pool/conv/Conv/WithoutBiases" [id=266, type=Convolution];
-"267 /Mixed_7c/branch1x1/conv/Conv" [id=267, type=Add];
-"268 /Mixed_7c/branch3x3_1/conv/Conv" [id=268, type=Add];
-"269 /Mixed_7c/branch3x3dbl_1/conv/Conv" [id=269, type=Add];
-"270 /Mixed_7b/branch3x3_2a/Relu" [id=270, type=Relu];
-"271 /Mixed_7b/branch3x3_2b/Relu" [id=271, type=Relu];
-"272 /Mixed_7b/branch3x3dbl_2/Relu" [id=272, type=Relu];
-"273 /Mixed_7a/branch7x7x3_3/conv/Conv" [id=273, type=Add];
-"274 /Mixed_6e/branch7x7dbl_4/Relu" [id=274, type=Relu];
-"275 /Mixed_7c/branch_pool/conv/Conv" [id=275, type=Add];
-"276 /Mixed_7c/branch1x1/Relu" [id=276, type=Relu];
-"277 /Mixed_7c/branch3x3_1/Relu" [id=277, type=Relu];
-"278 /Mixed_7c/branch3x3dbl_1/Relu" [id=278, type=Relu];
-"279 /Mixed_7b/branch3x3dbl_3a/conv/Conv/WithoutBiases" [id=279, type=Convolution];
-"280 /Mixed_7b/branch3x3dbl_3b/conv/Conv/WithoutBiases" [id=280, type=Convolution];
-"281 /Mixed_7a/branch7x7x3_3/Relu" [id=281, type=Relu];
-"282 /Mixed_6e/branch7x7dbl_5/conv/Conv/WithoutBiases" [id=282, type=Convolution];
-"283 /Mixed_7c/branch_pool/Relu" [id=283, type=Relu];
-"284 /Mixed_7c/Concat" [id=284, type=Concat];
-"285 /Mixed_7c/branch3x3_2a/conv/Conv/WithoutBiases" [id=285, type=Convolution];
-"286 /Mixed_7c/branch3x3_2b/conv/Conv/WithoutBiases" [id=286, type=Convolution];
-"287 /Mixed_7c/branch3x3dbl_2/conv/Conv/WithoutBiases" [id=287, type=Convolution];
-"288 /Mixed_7b/branch3x3dbl_3a/conv/Conv" [id=288, type=Add];
-"289 /Mixed_7b/branch3x3dbl_3b/conv/Conv" [id=289, type=Add];
-"290 /Mixed_7a/branch7x7x3_4/conv/Conv/WithoutBiases" [id=290, type=Convolution];
-"291 /Mixed_6e/branch7x7dbl_5/conv/Conv" [id=291, type=Add];
-"292 /avgpool/GlobalAveragePool" [id=292, type=ReduceMean];
-"293 /Mixed_7c/branch3x3_2a/conv/Conv" [id=293, type=Add];
-"294 /Mixed_7c/branch3x3_2b/conv/Conv" [id=294, type=Add];
-"295 /Mixed_7c/branch3x3dbl_2/conv/Conv" [id=295, type=Add];
-"296 /Mixed_7b/branch3x3dbl_3a/Relu" [id=296, type=Relu];
-"297 /Mixed_7b/branch3x3dbl_3b/Relu" [id=297, type=Relu];
-"298 /Mixed_7a/branch7x7x3_4/conv/Conv" [id=298, type=Add];
-"299 /Mixed_6e/branch7x7dbl_5/Relu" [id=299, type=Relu];
-"300 /Flatten" [id=300, type=Reshape];
-"301 /Mixed_7c/branch3x3_2a/Relu" [id=301, type=Relu];
-"302 /Mixed_7c/branch3x3_2b/Relu" [id=302, type=Relu];
-"303 /Mixed_7c/branch3x3dbl_2/Relu" [id=303, type=Relu];
-"304 /Mixed_7a/branch7x7x3_4/Relu" [id=304, type=Relu];
-"305 /fc/Gemm/WithoutBiases" [id=305, type=MatMul];
-"306 /Mixed_7c/branch3x3dbl_3a/conv/Conv/WithoutBiases" [id=306, type=Convolution];
-"307 /Mixed_7c/branch3x3dbl_3b/conv/Conv/WithoutBiases" [id=307, type=Convolution];
-"308 prob" [id=308, type=Add];
-"309 /Mixed_7c/branch3x3dbl_3a/conv/Conv" [id=309, type=Add];
-"310 /Mixed_7c/branch3x3dbl_3b/conv/Conv" [id=310, type=Add];
-"311 prob/sink_port_0" [id=311, type=Result];
-"312 /Mixed_7c/branch3x3dbl_3a/Relu" [id=312, type=Relu];
-"313 /Mixed_7c/branch3x3dbl_3b/Relu" [id=313, type=Relu];
-"314 Constant_4105" [id=314, type=Constant];
-"315 fc.weight" [id=315, type=Constant];
-"316 Constant_1730" [id=316, type=Constant];
-"317 Range_1726" [id=317, type=Constant];
-"318 Reshape_1714" [id=318, type=Constant];
-"319 onnx^^Conv_1170" [id=319, label="319 onnx::Conv_1170", type=Constant];
-"320 Reshape_1568" [id=320, type=Constant];
-"321 onnx^^Conv_1143" [id=321, label="321 onnx::Conv_1143", type=Constant];
-"322 Reshape_1324" [id=322, type=Constant];
-"323 onnx^^Conv_1098" [id=323, label="323 onnx::Conv_1098", type=Constant];
-"324 Reshape_1162" [id=324, type=Constant];
-"325 onnx^^Conv_1068" [id=325, label="325 onnx::Conv_1068", type=Constant];
-"326 Reshape_1000" [id=326, type=Constant];
-"327 onnx^^Conv_1038" [id=327, label="327 onnx::Conv_1038", type=Constant];
-"328 Reshape_838" [id=328, type=Constant];
-"329 onnx^^Conv_1008" [id=329, label="329 onnx::Conv_1008", type=Constant];
-"330 Reshape_610" [id=330, type=Constant];
-"331 onnx^^Conv_966" [id=331, label="331 onnx::Conv_966", type=Constant];
-"332 Reshape_496" [id=332, type=Constant];
-"333 onnx^^Conv_945" [id=333, label="333 onnx::Conv_945", type=Constant];
-"334 Reshape_382" [id=334, type=Constant];
-"335 onnx^^Conv_924" [id=335, label="335 onnx::Conv_924", type=Constant];
-"336 Reshape_268" [id=336, type=Constant];
-"337 onnx^^Conv_903" [id=337, label="337 onnx::Conv_903", type=Constant];
-"338 Reshape_252" [id=338, type=Constant];
-"339 onnx^^Conv_900" [id=339, label="339 onnx::Conv_900", type=Constant];
-"340 Reshape_235" [id=340, type=Constant];
-"341 onnx^^Conv_897" [id=341, label="341 onnx::Conv_897", type=Constant];
-"342 Reshape_219" [id=342, type=Constant];
-"343 onnx^^Conv_894" [id=343, label="343 onnx::Conv_894", type=Constant];
-"344 Reshape_203" [id=344, type=Constant];
-"345 Gather_4104" [id=345, type=Constant];
-"346 Gather_4101" [id=346, type=Constant];
-"347 Gather_4098" [id=347, type=Constant];
-"348 Reshape_365" [id=348, type=Constant];
-"349 onnx^^Conv_921" [id=349, label="349 onnx::Conv_921", type=Constant];
-"350 Reshape_349" [id=350, type=Constant];
-"351 onnx^^Conv_918" [id=351, label="351 onnx::Conv_918", type=Constant];
-"352 Reshape_333" [id=352, type=Constant];
-"353 onnx^^Conv_915" [id=353, label="353 onnx::Conv_915", type=Constant];
-"354 Reshape_317" [id=354, type=Constant];
-"355 onnx^^Conv_912" [id=355, label="355 onnx::Conv_912", type=Constant];
-"356 Reshape_301" [id=356, type=Constant];
-"357 onnx^^Conv_909" [id=357, label="357 onnx::Conv_909", type=Constant];
-"358 Reshape_285" [id=358, type=Constant];
-"359 onnx^^Conv_906" [id=359, label="359 onnx::Conv_906", type=Constant];
-"360 Reshape_479" [id=360, type=Constant];
-"361 onnx^^Conv_942" [id=361, label="361 onnx::Conv_942", type=Constant];
-"362 Reshape_463" [id=362, type=Constant];
-"363 onnx^^Conv_939" [id=363, label="363 onnx::Conv_939", type=Constant];
-"364 Reshape_447" [id=364, type=Constant];
-"365 onnx^^Conv_936" [id=365, label="365 onnx::Conv_936", type=Constant];
-"366 Reshape_431" [id=366, type=Constant];
-"367 onnx^^Conv_933" [id=367, label="367 onnx::Conv_933", type=Constant];
-"368 Reshape_415" [id=368, type=Constant];
-"369 onnx^^Conv_930" [id=369, label="369 onnx::Conv_930", type=Constant];
-"370 Reshape_399" [id=370, type=Constant];
-"371 onnx^^Conv_927" [id=371, label="371 onnx::Conv_927", type=Constant];
-"372 Reshape_593" [id=372, type=Constant];
-"373 onnx^^Conv_963" [id=373, label="373 onnx::Conv_963", type=Constant];
-"374 Reshape_577" [id=374, type=Constant];
-"375 onnx^^Conv_960" [id=375, label="375 onnx::Conv_960", type=Constant];
-"376 Reshape_561" [id=376, type=Constant];
-"377 onnx^^Conv_957" [id=377, label="377 onnx::Conv_957", type=Constant];
-"378 Reshape_545" [id=378, type=Constant];
-"379 onnx^^Conv_954" [id=379, label="379 onnx::Conv_954", type=Constant];
-"380 Reshape_529" [id=380, type=Constant];
-"381 onnx^^Conv_951" [id=381, label="381 onnx::Conv_951", type=Constant];
-"382 Reshape_513" [id=382, type=Constant];
-"383 onnx^^Conv_948" [id=383, label="383 onnx::Conv_948", type=Constant];
-"384 Reshape_675" [id=384, type=Constant];
-"385 onnx^^Conv_978" [id=385, label="385 onnx::Conv_978", type=Constant];
-"386 Reshape_659" [id=386, type=Constant];
-"387 onnx^^Conv_975" [id=387, label="387 onnx::Conv_975", type=Constant];
-"388 Reshape_643" [id=388, type=Constant];
-"389 onnx^^Conv_972" [id=389, label="389 onnx::Conv_972", type=Constant];
-"390 Reshape_627" [id=390, type=Constant];
-"391 onnx^^Conv_969" [id=391, label="391 onnx::Conv_969", type=Constant];
-"392 Reshape_821" [id=392, type=Constant];
-"393 onnx^^Conv_1005" [id=393, label="393 onnx::Conv_1005", type=Constant];
-"394 Reshape_805" [id=394, type=Constant];
-"395 onnx^^Conv_1002" [id=395, label="395 onnx::Conv_1002", type=Constant];
-"396 Reshape_789" [id=396, type=Constant];
-"397 onnx^^Conv_999" [id=397, label="397 onnx::Conv_999", type=Constant];
-"398 Reshape_773" [id=398, type=Constant];
-"399 onnx^^Conv_996" [id=399, label="399 onnx::Conv_996", type=Constant];
-"400 Reshape_757" [id=400, type=Constant];
-"401 onnx^^Conv_993" [id=401, label="401 onnx::Conv_993", type=Constant];
-"402 Reshape_741" [id=402, type=Constant];
-"403 onnx^^Conv_990" [id=403, label="403 onnx::Conv_990", type=Constant];
-"404 Reshape_725" [id=404, type=Constant];
-"405 onnx^^Conv_987" [id=405, label="405 onnx::Conv_987", type=Constant];
-"406 Reshape_709" [id=406, type=Constant];
-"407 onnx^^Conv_984" [id=407, label="407 onnx::Conv_984", type=Constant];
-"408 Reshape_693" [id=408, type=Constant];
-"409 onnx^^Conv_981" [id=409, label="409 onnx::Conv_981", type=Constant];
-"410 Reshape_983" [id=410, type=Constant];
-"411 onnx^^Conv_1035" [id=411, label="411 onnx::Conv_1035", type=Constant];
-"412 Reshape_967" [id=412, type=Constant];
-"413 onnx^^Conv_1032" [id=413, label="413 onnx::Conv_1032", type=Constant];
-"414 Reshape_951" [id=414, type=Constant];
-"415 onnx^^Conv_1029" [id=415, label="415 onnx::Conv_1029", type=Constant];
-"416 Reshape_935" [id=416, type=Constant];
-"417 onnx^^Conv_1026" [id=417, label="417 onnx::Conv_1026", type=Constant];
-"418 Reshape_919" [id=418, type=Constant];
-"419 onnx^^Conv_1023" [id=419, label="419 onnx::Conv_1023", type=Constant];
-"420 Reshape_903" [id=420, type=Constant];
-"421 onnx^^Conv_1020" [id=421, label="421 onnx::Conv_1020", type=Constant];
-"422 Reshape_887" [id=422, type=Constant];
-"423 onnx^^Conv_1017" [id=423, label="423 onnx::Conv_1017", type=Constant];
-"424 Reshape_871" [id=424, type=Constant];
-"425 onnx^^Conv_1014" [id=425, label="425 onnx::Conv_1014", type=Constant];
-"426 Reshape_855" [id=426, type=Constant];
-"427 onnx^^Conv_1011" [id=427, label="427 onnx::Conv_1011", type=Constant];
-"428 Reshape_1145" [id=428, type=Constant];
-"429 onnx^^Conv_1065" [id=429, label="429 onnx::Conv_1065", type=Constant];
-"430 Reshape_1129" [id=430, type=Constant];
-"431 onnx^^Conv_1062" [id=431, label="431 onnx::Conv_1062", type=Constant];
-"432 Reshape_1113" [id=432, type=Constant];
-"433 onnx^^Conv_1059" [id=433, label="433 onnx::Conv_1059", type=Constant];
-"434 Reshape_1097" [id=434, type=Constant];
-"435 onnx^^Conv_1056" [id=435, label="435 onnx::Conv_1056", type=Constant];
-"436 Reshape_1081" [id=436, type=Constant];
-"437 onnx^^Conv_1053" [id=437, label="437 onnx::Conv_1053", type=Constant];
-"438 Reshape_1065" [id=438, type=Constant];
-"439 onnx^^Conv_1050" [id=439, label="439 onnx::Conv_1050", type=Constant];
-"440 Reshape_1049" [id=440, type=Constant];
-"441 onnx^^Conv_1047" [id=441, label="441 onnx::Conv_1047", type=Constant];
-"442 Reshape_1033" [id=442, type=Constant];
-"443 onnx^^Conv_1044" [id=443, label="443 onnx::Conv_1044", type=Constant];
-"444 Reshape_1017" [id=444, type=Constant];
-"445 onnx^^Conv_1041" [id=445, label="445 onnx::Conv_1041", type=Constant];
-"446 Reshape_1307" [id=446, type=Constant];
-"447 onnx^^Conv_1095" [id=447, label="447 onnx::Conv_1095", type=Constant];
-"448 Reshape_1291" [id=448, type=Constant];
-"449 onnx^^Conv_1092" [id=449, label="449 onnx::Conv_1092", type=Constant];
-"450 Reshape_1275" [id=450, type=Constant];
-"451 onnx^^Conv_1089" [id=451, label="451 onnx::Conv_1089", type=Constant];
-"452 Reshape_1259" [id=452, type=Constant];
-"453 onnx^^Conv_1086" [id=453, label="453 onnx::Conv_1086", type=Constant];
-"454 Reshape_1243" [id=454, type=Constant];
-"455 onnx^^Conv_1083" [id=455, label="455 onnx::Conv_1083", type=Constant];
-"456 Reshape_1227" [id=456, type=Constant];
-"457 onnx^^Conv_1080" [id=457, label="457 onnx::Conv_1080", type=Constant];
-"458 Reshape_1211" [id=458, type=Constant];
-"459 onnx^^Conv_1077" [id=459, label="459 onnx::Conv_1077", type=Constant];
-"460 Reshape_1195" [id=460, type=Constant];
-"461 onnx^^Conv_1074" [id=461, label="461 onnx::Conv_1074", type=Constant];
-"462 Reshape_1179" [id=462, type=Constant];
-"463 onnx^^Conv_1071" [id=463, label="463 onnx::Conv_1071", type=Constant];
-"464 Reshape_1421" [id=464, type=Constant];
-"465 onnx^^Conv_1116" [id=465, label="465 onnx::Conv_1116", type=Constant];
-"466 Reshape_1405" [id=466, type=Constant];
-"467 onnx^^Conv_1113" [id=467, label="467 onnx::Conv_1113", type=Constant];
-"468 Reshape_1389" [id=468, type=Constant];
-"469 onnx^^Conv_1110" [id=469, label="469 onnx::Conv_1110", type=Constant];
-"470 Reshape_1373" [id=470, type=Constant];
-"471 onnx^^Conv_1107" [id=471, label="471 onnx::Conv_1107", type=Constant];
-"472 Reshape_1357" [id=472, type=Constant];
-"473 onnx^^Conv_1104" [id=473, label="473 onnx::Conv_1104", type=Constant];
-"474 Reshape_1341" [id=474, type=Constant];
-"475 onnx^^Conv_1101" [id=475, label="475 onnx::Conv_1101", type=Constant];
-"476 Reshape_1551" [id=476, type=Constant];
-"477 onnx^^Conv_1140" [id=477, label="477 onnx::Conv_1140", type=Constant];
-"478 Reshape_1519" [id=478, type=Constant];
-"479 onnx^^Conv_1134" [id=479, label="479 onnx::Conv_1134", type=Constant];
-"480 Reshape_1503" [id=480, type=Constant];
-"481 onnx^^Conv_1131" [id=481, label="481 onnx::Conv_1131", type=Constant];
-"482 Reshape_1535" [id=482, type=Constant];
-"483 onnx^^Conv_1137" [id=483, label="483 onnx::Conv_1137", type=Constant];
-"484 Reshape_1487" [id=484, type=Constant];
-"485 onnx^^Conv_1128" [id=485, label="485 onnx::Conv_1128", type=Constant];
-"486 Reshape_1455" [id=486, type=Constant];
-"487 onnx^^Conv_1122" [id=487, label="487 onnx::Conv_1122", type=Constant];
-"488 Reshape_1471" [id=488, type=Constant];
-"489 onnx^^Conv_1125" [id=489, label="489 onnx::Conv_1125", type=Constant];
-"490 Reshape_1439" [id=490, type=Constant];
-"491 onnx^^Conv_1119" [id=491, label="491 onnx::Conv_1119", type=Constant];
-"492 Reshape_1697" [id=492, type=Constant];
-"493 onnx^^Conv_1167" [id=493, label="493 onnx::Conv_1167", type=Constant];
-"494 Reshape_1665" [id=494, type=Constant];
-"495 onnx^^Conv_1161" [id=495, label="495 onnx::Conv_1161", type=Constant];
-"496 Reshape_1649" [id=496, type=Constant];
-"497 onnx^^Conv_1158" [id=497, label="497 onnx::Conv_1158", type=Constant];
-"498 Reshape_1681" [id=498, type=Constant];
-"499 onnx^^Conv_1164" [id=499, label="499 onnx::Conv_1164", type=Constant];
-"500 Reshape_1633" [id=500, type=Constant];
-"501 onnx^^Conv_1155" [id=501, label="501 onnx::Conv_1155", type=Constant];
-"502 Reshape_1601" [id=502, type=Constant];
-"503 onnx^^Conv_1149" [id=503, label="503 onnx::Conv_1149", type=Constant];
-"504 Reshape_1617" [id=504, type=Constant];
-"505 onnx^^Conv_1152" [id=505, label="505 onnx::Conv_1152", type=Constant];
-"506 Reshape_1585" [id=506, type=Constant];
-"507 onnx^^Conv_1146" [id=507, label="507 onnx::Conv_1146", type=Constant];
-"0 data" -> "1 Multiply_4031" [label="[1, 3, 299, 299]", style=solid];
-"1 Multiply_4031" -> "2 Divide_1751" [label="[1, 3, 299, 299]", style=solid];
-"2 Divide_1751" -> "3 /Conv2d_1a_3x3/conv/Conv/WithoutBiases" [label="[1, 3, 299, 299]", style=solid];
-"3 /Conv2d_1a_3x3/conv/Conv/WithoutBiases" -> "4 /Conv2d_1a_3x3/conv/Conv" [label="[1, 32, 149, 149]", style=solid];
-"4 /Conv2d_1a_3x3/conv/Conv" -> "5 /Conv2d_1a_3x3/Relu" [label="[1, 32, 149, 149]", style=solid];
-"5 /Conv2d_1a_3x3/Relu" -> "6 /Conv2d_2a_3x3/conv/Conv/WithoutBiases" [label="[1, 32, 149, 149]", style=solid];
-"6 /Conv2d_2a_3x3/conv/Conv/WithoutBiases" -> "7 /Conv2d_2a_3x3/conv/Conv" [label="[1, 32, 147, 147]", style=solid];
-"7 /Conv2d_2a_3x3/conv/Conv" -> "8 /Conv2d_2a_3x3/Relu" [label="[1, 32, 147, 147]", style=solid];
-"8 /Conv2d_2a_3x3/Relu" -> "9 /Conv2d_2b_3x3/conv/Conv/WithoutBiases" [label="[1, 32, 147, 147]", style=solid];
-"9 /Conv2d_2b_3x3/conv/Conv/WithoutBiases" -> "10 /Conv2d_2b_3x3/conv/Conv" [label="[1, 64, 147, 147]", style=solid];
-"10 /Conv2d_2b_3x3/conv/Conv" -> "11 /Conv2d_2b_3x3/Relu" [label="[1, 64, 147, 147]", style=solid];
-"11 /Conv2d_2b_3x3/Relu" -> "12 /maxpool1/MaxPool" [label="[1, 64, 147, 147]", style=solid];
-"12 /maxpool1/MaxPool" -> "13 /Conv2d_3b_1x1/conv/Conv/WithoutBiases" [label="[1, 64, 73, 73]", style=solid];
-"13 /Conv2d_3b_1x1/conv/Conv/WithoutBiases" -> "14 /Conv2d_3b_1x1/conv/Conv" [label="[1, 80, 73, 73]", style=solid];
-"14 /Conv2d_3b_1x1/conv/Conv" -> "15 /Conv2d_3b_1x1/Relu" [label="[1, 80, 73, 73]", style=solid];
-"15 /Conv2d_3b_1x1/Relu" -> "16 /Conv2d_4a_3x3/conv/Conv/WithoutBiases" [label="[1, 80, 73, 73]", style=solid];
-"16 /Conv2d_4a_3x3/conv/Conv/WithoutBiases" -> "17 /Conv2d_4a_3x3/conv/Conv" [label="[1, 192, 71, 71]", style=solid];
-"17 /Conv2d_4a_3x3/conv/Conv" -> "18 /Conv2d_4a_3x3/Relu" [label="[1, 192, 71, 71]", style=solid];
-"18 /Conv2d_4a_3x3/Relu" -> "19 /maxpool2/MaxPool" [label="[1, 192, 71, 71]", style=solid];
-"19 /maxpool2/MaxPool" -> "20 /Mixed_5b/AveragePool" [label="[1, 192, 35, 35]", style=solid];
-"19 /maxpool2/MaxPool" -> "21 /Mixed_5b/branch1x1/conv/Conv/WithoutBiases" [label="[1, 192, 35, 35]", style=solid];
-"19 /maxpool2/MaxPool" -> "22 /Mixed_5b/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 192, 35, 35]", style=solid];
-"19 /maxpool2/MaxPool" -> "23 /Mixed_5b/branch5x5_1/conv/Conv/WithoutBiases" [label="[1, 192, 35, 35]", style=solid];
-"20 /Mixed_5b/AveragePool" -> "24 /Mixed_5b/branch_pool/conv/Conv/WithoutBiases" [label="[1, 192, 35, 35]", style=solid];
-"21 /Mixed_5b/branch1x1/conv/Conv/WithoutBiases" -> "25 /Mixed_5b/branch1x1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"22 /Mixed_5b/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "26 /Mixed_5b/branch3x3dbl_1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"23 /Mixed_5b/branch5x5_1/conv/Conv/WithoutBiases" -> "27 /Mixed_5b/branch5x5_1/conv/Conv" [label="[1, 48, 35, 35]", style=solid];
-"24 /Mixed_5b/branch_pool/conv/Conv/WithoutBiases" -> "28 /Mixed_5b/branch_pool/conv/Conv" [label="[1, 32, 35, 35]", style=solid];
-"25 /Mixed_5b/branch1x1/conv/Conv" -> "29 /Mixed_5b/branch1x1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"26 /Mixed_5b/branch3x3dbl_1/conv/Conv" -> "30 /Mixed_5b/branch3x3dbl_1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"27 /Mixed_5b/branch5x5_1/conv/Conv" -> "31 /Mixed_5b/branch5x5_1/Relu" [label="[1, 48, 35, 35]", style=solid];
-"28 /Mixed_5b/branch_pool/conv/Conv" -> "32 /Mixed_5b/branch_pool/Relu" [label="[1, 32, 35, 35]", style=solid];
-"29 /Mixed_5b/branch1x1/Relu" -> "33 /Mixed_5b/Concat" [label="[1, 64, 35, 35]", style=solid];
-"30 /Mixed_5b/branch3x3dbl_1/Relu" -> "34 /Mixed_5b/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 64, 35, 35]", style=solid];
-"31 /Mixed_5b/branch5x5_1/Relu" -> "35 /Mixed_5b/branch5x5_2/conv/Conv/WithoutBiases" [label="[1, 48, 35, 35]", style=solid];
-"32 /Mixed_5b/branch_pool/Relu" -> "33 /Mixed_5b/Concat" [label="[1, 32, 35, 35]", style=solid];
-"33 /Mixed_5b/Concat" -> "36 /Mixed_5c/AveragePool" [label="[1, 256, 35, 35]", style=solid];
-"33 /Mixed_5b/Concat" -> "37 /Mixed_5c/branch1x1/conv/Conv/WithoutBiases" [label="[1, 256, 35, 35]", style=solid];
-"33 /Mixed_5b/Concat" -> "38 /Mixed_5c/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 256, 35, 35]", style=solid];
-"33 /Mixed_5b/Concat" -> "39 /Mixed_5c/branch5x5_1/conv/Conv/WithoutBiases" [label="[1, 256, 35, 35]", style=solid];
-"34 /Mixed_5b/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "40 /Mixed_5b/branch3x3dbl_2/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"35 /Mixed_5b/branch5x5_2/conv/Conv/WithoutBiases" -> "41 /Mixed_5b/branch5x5_2/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"36 /Mixed_5c/AveragePool" -> "42 /Mixed_5c/branch_pool/conv/Conv/WithoutBiases" [label="[1, 256, 35, 35]", style=solid];
-"37 /Mixed_5c/branch1x1/conv/Conv/WithoutBiases" -> "43 /Mixed_5c/branch1x1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"38 /Mixed_5c/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "44 /Mixed_5c/branch3x3dbl_1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"39 /Mixed_5c/branch5x5_1/conv/Conv/WithoutBiases" -> "45 /Mixed_5c/branch5x5_1/conv/Conv" [label="[1, 48, 35, 35]", style=solid];
-"40 /Mixed_5b/branch3x3dbl_2/conv/Conv" -> "46 /Mixed_5b/branch3x3dbl_2/Relu" [label="[1, 96, 35, 35]", style=solid];
-"41 /Mixed_5b/branch5x5_2/conv/Conv" -> "47 /Mixed_5b/branch5x5_2/Relu" [label="[1, 64, 35, 35]", style=solid];
-"42 /Mixed_5c/branch_pool/conv/Conv/WithoutBiases" -> "48 /Mixed_5c/branch_pool/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"43 /Mixed_5c/branch1x1/conv/Conv" -> "49 /Mixed_5c/branch1x1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"44 /Mixed_5c/branch3x3dbl_1/conv/Conv" -> "50 /Mixed_5c/branch3x3dbl_1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"45 /Mixed_5c/branch5x5_1/conv/Conv" -> "51 /Mixed_5c/branch5x5_1/Relu" [label="[1, 48, 35, 35]", style=solid];
-"46 /Mixed_5b/branch3x3dbl_2/Relu" -> "52 /Mixed_5b/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[1, 96, 35, 35]", style=solid];
-"47 /Mixed_5b/branch5x5_2/Relu" -> "33 /Mixed_5b/Concat" [label="[1, 64, 35, 35]", style=solid];
-"48 /Mixed_5c/branch_pool/conv/Conv" -> "53 /Mixed_5c/branch_pool/Relu" [label="[1, 64, 35, 35]", style=solid];
-"49 /Mixed_5c/branch1x1/Relu" -> "54 /Mixed_5c/Concat" [label="[1, 64, 35, 35]", style=solid];
-"50 /Mixed_5c/branch3x3dbl_1/Relu" -> "55 /Mixed_5c/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 64, 35, 35]", style=solid];
-"51 /Mixed_5c/branch5x5_1/Relu" -> "56 /Mixed_5c/branch5x5_2/conv/Conv/WithoutBiases" [label="[1, 48, 35, 35]", style=solid];
-"52 /Mixed_5b/branch3x3dbl_3/conv/Conv/WithoutBiases" -> "57 /Mixed_5b/branch3x3dbl_3/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"53 /Mixed_5c/branch_pool/Relu" -> "54 /Mixed_5c/Concat" [label="[1, 64, 35, 35]", style=solid];
-"54 /Mixed_5c/Concat" -> "58 /Mixed_5d/AveragePool" [label="[1, 288, 35, 35]", style=solid];
-"54 /Mixed_5c/Concat" -> "59 /Mixed_5d/branch1x1/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"54 /Mixed_5c/Concat" -> "60 /Mixed_5d/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"54 /Mixed_5c/Concat" -> "61 /Mixed_5d/branch5x5_1/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"55 /Mixed_5c/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "62 /Mixed_5c/branch3x3dbl_2/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"56 /Mixed_5c/branch5x5_2/conv/Conv/WithoutBiases" -> "63 /Mixed_5c/branch5x5_2/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"57 /Mixed_5b/branch3x3dbl_3/conv/Conv" -> "64 /Mixed_5b/branch3x3dbl_3/Relu" [label="[1, 96, 35, 35]", style=solid];
-"58 /Mixed_5d/AveragePool" -> "65 /Mixed_5d/branch_pool/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"59 /Mixed_5d/branch1x1/conv/Conv/WithoutBiases" -> "66 /Mixed_5d/branch1x1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"60 /Mixed_5d/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "67 /Mixed_5d/branch3x3dbl_1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"61 /Mixed_5d/branch5x5_1/conv/Conv/WithoutBiases" -> "68 /Mixed_5d/branch5x5_1/conv/Conv" [label="[1, 48, 35, 35]", style=solid];
-"62 /Mixed_5c/branch3x3dbl_2/conv/Conv" -> "69 /Mixed_5c/branch3x3dbl_2/Relu" [label="[1, 96, 35, 35]", style=solid];
-"63 /Mixed_5c/branch5x5_2/conv/Conv" -> "70 /Mixed_5c/branch5x5_2/Relu" [label="[1, 64, 35, 35]", style=solid];
-"64 /Mixed_5b/branch3x3dbl_3/Relu" -> "33 /Mixed_5b/Concat" [label="[1, 96, 35, 35]", style=solid];
-"65 /Mixed_5d/branch_pool/conv/Conv/WithoutBiases" -> "71 /Mixed_5d/branch_pool/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"66 /Mixed_5d/branch1x1/conv/Conv" -> "72 /Mixed_5d/branch1x1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"67 /Mixed_5d/branch3x3dbl_1/conv/Conv" -> "73 /Mixed_5d/branch3x3dbl_1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"68 /Mixed_5d/branch5x5_1/conv/Conv" -> "74 /Mixed_5d/branch5x5_1/Relu" [label="[1, 48, 35, 35]", style=solid];
-"69 /Mixed_5c/branch3x3dbl_2/Relu" -> "75 /Mixed_5c/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[1, 96, 35, 35]", style=solid];
-"70 /Mixed_5c/branch5x5_2/Relu" -> "54 /Mixed_5c/Concat" [label="[1, 64, 35, 35]", style=solid];
-"71 /Mixed_5d/branch_pool/conv/Conv" -> "76 /Mixed_5d/branch_pool/Relu" [label="[1, 64, 35, 35]", style=solid];
-"72 /Mixed_5d/branch1x1/Relu" -> "77 /Mixed_5d/Concat" [label="[1, 64, 35, 35]", style=solid];
-"73 /Mixed_5d/branch3x3dbl_1/Relu" -> "78 /Mixed_5d/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 64, 35, 35]", style=solid];
-"74 /Mixed_5d/branch5x5_1/Relu" -> "79 /Mixed_5d/branch5x5_2/conv/Conv/WithoutBiases" [label="[1, 48, 35, 35]", style=solid];
-"75 /Mixed_5c/branch3x3dbl_3/conv/Conv/WithoutBiases" -> "80 /Mixed_5c/branch3x3dbl_3/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"76 /Mixed_5d/branch_pool/Relu" -> "77 /Mixed_5d/Concat" [label="[1, 64, 35, 35]", style=solid];
-"77 /Mixed_5d/Concat" -> "81 /Mixed_6a/MaxPool" [label="[1, 288, 35, 35]", style=solid];
-"77 /Mixed_5d/Concat" -> "82 /Mixed_6a/branch3x3/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"77 /Mixed_5d/Concat" -> "83 /Mixed_6a/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 288, 35, 35]", style=solid];
-"78 /Mixed_5d/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "84 /Mixed_5d/branch3x3dbl_2/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"79 /Mixed_5d/branch5x5_2/conv/Conv/WithoutBiases" -> "85 /Mixed_5d/branch5x5_2/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"80 /Mixed_5c/branch3x3dbl_3/conv/Conv" -> "86 /Mixed_5c/branch3x3dbl_3/Relu" [label="[1, 96, 35, 35]", style=solid];
-"81 /Mixed_6a/MaxPool" -> "87 /Mixed_6a/Concat" [label="[1, 288, 17, 17]", style=solid];
-"82 /Mixed_6a/branch3x3/conv/Conv/WithoutBiases" -> "88 /Mixed_6a/branch3x3/conv/Conv" [label="[1, 384, 17, 17]", style=solid];
-"83 /Mixed_6a/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "89 /Mixed_6a/branch3x3dbl_1/conv/Conv" [label="[1, 64, 35, 35]", style=solid];
-"84 /Mixed_5d/branch3x3dbl_2/conv/Conv" -> "90 /Mixed_5d/branch3x3dbl_2/Relu" [label="[1, 96, 35, 35]", style=solid];
-"85 /Mixed_5d/branch5x5_2/conv/Conv" -> "91 /Mixed_5d/branch5x5_2/Relu" [label="[1, 64, 35, 35]", style=solid];
-"86 /Mixed_5c/branch3x3dbl_3/Relu" -> "54 /Mixed_5c/Concat" [label="[1, 96, 35, 35]", style=solid];
-"87 /Mixed_6a/Concat" -> "92 /Mixed_6b/AveragePool" [label="[1, 768, 17, 17]", style=solid];
-"87 /Mixed_6a/Concat" -> "93 /Mixed_6b/branch1x1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"87 /Mixed_6a/Concat" -> "94 /Mixed_6b/branch7x7_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"87 /Mixed_6a/Concat" -> "95 /Mixed_6b/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"88 /Mixed_6a/branch3x3/conv/Conv" -> "96 /Mixed_6a/branch3x3/Relu" [label="[1, 384, 17, 17]", style=solid];
-"89 /Mixed_6a/branch3x3dbl_1/conv/Conv" -> "97 /Mixed_6a/branch3x3dbl_1/Relu" [label="[1, 64, 35, 35]", style=solid];
-"90 /Mixed_5d/branch3x3dbl_2/Relu" -> "98 /Mixed_5d/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[1, 96, 35, 35]", style=solid];
-"91 /Mixed_5d/branch5x5_2/Relu" -> "77 /Mixed_5d/Concat" [label="[1, 64, 35, 35]", style=solid];
-"92 /Mixed_6b/AveragePool" -> "99 /Mixed_6b/branch_pool/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"93 /Mixed_6b/branch1x1/conv/Conv/WithoutBiases" -> "100 /Mixed_6b/branch1x1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"94 /Mixed_6b/branch7x7_1/conv/Conv/WithoutBiases" -> "101 /Mixed_6b/branch7x7_1/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"95 /Mixed_6b/branch7x7dbl_1/conv/Conv/WithoutBiases" -> "102 /Mixed_6b/branch7x7dbl_1/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"96 /Mixed_6a/branch3x3/Relu" -> "87 /Mixed_6a/Concat" [label="[1, 384, 17, 17]", style=solid];
-"97 /Mixed_6a/branch3x3dbl_1/Relu" -> "103 /Mixed_6a/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 64, 35, 35]", style=solid];
-"98 /Mixed_5d/branch3x3dbl_3/conv/Conv/WithoutBiases" -> "104 /Mixed_5d/branch3x3dbl_3/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"99 /Mixed_6b/branch_pool/conv/Conv/WithoutBiases" -> "105 /Mixed_6b/branch_pool/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"100 /Mixed_6b/branch1x1/conv/Conv" -> "106 /Mixed_6b/branch1x1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"101 /Mixed_6b/branch7x7_1/conv/Conv" -> "107 /Mixed_6b/branch7x7_1/Relu" [label="[1, 128, 17, 17]", style=solid];
-"102 /Mixed_6b/branch7x7dbl_1/conv/Conv" -> "108 /Mixed_6b/branch7x7dbl_1/Relu" [label="[1, 128, 17, 17]", style=solid];
-"103 /Mixed_6a/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "109 /Mixed_6a/branch3x3dbl_2/conv/Conv" [label="[1, 96, 35, 35]", style=solid];
-"104 /Mixed_5d/branch3x3dbl_3/conv/Conv" -> "110 /Mixed_5d/branch3x3dbl_3/Relu" [label="[1, 96, 35, 35]", style=solid];
-"105 /Mixed_6b/branch_pool/conv/Conv" -> "111 /Mixed_6b/branch_pool/Relu" [label="[1, 192, 17, 17]", style=solid];
-"106 /Mixed_6b/branch1x1/Relu" -> "112 /Mixed_6b/Concat" [label="[1, 192, 17, 17]", style=solid];
-"107 /Mixed_6b/branch7x7_1/Relu" -> "113 /Mixed_6b/branch7x7_2/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"108 /Mixed_6b/branch7x7dbl_1/Relu" -> "114 /Mixed_6b/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"109 /Mixed_6a/branch3x3dbl_2/conv/Conv" -> "115 /Mixed_6a/branch3x3dbl_2/Relu" [label="[1, 96, 35, 35]", style=solid];
-"110 /Mixed_5d/branch3x3dbl_3/Relu" -> "77 /Mixed_5d/Concat" [label="[1, 96, 35, 35]", style=solid];
-"111 /Mixed_6b/branch_pool/Relu" -> "112 /Mixed_6b/Concat" [label="[1, 192, 17, 17]", style=solid];
-"112 /Mixed_6b/Concat" -> "116 /Mixed_6c/AveragePool" [label="[1, 768, 17, 17]", style=solid];
-"112 /Mixed_6b/Concat" -> "117 /Mixed_6c/branch1x1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"112 /Mixed_6b/Concat" -> "118 /Mixed_6c/branch7x7_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"112 /Mixed_6b/Concat" -> "119 /Mixed_6c/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"113 /Mixed_6b/branch7x7_2/conv/Conv/WithoutBiases" -> "120 /Mixed_6b/branch7x7_2/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"114 /Mixed_6b/branch7x7dbl_2/conv/Conv/WithoutBiases" -> "121 /Mixed_6b/branch7x7dbl_2/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"115 /Mixed_6a/branch3x3dbl_2/Relu" -> "122 /Mixed_6a/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[1, 96, 35, 35]", style=solid];
-"116 /Mixed_6c/AveragePool" -> "123 /Mixed_6c/branch_pool/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"117 /Mixed_6c/branch1x1/conv/Conv/WithoutBiases" -> "124 /Mixed_6c/branch1x1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"118 /Mixed_6c/branch7x7_1/conv/Conv/WithoutBiases" -> "125 /Mixed_6c/branch7x7_1/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"119 /Mixed_6c/branch7x7dbl_1/conv/Conv/WithoutBiases" -> "126 /Mixed_6c/branch7x7dbl_1/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"120 /Mixed_6b/branch7x7_2/conv/Conv" -> "127 /Mixed_6b/branch7x7_2/Relu" [label="[1, 128, 17, 17]", style=solid];
-"121 /Mixed_6b/branch7x7dbl_2/conv/Conv" -> "128 /Mixed_6b/branch7x7dbl_2/Relu" [label="[1, 128, 17, 17]", style=solid];
-"122 /Mixed_6a/branch3x3dbl_3/conv/Conv/WithoutBiases" -> "129 /Mixed_6a/branch3x3dbl_3/conv/Conv" [label="[1, 96, 17, 17]", style=solid];
-"123 /Mixed_6c/branch_pool/conv/Conv/WithoutBiases" -> "130 /Mixed_6c/branch_pool/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"124 /Mixed_6c/branch1x1/conv/Conv" -> "131 /Mixed_6c/branch1x1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"125 /Mixed_6c/branch7x7_1/conv/Conv" -> "132 /Mixed_6c/branch7x7_1/Relu" [label="[1, 160, 17, 17]", style=solid];
-"126 /Mixed_6c/branch7x7dbl_1/conv/Conv" -> "133 /Mixed_6c/branch7x7dbl_1/Relu" [label="[1, 160, 17, 17]", style=solid];
-"127 /Mixed_6b/branch7x7_2/Relu" -> "134 /Mixed_6b/branch7x7_3/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"128 /Mixed_6b/branch7x7dbl_2/Relu" -> "135 /Mixed_6b/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"129 /Mixed_6a/branch3x3dbl_3/conv/Conv" -> "136 /Mixed_6a/branch3x3dbl_3/Relu" [label="[1, 96, 17, 17]", style=solid];
-"130 /Mixed_6c/branch_pool/conv/Conv" -> "137 /Mixed_6c/branch_pool/Relu" [label="[1, 192, 17, 17]", style=solid];
-"131 /Mixed_6c/branch1x1/Relu" -> "138 /Mixed_6c/Concat" [label="[1, 192, 17, 17]", style=solid];
-"132 /Mixed_6c/branch7x7_1/Relu" -> "139 /Mixed_6c/branch7x7_2/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"133 /Mixed_6c/branch7x7dbl_1/Relu" -> "140 /Mixed_6c/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"134 /Mixed_6b/branch7x7_3/conv/Conv/WithoutBiases" -> "141 /Mixed_6b/branch7x7_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"135 /Mixed_6b/branch7x7dbl_3/conv/Conv/WithoutBiases" -> "142 /Mixed_6b/branch7x7dbl_3/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"136 /Mixed_6a/branch3x3dbl_3/Relu" -> "87 /Mixed_6a/Concat" [label="[1, 96, 17, 17]", style=solid];
-"137 /Mixed_6c/branch_pool/Relu" -> "138 /Mixed_6c/Concat" [label="[1, 192, 17, 17]", style=solid];
-"138 /Mixed_6c/Concat" -> "143 /Mixed_6d/AveragePool" [label="[1, 768, 17, 17]", style=solid];
-"138 /Mixed_6c/Concat" -> "144 /Mixed_6d/branch1x1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"138 /Mixed_6c/Concat" -> "145 /Mixed_6d/branch7x7_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"138 /Mixed_6c/Concat" -> "146 /Mixed_6d/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"139 /Mixed_6c/branch7x7_2/conv/Conv/WithoutBiases" -> "147 /Mixed_6c/branch7x7_2/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"140 /Mixed_6c/branch7x7dbl_2/conv/Conv/WithoutBiases" -> "148 /Mixed_6c/branch7x7dbl_2/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"141 /Mixed_6b/branch7x7_3/conv/Conv" -> "149 /Mixed_6b/branch7x7_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"142 /Mixed_6b/branch7x7dbl_3/conv/Conv" -> "150 /Mixed_6b/branch7x7dbl_3/Relu" [label="[1, 128, 17, 17]", style=solid];
-"143 /Mixed_6d/AveragePool" -> "151 /Mixed_6d/branch_pool/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"144 /Mixed_6d/branch1x1/conv/Conv/WithoutBiases" -> "152 /Mixed_6d/branch1x1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"145 /Mixed_6d/branch7x7_1/conv/Conv/WithoutBiases" -> "153 /Mixed_6d/branch7x7_1/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"146 /Mixed_6d/branch7x7dbl_1/conv/Conv/WithoutBiases" -> "154 /Mixed_6d/branch7x7dbl_1/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"147 /Mixed_6c/branch7x7_2/conv/Conv" -> "155 /Mixed_6c/branch7x7_2/Relu" [label="[1, 160, 17, 17]", style=solid];
-"148 /Mixed_6c/branch7x7dbl_2/conv/Conv" -> "156 /Mixed_6c/branch7x7dbl_2/Relu" [label="[1, 160, 17, 17]", style=solid];
-"149 /Mixed_6b/branch7x7_3/Relu" -> "112 /Mixed_6b/Concat" [label="[1, 192, 17, 17]", style=solid];
-"150 /Mixed_6b/branch7x7dbl_3/Relu" -> "157 /Mixed_6b/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"151 /Mixed_6d/branch_pool/conv/Conv/WithoutBiases" -> "158 /Mixed_6d/branch_pool/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"152 /Mixed_6d/branch1x1/conv/Conv" -> "159 /Mixed_6d/branch1x1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"153 /Mixed_6d/branch7x7_1/conv/Conv" -> "160 /Mixed_6d/branch7x7_1/Relu" [label="[1, 160, 17, 17]", style=solid];
-"154 /Mixed_6d/branch7x7dbl_1/conv/Conv" -> "161 /Mixed_6d/branch7x7dbl_1/Relu" [label="[1, 160, 17, 17]", style=solid];
-"155 /Mixed_6c/branch7x7_2/Relu" -> "162 /Mixed_6c/branch7x7_3/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"156 /Mixed_6c/branch7x7dbl_2/Relu" -> "163 /Mixed_6c/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"157 /Mixed_6b/branch7x7dbl_4/conv/Conv/WithoutBiases" -> "164 /Mixed_6b/branch7x7dbl_4/conv/Conv" [label="[1, 128, 17, 17]", style=solid];
-"158 /Mixed_6d/branch_pool/conv/Conv" -> "165 /Mixed_6d/branch_pool/Relu" [label="[1, 192, 17, 17]", style=solid];
-"159 /Mixed_6d/branch1x1/Relu" -> "166 /Mixed_6d/Concat" [label="[1, 192, 17, 17]", style=solid];
-"160 /Mixed_6d/branch7x7_1/Relu" -> "167 /Mixed_6d/branch7x7_2/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"161 /Mixed_6d/branch7x7dbl_1/Relu" -> "168 /Mixed_6d/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"162 /Mixed_6c/branch7x7_3/conv/Conv/WithoutBiases" -> "169 /Mixed_6c/branch7x7_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"163 /Mixed_6c/branch7x7dbl_3/conv/Conv/WithoutBiases" -> "170 /Mixed_6c/branch7x7dbl_3/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"164 /Mixed_6b/branch7x7dbl_4/conv/Conv" -> "171 /Mixed_6b/branch7x7dbl_4/Relu" [label="[1, 128, 17, 17]", style=solid];
-"165 /Mixed_6d/branch_pool/Relu" -> "166 /Mixed_6d/Concat" [label="[1, 192, 17, 17]", style=solid];
-"166 /Mixed_6d/Concat" -> "172 /Mixed_6e/AveragePool" [label="[1, 768, 17, 17]", style=solid];
-"166 /Mixed_6d/Concat" -> "173 /Mixed_6e/branch1x1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"166 /Mixed_6d/Concat" -> "174 /Mixed_6e/branch7x7_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"166 /Mixed_6d/Concat" -> "175 /Mixed_6e/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"167 /Mixed_6d/branch7x7_2/conv/Conv/WithoutBiases" -> "176 /Mixed_6d/branch7x7_2/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"168 /Mixed_6d/branch7x7dbl_2/conv/Conv/WithoutBiases" -> "177 /Mixed_6d/branch7x7dbl_2/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"169 /Mixed_6c/branch7x7_3/conv/Conv" -> "178 /Mixed_6c/branch7x7_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"170 /Mixed_6c/branch7x7dbl_3/conv/Conv" -> "179 /Mixed_6c/branch7x7dbl_3/Relu" [label="[1, 160, 17, 17]", style=solid];
-"171 /Mixed_6b/branch7x7dbl_4/Relu" -> "180 /Mixed_6b/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[1, 128, 17, 17]", style=solid];
-"172 /Mixed_6e/AveragePool" -> "181 /Mixed_6e/branch_pool/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"173 /Mixed_6e/branch1x1/conv/Conv/WithoutBiases" -> "182 /Mixed_6e/branch1x1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"174 /Mixed_6e/branch7x7_1/conv/Conv/WithoutBiases" -> "183 /Mixed_6e/branch7x7_1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"175 /Mixed_6e/branch7x7dbl_1/conv/Conv/WithoutBiases" -> "184 /Mixed_6e/branch7x7dbl_1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"176 /Mixed_6d/branch7x7_2/conv/Conv" -> "185 /Mixed_6d/branch7x7_2/Relu" [label="[1, 160, 17, 17]", style=solid];
-"177 /Mixed_6d/branch7x7dbl_2/conv/Conv" -> "186 /Mixed_6d/branch7x7dbl_2/Relu" [label="[1, 160, 17, 17]", style=solid];
-"178 /Mixed_6c/branch7x7_3/Relu" -> "138 /Mixed_6c/Concat" [label="[1, 192, 17, 17]", style=solid];
-"179 /Mixed_6c/branch7x7dbl_3/Relu" -> "187 /Mixed_6c/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"180 /Mixed_6b/branch7x7dbl_5/conv/Conv/WithoutBiases" -> "188 /Mixed_6b/branch7x7dbl_5/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"181 /Mixed_6e/branch_pool/conv/Conv/WithoutBiases" -> "189 /Mixed_6e/branch_pool/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"182 /Mixed_6e/branch1x1/conv/Conv" -> "190 /Mixed_6e/branch1x1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"183 /Mixed_6e/branch7x7_1/conv/Conv" -> "191 /Mixed_6e/branch7x7_1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"184 /Mixed_6e/branch7x7dbl_1/conv/Conv" -> "192 /Mixed_6e/branch7x7dbl_1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"185 /Mixed_6d/branch7x7_2/Relu" -> "193 /Mixed_6d/branch7x7_3/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"186 /Mixed_6d/branch7x7dbl_2/Relu" -> "194 /Mixed_6d/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"187 /Mixed_6c/branch7x7dbl_4/conv/Conv/WithoutBiases" -> "195 /Mixed_6c/branch7x7dbl_4/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"188 /Mixed_6b/branch7x7dbl_5/conv/Conv" -> "196 /Mixed_6b/branch7x7dbl_5/Relu" [label="[1, 192, 17, 17]", style=solid];
-"189 /Mixed_6e/branch_pool/conv/Conv" -> "197 /Mixed_6e/branch_pool/Relu" [label="[1, 192, 17, 17]", style=solid];
-"190 /Mixed_6e/branch1x1/Relu" -> "198 /Mixed_6e/Concat" [label="[1, 192, 17, 17]", style=solid];
-"191 /Mixed_6e/branch7x7_1/Relu" -> "199 /Mixed_6e/branch7x7_2/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"192 /Mixed_6e/branch7x7dbl_1/Relu" -> "200 /Mixed_6e/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"193 /Mixed_6d/branch7x7_3/conv/Conv/WithoutBiases" -> "201 /Mixed_6d/branch7x7_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"194 /Mixed_6d/branch7x7dbl_3/conv/Conv/WithoutBiases" -> "202 /Mixed_6d/branch7x7dbl_3/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"195 /Mixed_6c/branch7x7dbl_4/conv/Conv" -> "203 /Mixed_6c/branch7x7dbl_4/Relu" [label="[1, 160, 17, 17]", style=solid];
-"196 /Mixed_6b/branch7x7dbl_5/Relu" -> "112 /Mixed_6b/Concat" [label="[1, 192, 17, 17]", style=solid];
-"197 /Mixed_6e/branch_pool/Relu" -> "198 /Mixed_6e/Concat" [label="[1, 192, 17, 17]", style=solid];
-"198 /Mixed_6e/Concat" -> "204 /Mixed_7a/MaxPool" [label="[1, 768, 17, 17]", style=solid];
-"198 /Mixed_6e/Concat" -> "205 /Mixed_7a/branch3x3_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"198 /Mixed_6e/Concat" -> "206 /Mixed_7a/branch7x7x3_1/conv/Conv/WithoutBiases" [label="[1, 768, 17, 17]", style=solid];
-"199 /Mixed_6e/branch7x7_2/conv/Conv/WithoutBiases" -> "207 /Mixed_6e/branch7x7_2/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"200 /Mixed_6e/branch7x7dbl_2/conv/Conv/WithoutBiases" -> "208 /Mixed_6e/branch7x7dbl_2/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"201 /Mixed_6d/branch7x7_3/conv/Conv" -> "209 /Mixed_6d/branch7x7_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"202 /Mixed_6d/branch7x7dbl_3/conv/Conv" -> "210 /Mixed_6d/branch7x7dbl_3/Relu" [label="[1, 160, 17, 17]", style=solid];
-"203 /Mixed_6c/branch7x7dbl_4/Relu" -> "211 /Mixed_6c/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"204 /Mixed_7a/MaxPool" -> "212 /Mixed_7a/Concat" [label="[1, 768, 8, 8]", style=solid];
-"205 /Mixed_7a/branch3x3_1/conv/Conv/WithoutBiases" -> "213 /Mixed_7a/branch3x3_1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"206 /Mixed_7a/branch7x7x3_1/conv/Conv/WithoutBiases" -> "214 /Mixed_7a/branch7x7x3_1/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"207 /Mixed_6e/branch7x7_2/conv/Conv" -> "215 /Mixed_6e/branch7x7_2/Relu" [label="[1, 192, 17, 17]", style=solid];
-"208 /Mixed_6e/branch7x7dbl_2/conv/Conv" -> "216 /Mixed_6e/branch7x7dbl_2/Relu" [label="[1, 192, 17, 17]", style=solid];
-"209 /Mixed_6d/branch7x7_3/Relu" -> "166 /Mixed_6d/Concat" [label="[1, 192, 17, 17]", style=solid];
-"210 /Mixed_6d/branch7x7dbl_3/Relu" -> "217 /Mixed_6d/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"211 /Mixed_6c/branch7x7dbl_5/conv/Conv/WithoutBiases" -> "218 /Mixed_6c/branch7x7dbl_5/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"212 /Mixed_7a/Concat" -> "219 /Mixed_7b/AveragePool" [label="[1, 1280, 8, 8]", style=solid];
-"212 /Mixed_7a/Concat" -> "220 /Mixed_7b/branch1x1/conv/Conv/WithoutBiases" [label="[1, 1280, 8, 8]", style=solid];
-"212 /Mixed_7a/Concat" -> "221 /Mixed_7b/branch3x3_1/conv/Conv/WithoutBiases" [label="[1, 1280, 8, 8]", style=solid];
-"212 /Mixed_7a/Concat" -> "222 /Mixed_7b/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 1280, 8, 8]", style=solid];
-"213 /Mixed_7a/branch3x3_1/conv/Conv" -> "223 /Mixed_7a/branch3x3_1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"214 /Mixed_7a/branch7x7x3_1/conv/Conv" -> "224 /Mixed_7a/branch7x7x3_1/Relu" [label="[1, 192, 17, 17]", style=solid];
-"215 /Mixed_6e/branch7x7_2/Relu" -> "225 /Mixed_6e/branch7x7_3/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"216 /Mixed_6e/branch7x7dbl_2/Relu" -> "226 /Mixed_6e/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"217 /Mixed_6d/branch7x7dbl_4/conv/Conv/WithoutBiases" -> "227 /Mixed_6d/branch7x7dbl_4/conv/Conv" [label="[1, 160, 17, 17]", style=solid];
-"218 /Mixed_6c/branch7x7dbl_5/conv/Conv" -> "228 /Mixed_6c/branch7x7dbl_5/Relu" [label="[1, 192, 17, 17]", style=solid];
-"219 /Mixed_7b/AveragePool" -> "229 /Mixed_7b/branch_pool/conv/Conv/WithoutBiases" [label="[1, 1280, 8, 8]", style=solid];
-"220 /Mixed_7b/branch1x1/conv/Conv/WithoutBiases" -> "230 /Mixed_7b/branch1x1/conv/Conv" [label="[1, 320, 8, 8]", style=solid];
-"221 /Mixed_7b/branch3x3_1/conv/Conv/WithoutBiases" -> "231 /Mixed_7b/branch3x3_1/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"222 /Mixed_7b/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "232 /Mixed_7b/branch3x3dbl_1/conv/Conv" [label="[1, 448, 8, 8]", style=solid];
-"223 /Mixed_7a/branch3x3_1/Relu" -> "233 /Mixed_7a/branch3x3_2/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"224 /Mixed_7a/branch7x7x3_1/Relu" -> "234 /Mixed_7a/branch7x7x3_2/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"225 /Mixed_6e/branch7x7_3/conv/Conv/WithoutBiases" -> "235 /Mixed_6e/branch7x7_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"226 /Mixed_6e/branch7x7dbl_3/conv/Conv/WithoutBiases" -> "236 /Mixed_6e/branch7x7dbl_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"227 /Mixed_6d/branch7x7dbl_4/conv/Conv" -> "237 /Mixed_6d/branch7x7dbl_4/Relu" [label="[1, 160, 17, 17]", style=solid];
-"228 /Mixed_6c/branch7x7dbl_5/Relu" -> "138 /Mixed_6c/Concat" [label="[1, 192, 17, 17]", style=solid];
-"229 /Mixed_7b/branch_pool/conv/Conv/WithoutBiases" -> "238 /Mixed_7b/branch_pool/conv/Conv" [label="[1, 192, 8, 8]", style=solid];
-"230 /Mixed_7b/branch1x1/conv/Conv" -> "239 /Mixed_7b/branch1x1/Relu" [label="[1, 320, 8, 8]", style=solid];
-"231 /Mixed_7b/branch3x3_1/conv/Conv" -> "240 /Mixed_7b/branch3x3_1/Relu" [label="[1, 384, 8, 8]", style=solid];
-"232 /Mixed_7b/branch3x3dbl_1/conv/Conv" -> "241 /Mixed_7b/branch3x3dbl_1/Relu" [label="[1, 448, 8, 8]", style=solid];
-"233 /Mixed_7a/branch3x3_2/conv/Conv/WithoutBiases" -> "242 /Mixed_7a/branch3x3_2/conv/Conv" [label="[1, 320, 8, 8]", style=solid];
-"234 /Mixed_7a/branch7x7x3_2/conv/Conv/WithoutBiases" -> "243 /Mixed_7a/branch7x7x3_2/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"235 /Mixed_6e/branch7x7_3/conv/Conv" -> "244 /Mixed_6e/branch7x7_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"236 /Mixed_6e/branch7x7dbl_3/conv/Conv" -> "245 /Mixed_6e/branch7x7dbl_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"237 /Mixed_6d/branch7x7dbl_4/Relu" -> "246 /Mixed_6d/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[1, 160, 17, 17]", style=solid];
-"238 /Mixed_7b/branch_pool/conv/Conv" -> "247 /Mixed_7b/branch_pool/Relu" [label="[1, 192, 8, 8]", style=solid];
-"239 /Mixed_7b/branch1x1/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 320, 8, 8]", style=solid];
-"240 /Mixed_7b/branch3x3_1/Relu" -> "249 /Mixed_7b/branch3x3_2a/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"240 /Mixed_7b/branch3x3_1/Relu" -> "250 /Mixed_7b/branch3x3_2b/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"241 /Mixed_7b/branch3x3dbl_1/Relu" -> "251 /Mixed_7b/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 448, 8, 8]", style=solid];
-"242 /Mixed_7a/branch3x3_2/conv/Conv" -> "252 /Mixed_7a/branch3x3_2/Relu" [label="[1, 320, 8, 8]", style=solid];
-"243 /Mixed_7a/branch7x7x3_2/conv/Conv" -> "253 /Mixed_7a/branch7x7x3_2/Relu" [label="[1, 192, 17, 17]", style=solid];
-"244 /Mixed_6e/branch7x7_3/Relu" -> "198 /Mixed_6e/Concat" [label="[1, 192, 17, 17]", style=solid];
-"245 /Mixed_6e/branch7x7dbl_3/Relu" -> "254 /Mixed_6e/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"246 /Mixed_6d/branch7x7dbl_5/conv/Conv/WithoutBiases" -> "255 /Mixed_6d/branch7x7dbl_5/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"247 /Mixed_7b/branch_pool/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 192, 8, 8]", style=solid];
-"248 /Mixed_7b/Concat" -> "256 /Mixed_7c/AveragePool" [label="[1, 2048, 8, 8]", style=solid];
-"248 /Mixed_7b/Concat" -> "257 /Mixed_7c/branch1x1/conv/Conv/WithoutBiases" [label="[1, 2048, 8, 8]", style=solid];
-"248 /Mixed_7b/Concat" -> "258 /Mixed_7c/branch3x3_1/conv/Conv/WithoutBiases" [label="[1, 2048, 8, 8]", style=solid];
-"248 /Mixed_7b/Concat" -> "259 /Mixed_7c/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[1, 2048, 8, 8]", style=solid];
-"249 /Mixed_7b/branch3x3_2a/conv/Conv/WithoutBiases" -> "260 /Mixed_7b/branch3x3_2a/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"250 /Mixed_7b/branch3x3_2b/conv/Conv/WithoutBiases" -> "261 /Mixed_7b/branch3x3_2b/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"251 /Mixed_7b/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "262 /Mixed_7b/branch3x3dbl_2/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"252 /Mixed_7a/branch3x3_2/Relu" -> "212 /Mixed_7a/Concat" [label="[1, 320, 8, 8]", style=solid];
-"253 /Mixed_7a/branch7x7x3_2/Relu" -> "263 /Mixed_7a/branch7x7x3_3/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"254 /Mixed_6e/branch7x7dbl_4/conv/Conv/WithoutBiases" -> "264 /Mixed_6e/branch7x7dbl_4/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"255 /Mixed_6d/branch7x7dbl_5/conv/Conv" -> "265 /Mixed_6d/branch7x7dbl_5/Relu" [label="[1, 192, 17, 17]", style=solid];
-"256 /Mixed_7c/AveragePool" -> "266 /Mixed_7c/branch_pool/conv/Conv/WithoutBiases" [label="[1, 2048, 8, 8]", style=solid];
-"257 /Mixed_7c/branch1x1/conv/Conv/WithoutBiases" -> "267 /Mixed_7c/branch1x1/conv/Conv" [label="[1, 320, 8, 8]", style=solid];
-"258 /Mixed_7c/branch3x3_1/conv/Conv/WithoutBiases" -> "268 /Mixed_7c/branch3x3_1/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"259 /Mixed_7c/branch3x3dbl_1/conv/Conv/WithoutBiases" -> "269 /Mixed_7c/branch3x3dbl_1/conv/Conv" [label="[1, 448, 8, 8]", style=solid];
-"260 /Mixed_7b/branch3x3_2a/conv/Conv" -> "270 /Mixed_7b/branch3x3_2a/Relu" [label="[1, 384, 8, 8]", style=solid];
-"261 /Mixed_7b/branch3x3_2b/conv/Conv" -> "271 /Mixed_7b/branch3x3_2b/Relu" [label="[1, 384, 8, 8]", style=solid];
-"262 /Mixed_7b/branch3x3dbl_2/conv/Conv" -> "272 /Mixed_7b/branch3x3dbl_2/Relu" [label="[1, 384, 8, 8]", style=solid];
-"263 /Mixed_7a/branch7x7x3_3/conv/Conv/WithoutBiases" -> "273 /Mixed_7a/branch7x7x3_3/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"264 /Mixed_6e/branch7x7dbl_4/conv/Conv" -> "274 /Mixed_6e/branch7x7dbl_4/Relu" [label="[1, 192, 17, 17]", style=solid];
-"265 /Mixed_6d/branch7x7dbl_5/Relu" -> "166 /Mixed_6d/Concat" [label="[1, 192, 17, 17]", style=solid];
-"266 /Mixed_7c/branch_pool/conv/Conv/WithoutBiases" -> "275 /Mixed_7c/branch_pool/conv/Conv" [label="[1, 192, 8, 8]", style=solid];
-"267 /Mixed_7c/branch1x1/conv/Conv" -> "276 /Mixed_7c/branch1x1/Relu" [label="[1, 320, 8, 8]", style=solid];
-"268 /Mixed_7c/branch3x3_1/conv/Conv" -> "277 /Mixed_7c/branch3x3_1/Relu" [label="[1, 384, 8, 8]", style=solid];
-"269 /Mixed_7c/branch3x3dbl_1/conv/Conv" -> "278 /Mixed_7c/branch3x3dbl_1/Relu" [label="[1, 448, 8, 8]", style=solid];
-"270 /Mixed_7b/branch3x3_2a/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 384, 8, 8]", style=solid];
-"271 /Mixed_7b/branch3x3_2b/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 384, 8, 8]", style=solid];
-"272 /Mixed_7b/branch3x3dbl_2/Relu" -> "279 /Mixed_7b/branch3x3dbl_3a/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"272 /Mixed_7b/branch3x3dbl_2/Relu" -> "280 /Mixed_7b/branch3x3dbl_3b/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"273 /Mixed_7a/branch7x7x3_3/conv/Conv" -> "281 /Mixed_7a/branch7x7x3_3/Relu" [label="[1, 192, 17, 17]", style=solid];
-"274 /Mixed_6e/branch7x7dbl_4/Relu" -> "282 /Mixed_6e/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"275 /Mixed_7c/branch_pool/conv/Conv" -> "283 /Mixed_7c/branch_pool/Relu" [label="[1, 192, 8, 8]", style=solid];
-"276 /Mixed_7c/branch1x1/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 320, 8, 8]", style=solid];
-"277 /Mixed_7c/branch3x3_1/Relu" -> "285 /Mixed_7c/branch3x3_2a/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"277 /Mixed_7c/branch3x3_1/Relu" -> "286 /Mixed_7c/branch3x3_2b/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"278 /Mixed_7c/branch3x3dbl_1/Relu" -> "287 /Mixed_7c/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[1, 448, 8, 8]", style=solid];
-"279 /Mixed_7b/branch3x3dbl_3a/conv/Conv/WithoutBiases" -> "288 /Mixed_7b/branch3x3dbl_3a/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"280 /Mixed_7b/branch3x3dbl_3b/conv/Conv/WithoutBiases" -> "289 /Mixed_7b/branch3x3dbl_3b/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"281 /Mixed_7a/branch7x7x3_3/Relu" -> "290 /Mixed_7a/branch7x7x3_4/conv/Conv/WithoutBiases" [label="[1, 192, 17, 17]", style=solid];
-"282 /Mixed_6e/branch7x7dbl_5/conv/Conv/WithoutBiases" -> "291 /Mixed_6e/branch7x7dbl_5/conv/Conv" [label="[1, 192, 17, 17]", style=solid];
-"283 /Mixed_7c/branch_pool/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 192, 8, 8]", style=solid];
-"284 /Mixed_7c/Concat" -> "292 /avgpool/GlobalAveragePool" [label="[1, 2048, 8, 8]", style=solid];
-"285 /Mixed_7c/branch3x3_2a/conv/Conv/WithoutBiases" -> "293 /Mixed_7c/branch3x3_2a/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"286 /Mixed_7c/branch3x3_2b/conv/Conv/WithoutBiases" -> "294 /Mixed_7c/branch3x3_2b/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"287 /Mixed_7c/branch3x3dbl_2/conv/Conv/WithoutBiases" -> "295 /Mixed_7c/branch3x3dbl_2/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"288 /Mixed_7b/branch3x3dbl_3a/conv/Conv" -> "296 /Mixed_7b/branch3x3dbl_3a/Relu" [label="[1, 384, 8, 8]", style=solid];
-"289 /Mixed_7b/branch3x3dbl_3b/conv/Conv" -> "297 /Mixed_7b/branch3x3dbl_3b/Relu" [label="[1, 384, 8, 8]", style=solid];
-"290 /Mixed_7a/branch7x7x3_4/conv/Conv/WithoutBiases" -> "298 /Mixed_7a/branch7x7x3_4/conv/Conv" [label="[1, 192, 8, 8]", style=solid];
-"291 /Mixed_6e/branch7x7dbl_5/conv/Conv" -> "299 /Mixed_6e/branch7x7dbl_5/Relu" [label="[1, 192, 17, 17]", style=solid];
-"292 /avgpool/GlobalAveragePool" -> "300 /Flatten" [label="[1, 2048, 1, 1]", style=solid];
-"293 /Mixed_7c/branch3x3_2a/conv/Conv" -> "301 /Mixed_7c/branch3x3_2a/Relu" [label="[1, 384, 8, 8]", style=solid];
-"294 /Mixed_7c/branch3x3_2b/conv/Conv" -> "302 /Mixed_7c/branch3x3_2b/Relu" [label="[1, 384, 8, 8]", style=solid];
-"295 /Mixed_7c/branch3x3dbl_2/conv/Conv" -> "303 /Mixed_7c/branch3x3dbl_2/Relu" [label="[1, 384, 8, 8]", style=solid];
-"296 /Mixed_7b/branch3x3dbl_3a/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 384, 8, 8]", style=solid];
-"297 /Mixed_7b/branch3x3dbl_3b/Relu" -> "248 /Mixed_7b/Concat" [label="[1, 384, 8, 8]", style=solid];
-"298 /Mixed_7a/branch7x7x3_4/conv/Conv" -> "304 /Mixed_7a/branch7x7x3_4/Relu" [label="[1, 192, 8, 8]", style=solid];
-"299 /Mixed_6e/branch7x7dbl_5/Relu" -> "198 /Mixed_6e/Concat" [label="[1, 192, 17, 17]", style=solid];
-"300 /Flatten" -> "305 /fc/Gemm/WithoutBiases" [label="[1, 2048]", style=solid];
-"301 /Mixed_7c/branch3x3_2a/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 384, 8, 8]", style=solid];
-"302 /Mixed_7c/branch3x3_2b/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 384, 8, 8]", style=solid];
-"303 /Mixed_7c/branch3x3dbl_2/Relu" -> "306 /Mixed_7c/branch3x3dbl_3a/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"303 /Mixed_7c/branch3x3dbl_2/Relu" -> "307 /Mixed_7c/branch3x3dbl_3b/conv/Conv/WithoutBiases" [label="[1, 384, 8, 8]", style=solid];
-"304 /Mixed_7a/branch7x7x3_4/Relu" -> "212 /Mixed_7a/Concat" [label="[1, 192, 8, 8]", style=solid];
-"305 /fc/Gemm/WithoutBiases" -> "308 prob" [label="[1, 1000]", style=solid];
-"306 /Mixed_7c/branch3x3dbl_3a/conv/Conv/WithoutBiases" -> "309 /Mixed_7c/branch3x3dbl_3a/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"307 /Mixed_7c/branch3x3dbl_3b/conv/Conv/WithoutBiases" -> "310 /Mixed_7c/branch3x3dbl_3b/conv/Conv" [label="[1, 384, 8, 8]", style=solid];
-"308 prob" -> "311 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"309 /Mixed_7c/branch3x3dbl_3a/conv/Conv" -> "312 /Mixed_7c/branch3x3dbl_3a/Relu" [label="[1, 384, 8, 8]", style=solid];
-"310 /Mixed_7c/branch3x3dbl_3b/conv/Conv" -> "313 /Mixed_7c/branch3x3dbl_3b/Relu" [label="[1, 384, 8, 8]", style=solid];
-"312 /Mixed_7c/branch3x3dbl_3a/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 384, 8, 8]", style=solid];
-"313 /Mixed_7c/branch3x3dbl_3b/Relu" -> "284 /Mixed_7c/Concat" [label="[1, 384, 8, 8]", style=solid];
-"314 Constant_4105" -> "308 prob" [label="[1, 1000]", style=solid];
-"315 fc.weight" -> "305 /fc/Gemm/WithoutBiases" [label="[1000, 2048]", style=solid];
-"316 Constant_1730" -> "300 /Flatten" [label="[2]", style=dashed];
-"317 Range_1726" -> "292 /avgpool/GlobalAveragePool" [label="[2]", style=dashed];
-"318 Reshape_1714" -> "275 /Mixed_7c/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"319 onnx^^Conv_1170" -> "266 /Mixed_7c/branch_pool/conv/Conv/WithoutBiases" [label="[192, 2048, 1, 1]", style=solid];
-"320 Reshape_1568" -> "238 /Mixed_7b/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"321 onnx^^Conv_1143" -> "229 /Mixed_7b/branch_pool/conv/Conv/WithoutBiases" [label="[192, 1280, 1, 1]", style=solid];
-"322 Reshape_1324" -> "189 /Mixed_6e/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"323 onnx^^Conv_1098" -> "181 /Mixed_6e/branch_pool/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"324 Reshape_1162" -> "158 /Mixed_6d/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"325 onnx^^Conv_1068" -> "151 /Mixed_6d/branch_pool/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"326 Reshape_1000" -> "130 /Mixed_6c/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"327 onnx^^Conv_1038" -> "123 /Mixed_6c/branch_pool/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"328 Reshape_838" -> "105 /Mixed_6b/branch_pool/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"329 onnx^^Conv_1008" -> "99 /Mixed_6b/branch_pool/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"330 Reshape_610" -> "71 /Mixed_5d/branch_pool/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"331 onnx^^Conv_966" -> "65 /Mixed_5d/branch_pool/conv/Conv/WithoutBiases" [label="[64, 288, 1, 1]", style=solid];
-"332 Reshape_496" -> "48 /Mixed_5c/branch_pool/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"333 onnx^^Conv_945" -> "42 /Mixed_5c/branch_pool/conv/Conv/WithoutBiases" [label="[64, 256, 1, 1]", style=solid];
-"334 Reshape_382" -> "28 /Mixed_5b/branch_pool/conv/Conv" [label="[1, 32, 1, 1]", style=solid];
-"335 onnx^^Conv_924" -> "24 /Mixed_5b/branch_pool/conv/Conv/WithoutBiases" [label="[32, 192, 1, 1]", style=solid];
-"336 Reshape_268" -> "17 /Conv2d_4a_3x3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"337 onnx^^Conv_903" -> "16 /Conv2d_4a_3x3/conv/Conv/WithoutBiases" [label="[192, 80, 3, 3]", style=solid];
-"338 Reshape_252" -> "14 /Conv2d_3b_1x1/conv/Conv" [label="[1, 80, 1, 1]", style=solid];
-"339 onnx^^Conv_900" -> "13 /Conv2d_3b_1x1/conv/Conv/WithoutBiases" [label="[80, 64, 1, 1]", style=solid];
-"340 Reshape_235" -> "10 /Conv2d_2b_3x3/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"341 onnx^^Conv_897" -> "9 /Conv2d_2b_3x3/conv/Conv/WithoutBiases" [label="[64, 32, 3, 3]", style=solid];
-"342 Reshape_219" -> "7 /Conv2d_2a_3x3/conv/Conv" [label="[1, 32, 1, 1]", style=solid];
-"343 onnx^^Conv_894" -> "6 /Conv2d_2a_3x3/conv/Conv/WithoutBiases" [label="[32, 32, 3, 3]", style=solid];
-"344 Reshape_203" -> "4 /Conv2d_1a_3x3/conv/Conv" [label="[1, 32, 1, 1]", style=solid];
-"345 Gather_4104" -> "3 /Conv2d_1a_3x3/conv/Conv/WithoutBiases" [label="[32, 3, 3, 3]", style=solid];
-"346 Gather_4101" -> "2 Divide_1751" [label="[1, 3, 1, 1]", style=solid];
-"347 Gather_4098" -> "1 Multiply_4031" [label="[1, 3, 1, 1]", style=solid];
-"348 Reshape_365" -> "57 /Mixed_5b/branch3x3dbl_3/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"349 onnx^^Conv_921" -> "52 /Mixed_5b/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[96, 96, 3, 3]", style=solid];
-"350 Reshape_349" -> "40 /Mixed_5b/branch3x3dbl_2/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"351 onnx^^Conv_918" -> "34 /Mixed_5b/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[96, 64, 3, 3]", style=solid];
-"352 Reshape_333" -> "26 /Mixed_5b/branch3x3dbl_1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"353 onnx^^Conv_915" -> "22 /Mixed_5b/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[64, 192, 1, 1]", style=solid];
-"354 Reshape_317" -> "41 /Mixed_5b/branch5x5_2/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"355 onnx^^Conv_912" -> "35 /Mixed_5b/branch5x5_2/conv/Conv/WithoutBiases" [label="[64, 48, 5, 5]", style=solid];
-"356 Reshape_301" -> "27 /Mixed_5b/branch5x5_1/conv/Conv" [label="[1, 48, 1, 1]", style=solid];
-"357 onnx^^Conv_909" -> "23 /Mixed_5b/branch5x5_1/conv/Conv/WithoutBiases" [label="[48, 192, 1, 1]", style=solid];
-"358 Reshape_285" -> "25 /Mixed_5b/branch1x1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"359 onnx^^Conv_906" -> "21 /Mixed_5b/branch1x1/conv/Conv/WithoutBiases" [label="[64, 192, 1, 1]", style=solid];
-"360 Reshape_479" -> "80 /Mixed_5c/branch3x3dbl_3/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"361 onnx^^Conv_942" -> "75 /Mixed_5c/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[96, 96, 3, 3]", style=solid];
-"362 Reshape_463" -> "62 /Mixed_5c/branch3x3dbl_2/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"363 onnx^^Conv_939" -> "55 /Mixed_5c/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[96, 64, 3, 3]", style=solid];
-"364 Reshape_447" -> "44 /Mixed_5c/branch3x3dbl_1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"365 onnx^^Conv_936" -> "38 /Mixed_5c/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[64, 256, 1, 1]", style=solid];
-"366 Reshape_431" -> "63 /Mixed_5c/branch5x5_2/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"367 onnx^^Conv_933" -> "56 /Mixed_5c/branch5x5_2/conv/Conv/WithoutBiases" [label="[64, 48, 5, 5]", style=solid];
-"368 Reshape_415" -> "45 /Mixed_5c/branch5x5_1/conv/Conv" [label="[1, 48, 1, 1]", style=solid];
-"369 onnx^^Conv_930" -> "39 /Mixed_5c/branch5x5_1/conv/Conv/WithoutBiases" [label="[48, 256, 1, 1]", style=solid];
-"370 Reshape_399" -> "43 /Mixed_5c/branch1x1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"371 onnx^^Conv_927" -> "37 /Mixed_5c/branch1x1/conv/Conv/WithoutBiases" [label="[64, 256, 1, 1]", style=solid];
-"372 Reshape_593" -> "104 /Mixed_5d/branch3x3dbl_3/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"373 onnx^^Conv_963" -> "98 /Mixed_5d/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[96, 96, 3, 3]", style=solid];
-"374 Reshape_577" -> "84 /Mixed_5d/branch3x3dbl_2/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"375 onnx^^Conv_960" -> "78 /Mixed_5d/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[96, 64, 3, 3]", style=solid];
-"376 Reshape_561" -> "67 /Mixed_5d/branch3x3dbl_1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"377 onnx^^Conv_957" -> "60 /Mixed_5d/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[64, 288, 1, 1]", style=solid];
-"378 Reshape_545" -> "85 /Mixed_5d/branch5x5_2/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"379 onnx^^Conv_954" -> "79 /Mixed_5d/branch5x5_2/conv/Conv/WithoutBiases" [label="[64, 48, 5, 5]", style=solid];
-"380 Reshape_529" -> "68 /Mixed_5d/branch5x5_1/conv/Conv" [label="[1, 48, 1, 1]", style=solid];
-"381 onnx^^Conv_951" -> "61 /Mixed_5d/branch5x5_1/conv/Conv/WithoutBiases" [label="[48, 288, 1, 1]", style=solid];
-"382 Reshape_513" -> "66 /Mixed_5d/branch1x1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"383 onnx^^Conv_948" -> "59 /Mixed_5d/branch1x1/conv/Conv/WithoutBiases" [label="[64, 288, 1, 1]", style=solid];
-"384 Reshape_675" -> "129 /Mixed_6a/branch3x3dbl_3/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"385 onnx^^Conv_978" -> "122 /Mixed_6a/branch3x3dbl_3/conv/Conv/WithoutBiases" [label="[96, 96, 3, 3]", style=solid];
-"386 Reshape_659" -> "109 /Mixed_6a/branch3x3dbl_2/conv/Conv" [label="[1, 96, 1, 1]", style=solid];
-"387 onnx^^Conv_975" -> "103 /Mixed_6a/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[96, 64, 3, 3]", style=solid];
-"388 Reshape_643" -> "89 /Mixed_6a/branch3x3dbl_1/conv/Conv" [label="[1, 64, 1, 1]", style=solid];
-"389 onnx^^Conv_972" -> "83 /Mixed_6a/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[64, 288, 1, 1]", style=solid];
-"390 Reshape_627" -> "88 /Mixed_6a/branch3x3/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"391 onnx^^Conv_969" -> "82 /Mixed_6a/branch3x3/conv/Conv/WithoutBiases" [label="[384, 288, 3, 3]", style=solid];
-"392 Reshape_821" -> "188 /Mixed_6b/branch7x7dbl_5/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"393 onnx^^Conv_1005" -> "180 /Mixed_6b/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[192, 128, 1, 7]", style=solid];
-"394 Reshape_805" -> "164 /Mixed_6b/branch7x7dbl_4/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"395 onnx^^Conv_1002" -> "157 /Mixed_6b/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[128, 128, 7, 1]", style=solid];
-"396 Reshape_789" -> "142 /Mixed_6b/branch7x7dbl_3/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"397 onnx^^Conv_999" -> "135 /Mixed_6b/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[128, 128, 1, 7]", style=solid];
-"398 Reshape_773" -> "121 /Mixed_6b/branch7x7dbl_2/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"399 onnx^^Conv_996" -> "114 /Mixed_6b/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[128, 128, 7, 1]", style=solid];
-"400 Reshape_757" -> "102 /Mixed_6b/branch7x7dbl_1/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"401 onnx^^Conv_993" -> "95 /Mixed_6b/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[128, 768, 1, 1]", style=solid];
-"402 Reshape_741" -> "141 /Mixed_6b/branch7x7_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"403 onnx^^Conv_990" -> "134 /Mixed_6b/branch7x7_3/conv/Conv/WithoutBiases" [label="[192, 128, 7, 1]", style=solid];
-"404 Reshape_725" -> "120 /Mixed_6b/branch7x7_2/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"405 onnx^^Conv_987" -> "113 /Mixed_6b/branch7x7_2/conv/Conv/WithoutBiases" [label="[128, 128, 1, 7]", style=solid];
-"406 Reshape_709" -> "101 /Mixed_6b/branch7x7_1/conv/Conv" [label="[1, 128, 1, 1]", style=solid];
-"407 onnx^^Conv_984" -> "94 /Mixed_6b/branch7x7_1/conv/Conv/WithoutBiases" [label="[128, 768, 1, 1]", style=solid];
-"408 Reshape_693" -> "100 /Mixed_6b/branch1x1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"409 onnx^^Conv_981" -> "93 /Mixed_6b/branch1x1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"410 Reshape_983" -> "218 /Mixed_6c/branch7x7dbl_5/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"411 onnx^^Conv_1035" -> "211 /Mixed_6c/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[192, 160, 1, 7]", style=solid];
-"412 Reshape_967" -> "195 /Mixed_6c/branch7x7dbl_4/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"413 onnx^^Conv_1032" -> "187 /Mixed_6c/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[160, 160, 7, 1]", style=solid];
-"414 Reshape_951" -> "170 /Mixed_6c/branch7x7dbl_3/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"415 onnx^^Conv_1029" -> "163 /Mixed_6c/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[160, 160, 1, 7]", style=solid];
-"416 Reshape_935" -> "148 /Mixed_6c/branch7x7dbl_2/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"417 onnx^^Conv_1026" -> "140 /Mixed_6c/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[160, 160, 7, 1]", style=solid];
-"418 Reshape_919" -> "126 /Mixed_6c/branch7x7dbl_1/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"419 onnx^^Conv_1023" -> "119 /Mixed_6c/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[160, 768, 1, 1]", style=solid];
-"420 Reshape_903" -> "169 /Mixed_6c/branch7x7_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"421 onnx^^Conv_1020" -> "162 /Mixed_6c/branch7x7_3/conv/Conv/WithoutBiases" [label="[192, 160, 7, 1]", style=solid];
-"422 Reshape_887" -> "147 /Mixed_6c/branch7x7_2/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"423 onnx^^Conv_1017" -> "139 /Mixed_6c/branch7x7_2/conv/Conv/WithoutBiases" [label="[160, 160, 1, 7]", style=solid];
-"424 Reshape_871" -> "125 /Mixed_6c/branch7x7_1/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"425 onnx^^Conv_1014" -> "118 /Mixed_6c/branch7x7_1/conv/Conv/WithoutBiases" [label="[160, 768, 1, 1]", style=solid];
-"426 Reshape_855" -> "124 /Mixed_6c/branch1x1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"427 onnx^^Conv_1011" -> "117 /Mixed_6c/branch1x1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"428 Reshape_1145" -> "255 /Mixed_6d/branch7x7dbl_5/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"429 onnx^^Conv_1065" -> "246 /Mixed_6d/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[192, 160, 1, 7]", style=solid];
-"430 Reshape_1129" -> "227 /Mixed_6d/branch7x7dbl_4/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"431 onnx^^Conv_1062" -> "217 /Mixed_6d/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[160, 160, 7, 1]", style=solid];
-"432 Reshape_1113" -> "202 /Mixed_6d/branch7x7dbl_3/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"433 onnx^^Conv_1059" -> "194 /Mixed_6d/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[160, 160, 1, 7]", style=solid];
-"434 Reshape_1097" -> "177 /Mixed_6d/branch7x7dbl_2/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"435 onnx^^Conv_1056" -> "168 /Mixed_6d/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[160, 160, 7, 1]", style=solid];
-"436 Reshape_1081" -> "154 /Mixed_6d/branch7x7dbl_1/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"437 onnx^^Conv_1053" -> "146 /Mixed_6d/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[160, 768, 1, 1]", style=solid];
-"438 Reshape_1065" -> "201 /Mixed_6d/branch7x7_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"439 onnx^^Conv_1050" -> "193 /Mixed_6d/branch7x7_3/conv/Conv/WithoutBiases" [label="[192, 160, 7, 1]", style=solid];
-"440 Reshape_1049" -> "176 /Mixed_6d/branch7x7_2/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"441 onnx^^Conv_1047" -> "167 /Mixed_6d/branch7x7_2/conv/Conv/WithoutBiases" [label="[160, 160, 1, 7]", style=solid];
-"442 Reshape_1033" -> "153 /Mixed_6d/branch7x7_1/conv/Conv" [label="[1, 160, 1, 1]", style=solid];
-"443 onnx^^Conv_1044" -> "145 /Mixed_6d/branch7x7_1/conv/Conv/WithoutBiases" [label="[160, 768, 1, 1]", style=solid];
-"444 Reshape_1017" -> "152 /Mixed_6d/branch1x1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"445 onnx^^Conv_1041" -> "144 /Mixed_6d/branch1x1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"446 Reshape_1307" -> "291 /Mixed_6e/branch7x7dbl_5/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"447 onnx^^Conv_1095" -> "282 /Mixed_6e/branch7x7dbl_5/conv/Conv/WithoutBiases" [label="[192, 192, 1, 7]", style=solid];
-"448 Reshape_1291" -> "264 /Mixed_6e/branch7x7dbl_4/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"449 onnx^^Conv_1092" -> "254 /Mixed_6e/branch7x7dbl_4/conv/Conv/WithoutBiases" [label="[192, 192, 7, 1]", style=solid];
-"450 Reshape_1275" -> "236 /Mixed_6e/branch7x7dbl_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"451 onnx^^Conv_1089" -> "226 /Mixed_6e/branch7x7dbl_3/conv/Conv/WithoutBiases" [label="[192, 192, 1, 7]", style=solid];
-"452 Reshape_1259" -> "208 /Mixed_6e/branch7x7dbl_2/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"453 onnx^^Conv_1086" -> "200 /Mixed_6e/branch7x7dbl_2/conv/Conv/WithoutBiases" [label="[192, 192, 7, 1]", style=solid];
-"454 Reshape_1243" -> "184 /Mixed_6e/branch7x7dbl_1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"455 onnx^^Conv_1083" -> "175 /Mixed_6e/branch7x7dbl_1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"456 Reshape_1227" -> "235 /Mixed_6e/branch7x7_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"457 onnx^^Conv_1080" -> "225 /Mixed_6e/branch7x7_3/conv/Conv/WithoutBiases" [label="[192, 192, 7, 1]", style=solid];
-"458 Reshape_1211" -> "207 /Mixed_6e/branch7x7_2/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"459 onnx^^Conv_1077" -> "199 /Mixed_6e/branch7x7_2/conv/Conv/WithoutBiases" [label="[192, 192, 1, 7]", style=solid];
-"460 Reshape_1195" -> "183 /Mixed_6e/branch7x7_1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"461 onnx^^Conv_1074" -> "174 /Mixed_6e/branch7x7_1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"462 Reshape_1179" -> "182 /Mixed_6e/branch1x1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"463 onnx^^Conv_1071" -> "173 /Mixed_6e/branch1x1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"464 Reshape_1421" -> "298 /Mixed_7a/branch7x7x3_4/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"465 onnx^^Conv_1116" -> "290 /Mixed_7a/branch7x7x3_4/conv/Conv/WithoutBiases" [label="[192, 192, 3, 3]", style=solid];
-"466 Reshape_1405" -> "273 /Mixed_7a/branch7x7x3_3/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"467 onnx^^Conv_1113" -> "263 /Mixed_7a/branch7x7x3_3/conv/Conv/WithoutBiases" [label="[192, 192, 7, 1]", style=solid];
-"468 Reshape_1389" -> "243 /Mixed_7a/branch7x7x3_2/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"469 onnx^^Conv_1110" -> "234 /Mixed_7a/branch7x7x3_2/conv/Conv/WithoutBiases" [label="[192, 192, 1, 7]", style=solid];
-"470 Reshape_1373" -> "214 /Mixed_7a/branch7x7x3_1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"471 onnx^^Conv_1107" -> "206 /Mixed_7a/branch7x7x3_1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"472 Reshape_1357" -> "242 /Mixed_7a/branch3x3_2/conv/Conv" [label="[1, 320, 1, 1]", style=solid];
-"473 onnx^^Conv_1104" -> "233 /Mixed_7a/branch3x3_2/conv/Conv/WithoutBiases" [label="[320, 192, 3, 3]", style=solid];
-"474 Reshape_1341" -> "213 /Mixed_7a/branch3x3_1/conv/Conv" [label="[1, 192, 1, 1]", style=solid];
-"475 onnx^^Conv_1101" -> "205 /Mixed_7a/branch3x3_1/conv/Conv/WithoutBiases" [label="[192, 768, 1, 1]", style=solid];
-"476 Reshape_1551" -> "289 /Mixed_7b/branch3x3dbl_3b/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"477 onnx^^Conv_1140" -> "280 /Mixed_7b/branch3x3dbl_3b/conv/Conv/WithoutBiases" [label="[384, 384, 3, 1]", style=solid];
-"478 Reshape_1519" -> "262 /Mixed_7b/branch3x3dbl_2/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"479 onnx^^Conv_1134" -> "251 /Mixed_7b/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[384, 448, 3, 3]", style=solid];
-"480 Reshape_1503" -> "232 /Mixed_7b/branch3x3dbl_1/conv/Conv" [label="[1, 448, 1, 1]", style=solid];
-"481 onnx^^Conv_1131" -> "222 /Mixed_7b/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[448, 1280, 1, 1]", style=solid];
-"482 Reshape_1535" -> "288 /Mixed_7b/branch3x3dbl_3a/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"483 onnx^^Conv_1137" -> "279 /Mixed_7b/branch3x3dbl_3a/conv/Conv/WithoutBiases" [label="[384, 384, 1, 3]", style=solid];
-"484 Reshape_1487" -> "261 /Mixed_7b/branch3x3_2b/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"485 onnx^^Conv_1128" -> "250 /Mixed_7b/branch3x3_2b/conv/Conv/WithoutBiases" [label="[384, 384, 3, 1]", style=solid];
-"486 Reshape_1455" -> "231 /Mixed_7b/branch3x3_1/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"487 onnx^^Conv_1122" -> "221 /Mixed_7b/branch3x3_1/conv/Conv/WithoutBiases" [label="[384, 1280, 1, 1]", style=solid];
-"488 Reshape_1471" -> "260 /Mixed_7b/branch3x3_2a/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"489 onnx^^Conv_1125" -> "249 /Mixed_7b/branch3x3_2a/conv/Conv/WithoutBiases" [label="[384, 384, 1, 3]", style=solid];
-"490 Reshape_1439" -> "230 /Mixed_7b/branch1x1/conv/Conv" [label="[1, 320, 1, 1]", style=solid];
-"491 onnx^^Conv_1119" -> "220 /Mixed_7b/branch1x1/conv/Conv/WithoutBiases" [label="[320, 1280, 1, 1]", style=solid];
-"492 Reshape_1697" -> "310 /Mixed_7c/branch3x3dbl_3b/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"493 onnx^^Conv_1167" -> "307 /Mixed_7c/branch3x3dbl_3b/conv/Conv/WithoutBiases" [label="[384, 384, 3, 1]", style=solid];
-"494 Reshape_1665" -> "295 /Mixed_7c/branch3x3dbl_2/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"495 onnx^^Conv_1161" -> "287 /Mixed_7c/branch3x3dbl_2/conv/Conv/WithoutBiases" [label="[384, 448, 3, 3]", style=solid];
-"496 Reshape_1649" -> "269 /Mixed_7c/branch3x3dbl_1/conv/Conv" [label="[1, 448, 1, 1]", style=solid];
-"497 onnx^^Conv_1158" -> "259 /Mixed_7c/branch3x3dbl_1/conv/Conv/WithoutBiases" [label="[448, 2048, 1, 1]", style=solid];
-"498 Reshape_1681" -> "309 /Mixed_7c/branch3x3dbl_3a/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"499 onnx^^Conv_1164" -> "306 /Mixed_7c/branch3x3dbl_3a/conv/Conv/WithoutBiases" [label="[384, 384, 1, 3]", style=solid];
-"500 Reshape_1633" -> "294 /Mixed_7c/branch3x3_2b/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"501 onnx^^Conv_1155" -> "286 /Mixed_7c/branch3x3_2b/conv/Conv/WithoutBiases" [label="[384, 384, 3, 1]", style=solid];
-"502 Reshape_1601" -> "268 /Mixed_7c/branch3x3_1/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"503 onnx^^Conv_1149" -> "258 /Mixed_7c/branch3x3_1/conv/Conv/WithoutBiases" [label="[384, 2048, 1, 1]", style=solid];
-"504 Reshape_1617" -> "293 /Mixed_7c/branch3x3_2a/conv/Conv" [label="[1, 384, 1, 1]", style=solid];
-"505 onnx^^Conv_1152" -> "285 /Mixed_7c/branch3x3_2a/conv/Conv/WithoutBiases" [label="[384, 384, 1, 3]", style=solid];
-"506 Reshape_1585" -> "267 /Mixed_7c/branch1x1/conv/Conv" [label="[1, 320, 1, 1]", style=solid];
-"507 onnx^^Conv_1146" -> "257 /Mixed_7c/branch1x1/conv/Conv/WithoutBiases" [label="[320, 2048, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v2-pytorch.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v2-pytorch.dot
deleted file mode 100644
index 32c7ca54b45..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v2-pytorch.dot
+++ /dev/null
@@ -1,545 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_5095" [id=1, type=Multiply];
-"2 Divide_1885" [id=2, type=Add];
-"3 /features/features.0/features.0.0/Conv/WithoutBiases" [id=3, type=Convolution];
-"4 /features/features.0/features.0.0/Conv" [id=4, type=Add];
-"5 /features/features.0/features.0.2/Clip" [id=5, type=Clamp];
-"6 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=6, type=GroupConvolution];
-"7 /features/features.1/conv/conv.0/conv.0.0/Conv" [id=7, type=Add];
-"8 /features/features.1/conv/conv.0/conv.0.2/Clip" [id=8, type=Clamp];
-"9 /features/features.1/conv/conv.1/Conv/WithoutBiases" [id=9, type=Convolution];
-"10 /features/features.1/conv/conv.1/Conv" [id=10, type=Add];
-"11 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=11, type=Convolution];
-"12 /features/features.2/conv/conv.0/conv.0.0/Conv" [id=12, type=Add];
-"13 /features/features.2/conv/conv.0/conv.0.2/Clip" [id=13, type=Clamp];
-"14 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=14, type=GroupConvolution];
-"15 /features/features.2/conv/conv.1/conv.1.0/Conv" [id=15, type=Add];
-"16 /features/features.2/conv/conv.1/conv.1.2/Clip" [id=16, type=Clamp];
-"17 /features/features.2/conv/conv.2/Conv/WithoutBiases" [id=17, type=Convolution];
-"18 /features/features.2/conv/conv.2/Conv" [id=18, type=Add];
-"19 /features/features.3/Add" [id=19, type=Add];
-"20 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=20, type=Convolution];
-"21 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=21, type=Convolution];
-"22 /features/features.3/conv/conv.0/conv.0.0/Conv" [id=22, type=Add];
-"23 /features/features.4/conv/conv.0/conv.0.0/Conv" [id=23, type=Add];
-"24 /features/features.3/conv/conv.0/conv.0.2/Clip" [id=24, type=Clamp];
-"25 /features/features.4/conv/conv.0/conv.0.2/Clip" [id=25, type=Clamp];
-"26 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=26, type=GroupConvolution];
-"27 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=27, type=GroupConvolution];
-"28 /features/features.3/conv/conv.1/conv.1.0/Conv" [id=28, type=Add];
-"29 /features/features.4/conv/conv.1/conv.1.0/Conv" [id=29, type=Add];
-"30 /features/features.3/conv/conv.1/conv.1.2/Clip" [id=30, type=Clamp];
-"31 /features/features.4/conv/conv.1/conv.1.2/Clip" [id=31, type=Clamp];
-"32 /features/features.3/conv/conv.2/Conv/WithoutBiases" [id=32, type=Convolution];
-"33 /features/features.4/conv/conv.2/Conv/WithoutBiases" [id=33, type=Convolution];
-"34 /features/features.3/conv/conv.2/Conv" [id=34, type=Add];
-"35 /features/features.4/conv/conv.2/Conv" [id=35, type=Add];
-"36 /features/features.5/Add" [id=36, type=Add];
-"37 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=37, type=Convolution];
-"38 /features/features.6/Add" [id=38, type=Add];
-"39 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=39, type=Convolution];
-"40 /features/features.5/conv/conv.0/conv.0.0/Conv" [id=40, type=Add];
-"41 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=41, type=Convolution];
-"42 /features/features.6/conv/conv.0/conv.0.0/Conv" [id=42, type=Add];
-"43 /features/features.5/conv/conv.0/conv.0.2/Clip" [id=43, type=Clamp];
-"44 /features/features.7/conv/conv.0/conv.0.0/Conv" [id=44, type=Add];
-"45 /features/features.6/conv/conv.0/conv.0.2/Clip" [id=45, type=Clamp];
-"46 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=46, type=GroupConvolution];
-"47 /features/features.7/conv/conv.0/conv.0.2/Clip" [id=47, type=Clamp];
-"48 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=48, type=GroupConvolution];
-"49 /features/features.5/conv/conv.1/conv.1.0/Conv" [id=49, type=Add];
-"50 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=50, type=GroupConvolution];
-"51 /features/features.6/conv/conv.1/conv.1.0/Conv" [id=51, type=Add];
-"52 /features/features.5/conv/conv.1/conv.1.2/Clip" [id=52, type=Clamp];
-"53 /features/features.7/conv/conv.1/conv.1.0/Conv" [id=53, type=Add];
-"54 /features/features.6/conv/conv.1/conv.1.2/Clip" [id=54, type=Clamp];
-"55 /features/features.5/conv/conv.2/Conv/WithoutBiases" [id=55, type=Convolution];
-"56 /features/features.7/conv/conv.1/conv.1.2/Clip" [id=56, type=Clamp];
-"57 /features/features.6/conv/conv.2/Conv/WithoutBiases" [id=57, type=Convolution];
-"58 /features/features.5/conv/conv.2/Conv" [id=58, type=Add];
-"59 /features/features.7/conv/conv.2/Conv/WithoutBiases" [id=59, type=Convolution];
-"60 /features/features.6/conv/conv.2/Conv" [id=60, type=Add];
-"61 /features/features.7/conv/conv.2/Conv" [id=61, type=Add];
-"62 /features/features.8/Add" [id=62, type=Add];
-"63 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=63, type=Convolution];
-"64 /features/features.9/Add" [id=64, type=Add];
-"65 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=65, type=Convolution];
-"66 /features/features.8/conv/conv.0/conv.0.0/Conv" [id=66, type=Add];
-"67 /features/features.10/Add" [id=67, type=Add];
-"68 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=68, type=Convolution];
-"69 /features/features.9/conv/conv.0/conv.0.0/Conv" [id=69, type=Add];
-"70 /features/features.8/conv/conv.0/conv.0.2/Clip" [id=70, type=Clamp];
-"71 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=71, type=Convolution];
-"72 /features/features.10/conv/conv.0/conv.0.0/Conv" [id=72, type=Add];
-"73 /features/features.9/conv/conv.0/conv.0.2/Clip" [id=73, type=Clamp];
-"74 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=74, type=GroupConvolution];
-"75 /features/features.11/conv/conv.0/conv.0.0/Conv" [id=75, type=Add];
-"76 /features/features.10/conv/conv.0/conv.0.2/Clip" [id=76, type=Clamp];
-"77 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=77, type=GroupConvolution];
-"78 /features/features.8/conv/conv.1/conv.1.0/Conv" [id=78, type=Add];
-"79 /features/features.11/conv/conv.0/conv.0.2/Clip" [id=79, type=Clamp];
-"80 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=80, type=GroupConvolution];
-"81 /features/features.9/conv/conv.1/conv.1.0/Conv" [id=81, type=Add];
-"82 /features/features.8/conv/conv.1/conv.1.2/Clip" [id=82, type=Clamp];
-"83 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=83, type=GroupConvolution];
-"84 /features/features.10/conv/conv.1/conv.1.0/Conv" [id=84, type=Add];
-"85 /features/features.9/conv/conv.1/conv.1.2/Clip" [id=85, type=Clamp];
-"86 /features/features.8/conv/conv.2/Conv/WithoutBiases" [id=86, type=Convolution];
-"87 /features/features.11/conv/conv.1/conv.1.0/Conv" [id=87, type=Add];
-"88 /features/features.10/conv/conv.1/conv.1.2/Clip" [id=88, type=Clamp];
-"89 /features/features.9/conv/conv.2/Conv/WithoutBiases" [id=89, type=Convolution];
-"90 /features/features.8/conv/conv.2/Conv" [id=90, type=Add];
-"91 /features/features.11/conv/conv.1/conv.1.2/Clip" [id=91, type=Clamp];
-"92 /features/features.10/conv/conv.2/Conv/WithoutBiases" [id=92, type=Convolution];
-"93 /features/features.9/conv/conv.2/Conv" [id=93, type=Add];
-"94 /features/features.11/conv/conv.2/Conv/WithoutBiases" [id=94, type=Convolution];
-"95 /features/features.10/conv/conv.2/Conv" [id=95, type=Add];
-"96 /features/features.11/conv/conv.2/Conv" [id=96, type=Add];
-"97 /features/features.12/Add" [id=97, type=Add];
-"98 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=98, type=Convolution];
-"99 /features/features.13/Add" [id=99, type=Add];
-"100 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=100, type=Convolution];
-"101 /features/features.12/conv/conv.0/conv.0.0/Conv" [id=101, type=Add];
-"102 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=102, type=Convolution];
-"103 /features/features.13/conv/conv.0/conv.0.0/Conv" [id=103, type=Add];
-"104 /features/features.12/conv/conv.0/conv.0.2/Clip" [id=104, type=Clamp];
-"105 /features/features.14/conv/conv.0/conv.0.0/Conv" [id=105, type=Add];
-"106 /features/features.13/conv/conv.0/conv.0.2/Clip" [id=106, type=Clamp];
-"107 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=107, type=GroupConvolution];
-"108 /features/features.14/conv/conv.0/conv.0.2/Clip" [id=108, type=Clamp];
-"109 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=109, type=GroupConvolution];
-"110 /features/features.12/conv/conv.1/conv.1.0/Conv" [id=110, type=Add];
-"111 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=111, type=GroupConvolution];
-"112 /features/features.13/conv/conv.1/conv.1.0/Conv" [id=112, type=Add];
-"113 /features/features.12/conv/conv.1/conv.1.2/Clip" [id=113, type=Clamp];
-"114 /features/features.14/conv/conv.1/conv.1.0/Conv" [id=114, type=Add];
-"115 /features/features.13/conv/conv.1/conv.1.2/Clip" [id=115, type=Clamp];
-"116 /features/features.12/conv/conv.2/Conv/WithoutBiases" [id=116, type=Convolution];
-"117 /features/features.14/conv/conv.1/conv.1.2/Clip" [id=117, type=Clamp];
-"118 /features/features.13/conv/conv.2/Conv/WithoutBiases" [id=118, type=Convolution];
-"119 /features/features.12/conv/conv.2/Conv" [id=119, type=Add];
-"120 /features/features.14/conv/conv.2/Conv/WithoutBiases" [id=120, type=Convolution];
-"121 /features/features.13/conv/conv.2/Conv" [id=121, type=Add];
-"122 /features/features.14/conv/conv.2/Conv" [id=122, type=Add];
-"123 /features/features.15/Add" [id=123, type=Add];
-"124 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=124, type=Convolution];
-"125 /features/features.16/Add" [id=125, type=Add];
-"126 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=126, type=Convolution];
-"127 /features/features.15/conv/conv.0/conv.0.0/Conv" [id=127, type=Add];
-"128 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=128, type=Convolution];
-"129 /features/features.16/conv/conv.0/conv.0.0/Conv" [id=129, type=Add];
-"130 /features/features.15/conv/conv.0/conv.0.2/Clip" [id=130, type=Clamp];
-"131 /features/features.17/conv/conv.0/conv.0.0/Conv" [id=131, type=Add];
-"132 /features/features.16/conv/conv.0/conv.0.2/Clip" [id=132, type=Clamp];
-"133 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=133, type=GroupConvolution];
-"134 /features/features.17/conv/conv.0/conv.0.2/Clip" [id=134, type=Clamp];
-"135 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=135, type=GroupConvolution];
-"136 /features/features.15/conv/conv.1/conv.1.0/Conv" [id=136, type=Add];
-"137 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=137, type=GroupConvolution];
-"138 /features/features.16/conv/conv.1/conv.1.0/Conv" [id=138, type=Add];
-"139 /features/features.15/conv/conv.1/conv.1.2/Clip" [id=139, type=Clamp];
-"140 /features/features.17/conv/conv.1/conv.1.0/Conv" [id=140, type=Add];
-"141 /features/features.16/conv/conv.1/conv.1.2/Clip" [id=141, type=Clamp];
-"142 /features/features.15/conv/conv.2/Conv/WithoutBiases" [id=142, type=Convolution];
-"143 /features/features.17/conv/conv.1/conv.1.2/Clip" [id=143, type=Clamp];
-"144 /features/features.16/conv/conv.2/Conv/WithoutBiases" [id=144, type=Convolution];
-"145 /features/features.15/conv/conv.2/Conv" [id=145, type=Add];
-"146 /features/features.17/conv/conv.2/Conv/WithoutBiases" [id=146, type=Convolution];
-"147 /features/features.16/conv/conv.2/Conv" [id=147, type=Add];
-"148 /features/features.17/conv/conv.2/Conv" [id=148, type=Add];
-"149 /features/features.18/features.18.0/Conv/WithoutBiases" [id=149, type=Convolution];
-"150 /features/features.18/features.18.0/Conv" [id=150, type=Add];
-"151 /features/features.18/features.18.2/Clip" [id=151, type=Clamp];
-"152 /GlobalAveragePool" [id=152, type=ReduceMean];
-"153 /Flatten" [id=153, type=Reshape];
-"154 /classifier/classifier.1/Gemm/WithoutBiases" [id=154, type=MatMul];
-"155 prob" [id=155, type=Add];
-"156 prob/sink_port_0" [id=156, type=Result];
-"157 Constant_5169" [id=157, type=Constant];
-"158 classifier.1.weight" [id=158, type=Constant];
-"159 Constant_1864" [id=159, type=Constant];
-"160 Range_1860" [id=160, type=Constant];
-"161 Reshape_1846" [id=161, type=Constant];
-"162 onnx^^Conv_691" [id=162, label="162 onnx::Conv_691", type=Constant];
-"163 Reshape_1831" [id=163, type=Constant];
-"164 onnx^^Conv_688" [id=164, label="164 onnx::Conv_688", type=Constant];
-"165 Reshape_1812" [id=165, type=Constant];
-"166 Reshape_1760" [id=166, type=Constant];
-"167 Reshape_1745" [id=167, type=Constant];
-"168 onnx^^Conv_682" [id=168, label="168 onnx::Conv_682", type=Constant];
-"169 Reshape_1729" [id=169, type=Constant];
-"170 onnx^^Conv_679" [id=170, label="170 onnx::Conv_679", type=Constant];
-"171 Reshape_1710" [id=171, type=Constant];
-"172 Reshape_1658" [id=172, type=Constant];
-"173 Reshape_1643" [id=173, type=Constant];
-"174 onnx^^Conv_673" [id=174, label="174 onnx::Conv_673", type=Constant];
-"175 Reshape_1627" [id=175, type=Constant];
-"176 onnx^^Conv_670" [id=176, label="176 onnx::Conv_670", type=Constant];
-"177 Reshape_1608" [id=177, type=Constant];
-"178 Reshape_1556" [id=178, type=Constant];
-"179 Reshape_1541" [id=179, type=Constant];
-"180 onnx^^Conv_664" [id=180, label="180 onnx::Conv_664", type=Constant];
-"181 Reshape_1526" [id=181, type=Constant];
-"182 onnx^^Conv_661" [id=182, label="182 onnx::Conv_661", type=Constant];
-"183 Reshape_1507" [id=183, type=Constant];
-"184 Reshape_1455" [id=184, type=Constant];
-"185 Reshape_1440" [id=185, type=Constant];
-"186 onnx^^Conv_655" [id=186, label="186 onnx::Conv_655", type=Constant];
-"187 Reshape_1424" [id=187, type=Constant];
-"188 onnx^^Conv_652" [id=188, label="188 onnx::Conv_652", type=Constant];
-"189 Reshape_1405" [id=189, type=Constant];
-"190 Reshape_1353" [id=190, type=Constant];
-"191 Reshape_1338" [id=191, type=Constant];
-"192 onnx^^Conv_646" [id=192, label="192 onnx::Conv_646", type=Constant];
-"193 Reshape_1322" [id=193, type=Constant];
-"194 onnx^^Conv_643" [id=194, label="194 onnx::Conv_643", type=Constant];
-"195 Reshape_1303" [id=195, type=Constant];
-"196 Reshape_1251" [id=196, type=Constant];
-"197 Reshape_1236" [id=197, type=Constant];
-"198 onnx^^Conv_637" [id=198, label="198 onnx::Conv_637", type=Constant];
-"199 Reshape_1221" [id=199, type=Constant];
-"200 onnx^^Conv_634" [id=200, label="200 onnx::Conv_634", type=Constant];
-"201 Reshape_1202" [id=201, type=Constant];
-"202 Reshape_1150" [id=202, type=Constant];
-"203 Reshape_1135" [id=203, type=Constant];
-"204 onnx^^Conv_628" [id=204, label="204 onnx::Conv_628", type=Constant];
-"205 Reshape_1119" [id=205, type=Constant];
-"206 onnx^^Conv_625" [id=206, label="206 onnx::Conv_625", type=Constant];
-"207 Reshape_1100" [id=207, type=Constant];
-"208 Reshape_1048" [id=208, type=Constant];
-"209 Reshape_1033" [id=209, type=Constant];
-"210 onnx^^Conv_619" [id=210, label="210 onnx::Conv_619", type=Constant];
-"211 Reshape_1017" [id=211, type=Constant];
-"212 onnx^^Conv_616" [id=212, label="212 onnx::Conv_616", type=Constant];
-"213 Reshape_998" [id=213, type=Constant];
-"214 Reshape_946" [id=214, type=Constant];
-"215 Reshape_931" [id=215, type=Constant];
-"216 onnx^^Conv_610" [id=216, label="216 onnx::Conv_610", type=Constant];
-"217 Reshape_915" [id=217, type=Constant];
-"218 onnx^^Conv_607" [id=218, label="218 onnx::Conv_607", type=Constant];
-"219 Reshape_896" [id=219, type=Constant];
-"220 Reshape_844" [id=220, type=Constant];
-"221 Reshape_829" [id=221, type=Constant];
-"222 onnx^^Conv_601" [id=222, label="222 onnx::Conv_601", type=Constant];
-"223 Reshape_814" [id=223, type=Constant];
-"224 onnx^^Conv_598" [id=224, label="224 onnx::Conv_598", type=Constant];
-"225 Reshape_795" [id=225, type=Constant];
-"226 Reshape_743" [id=226, type=Constant];
-"227 Reshape_728" [id=227, type=Constant];
-"228 onnx^^Conv_592" [id=228, label="228 onnx::Conv_592", type=Constant];
-"229 Reshape_712" [id=229, type=Constant];
-"230 onnx^^Conv_589" [id=230, label="230 onnx::Conv_589", type=Constant];
-"231 Reshape_693" [id=231, type=Constant];
-"232 Reshape_641" [id=232, type=Constant];
-"233 Reshape_626" [id=233, type=Constant];
-"234 onnx^^Conv_583" [id=234, label="234 onnx::Conv_583", type=Constant];
-"235 Reshape_610" [id=235, type=Constant];
-"236 onnx^^Conv_580" [id=236, label="236 onnx::Conv_580", type=Constant];
-"237 Reshape_591" [id=237, type=Constant];
-"238 Reshape_539" [id=238, type=Constant];
-"239 Reshape_524" [id=239, type=Constant];
-"240 onnx^^Conv_574" [id=240, label="240 onnx::Conv_574", type=Constant];
-"241 Reshape_509" [id=241, type=Constant];
-"242 onnx^^Conv_571" [id=242, label="242 onnx::Conv_571", type=Constant];
-"243 Reshape_490" [id=243, type=Constant];
-"244 Reshape_438" [id=244, type=Constant];
-"245 Reshape_423" [id=245, type=Constant];
-"246 onnx^^Conv_565" [id=246, label="246 onnx::Conv_565", type=Constant];
-"247 Reshape_407" [id=247, type=Constant];
-"248 onnx^^Conv_562" [id=248, label="248 onnx::Conv_562", type=Constant];
-"249 Reshape_388" [id=249, type=Constant];
-"250 Reshape_336" [id=250, type=Constant];
-"251 Reshape_321" [id=251, type=Constant];
-"252 onnx^^Conv_556" [id=252, label="252 onnx::Conv_556", type=Constant];
-"253 Reshape_306" [id=253, type=Constant];
-"254 onnx^^Conv_553" [id=254, label="254 onnx::Conv_553", type=Constant];
-"255 Reshape_287" [id=255, type=Constant];
-"256 Reshape_235" [id=256, type=Constant];
-"257 Reshape_220" [id=257, type=Constant];
-"258 onnx^^Conv_547" [id=258, label="258 onnx::Conv_547", type=Constant];
-"259 Reshape_205" [id=259, type=Constant];
-"260 onnx^^Conv_544" [id=260, label="260 onnx::Conv_544", type=Constant];
-"261 Reshape_186" [id=261, type=Constant];
-"262 Reshape_134" [id=262, type=Constant];
-"263 Reshape_119" [id=263, type=Constant];
-"264 Gather_5168" [id=264, type=Constant];
-"265 Gather_5165" [id=265, type=Constant];
-"266 Gather_5162" [id=266, type=Constant];
-"0 data" -> "1 Multiply_5095" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_5095" -> "2 Divide_1885" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_1885" -> "3 /features/features.0/features.0.0/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"3 /features/features.0/features.0.0/Conv/WithoutBiases" -> "4 /features/features.0/features.0.0/Conv" [label="[1, 32, 112, 112]", style=solid];
-"4 /features/features.0/features.0.0/Conv" -> "5 /features/features.0/features.0.2/Clip" [label="[1, 32, 112, 112]", style=solid];
-"5 /features/features.0/features.0.2/Clip" -> "6 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 112, 112]", style=solid];
-"6 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "7 /features/features.1/conv/conv.0/conv.0.0/Conv" [label="[1, 32, 112, 112]", style=solid];
-"7 /features/features.1/conv/conv.0/conv.0.0/Conv" -> "8 /features/features.1/conv/conv.0/conv.0.2/Clip" [label="[1, 32, 112, 112]", style=solid];
-"8 /features/features.1/conv/conv.0/conv.0.2/Clip" -> "9 /features/features.1/conv/conv.1/Conv/WithoutBiases" [label="[1, 32, 112, 112]", style=solid];
-"9 /features/features.1/conv/conv.1/Conv/WithoutBiases" -> "10 /features/features.1/conv/conv.1/Conv" [label="[1, 16, 112, 112]", style=solid];
-"10 /features/features.1/conv/conv.1/Conv" -> "11 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 16, 112, 112]", style=solid];
-"11 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "12 /features/features.2/conv/conv.0/conv.0.0/Conv" [label="[1, 96, 112, 112]", style=solid];
-"12 /features/features.2/conv/conv.0/conv.0.0/Conv" -> "13 /features/features.2/conv/conv.0/conv.0.2/Clip" [label="[1, 96, 112, 112]", style=solid];
-"13 /features/features.2/conv/conv.0/conv.0.2/Clip" -> "14 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 96, 112, 112]", style=solid];
-"14 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "15 /features/features.2/conv/conv.1/conv.1.0/Conv" [label="[1, 96, 56, 56]", style=solid];
-"15 /features/features.2/conv/conv.1/conv.1.0/Conv" -> "16 /features/features.2/conv/conv.1/conv.1.2/Clip" [label="[1, 96, 56, 56]", style=solid];
-"16 /features/features.2/conv/conv.1/conv.1.2/Clip" -> "17 /features/features.2/conv/conv.2/Conv/WithoutBiases" [label="[1, 96, 56, 56]", style=solid];
-"17 /features/features.2/conv/conv.2/Conv/WithoutBiases" -> "18 /features/features.2/conv/conv.2/Conv" [label="[1, 24, 56, 56]", style=solid];
-"18 /features/features.2/conv/conv.2/Conv" -> "19 /features/features.3/Add" [label="[1, 24, 56, 56]", style=solid];
-"18 /features/features.2/conv/conv.2/Conv" -> "20 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 24, 56, 56]", style=solid];
-"19 /features/features.3/Add" -> "21 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 24, 56, 56]", style=solid];
-"20 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "22 /features/features.3/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"21 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "23 /features/features.4/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"22 /features/features.3/conv/conv.0/conv.0.0/Conv" -> "24 /features/features.3/conv/conv.0/conv.0.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"23 /features/features.4/conv/conv.0/conv.0.0/Conv" -> "25 /features/features.4/conv/conv.0/conv.0.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"24 /features/features.3/conv/conv.0/conv.0.2/Clip" -> "26 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"25 /features/features.4/conv/conv.0/conv.0.2/Clip" -> "27 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"26 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "28 /features/features.3/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"27 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "29 /features/features.4/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 28, 28]", style=solid];
-"28 /features/features.3/conv/conv.1/conv.1.0/Conv" -> "30 /features/features.3/conv/conv.1/conv.1.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"29 /features/features.4/conv/conv.1/conv.1.0/Conv" -> "31 /features/features.4/conv/conv.1/conv.1.2/Clip" [label="[1, 144, 28, 28]", style=solid];
-"30 /features/features.3/conv/conv.1/conv.1.2/Clip" -> "32 /features/features.3/conv/conv.2/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"31 /features/features.4/conv/conv.1/conv.1.2/Clip" -> "33 /features/features.4/conv/conv.2/Conv/WithoutBiases" [label="[1, 144, 28, 28]", style=solid];
-"32 /features/features.3/conv/conv.2/Conv/WithoutBiases" -> "34 /features/features.3/conv/conv.2/Conv" [label="[1, 24, 56, 56]", style=solid];
-"33 /features/features.4/conv/conv.2/Conv/WithoutBiases" -> "35 /features/features.4/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"34 /features/features.3/conv/conv.2/Conv" -> "19 /features/features.3/Add" [label="[1, 24, 56, 56]", style=solid];
-"35 /features/features.4/conv/conv.2/Conv" -> "36 /features/features.5/Add" [label="[1, 32, 28, 28]", style=solid];
-"35 /features/features.4/conv/conv.2/Conv" -> "37 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"36 /features/features.5/Add" -> "38 /features/features.6/Add" [label="[1, 32, 28, 28]", style=solid];
-"36 /features/features.5/Add" -> "39 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"37 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "40 /features/features.5/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"38 /features/features.6/Add" -> "41 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"39 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "42 /features/features.6/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"40 /features/features.5/conv/conv.0/conv.0.0/Conv" -> "43 /features/features.5/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"41 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "44 /features/features.7/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"42 /features/features.6/conv/conv.0/conv.0.0/Conv" -> "45 /features/features.6/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"43 /features/features.5/conv/conv.0/conv.0.2/Clip" -> "46 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"44 /features/features.7/conv/conv.0/conv.0.0/Conv" -> "47 /features/features.7/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"45 /features/features.6/conv/conv.0/conv.0.2/Clip" -> "48 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"46 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "49 /features/features.5/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"47 /features/features.7/conv/conv.0/conv.0.2/Clip" -> "50 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"48 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "51 /features/features.6/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"49 /features/features.5/conv/conv.1/conv.1.0/Conv" -> "52 /features/features.5/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"50 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "53 /features/features.7/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 14, 14]", style=solid];
-"51 /features/features.6/conv/conv.1/conv.1.0/Conv" -> "54 /features/features.6/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"52 /features/features.5/conv/conv.1/conv.1.2/Clip" -> "55 /features/features.5/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"53 /features/features.7/conv/conv.1/conv.1.0/Conv" -> "56 /features/features.7/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 14, 14]", style=solid];
-"54 /features/features.6/conv/conv.1/conv.1.2/Clip" -> "57 /features/features.6/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"55 /features/features.5/conv/conv.2/Conv/WithoutBiases" -> "58 /features/features.5/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"56 /features/features.7/conv/conv.1/conv.1.2/Clip" -> "59 /features/features.7/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 14, 14]", style=solid];
-"57 /features/features.6/conv/conv.2/Conv/WithoutBiases" -> "60 /features/features.6/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"58 /features/features.5/conv/conv.2/Conv" -> "36 /features/features.5/Add" [label="[1, 32, 28, 28]", style=solid];
-"59 /features/features.7/conv/conv.2/Conv/WithoutBiases" -> "61 /features/features.7/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"60 /features/features.6/conv/conv.2/Conv" -> "38 /features/features.6/Add" [label="[1, 32, 28, 28]", style=solid];
-"61 /features/features.7/conv/conv.2/Conv" -> "62 /features/features.8/Add" [label="[1, 64, 14, 14]", style=solid];
-"61 /features/features.7/conv/conv.2/Conv" -> "63 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"62 /features/features.8/Add" -> "64 /features/features.9/Add" [label="[1, 64, 14, 14]", style=solid];
-"62 /features/features.8/Add" -> "65 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"63 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "66 /features/features.8/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"64 /features/features.9/Add" -> "67 /features/features.10/Add" [label="[1, 64, 14, 14]", style=solid];
-"64 /features/features.9/Add" -> "68 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"65 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "69 /features/features.9/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"66 /features/features.8/conv/conv.0/conv.0.0/Conv" -> "70 /features/features.8/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"67 /features/features.10/Add" -> "71 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"68 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "72 /features/features.10/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"69 /features/features.9/conv/conv.0/conv.0.0/Conv" -> "73 /features/features.9/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"70 /features/features.8/conv/conv.0/conv.0.2/Clip" -> "74 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"71 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "75 /features/features.11/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"72 /features/features.10/conv/conv.0/conv.0.0/Conv" -> "76 /features/features.10/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"73 /features/features.9/conv/conv.0/conv.0.2/Clip" -> "77 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"74 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "78 /features/features.8/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"75 /features/features.11/conv/conv.0/conv.0.0/Conv" -> "79 /features/features.11/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"76 /features/features.10/conv/conv.0/conv.0.2/Clip" -> "80 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"77 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "81 /features/features.9/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"78 /features/features.8/conv/conv.1/conv.1.0/Conv" -> "82 /features/features.8/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"79 /features/features.11/conv/conv.0/conv.0.2/Clip" -> "83 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"80 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "84 /features/features.10/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"81 /features/features.9/conv/conv.1/conv.1.0/Conv" -> "85 /features/features.9/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"82 /features/features.8/conv/conv.1/conv.1.2/Clip" -> "86 /features/features.8/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"83 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "87 /features/features.11/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"84 /features/features.10/conv/conv.1/conv.1.0/Conv" -> "88 /features/features.10/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"85 /features/features.9/conv/conv.1/conv.1.2/Clip" -> "89 /features/features.9/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"86 /features/features.8/conv/conv.2/Conv/WithoutBiases" -> "90 /features/features.8/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"87 /features/features.11/conv/conv.1/conv.1.0/Conv" -> "91 /features/features.11/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"88 /features/features.10/conv/conv.1/conv.1.2/Clip" -> "92 /features/features.10/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"89 /features/features.9/conv/conv.2/Conv/WithoutBiases" -> "93 /features/features.9/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"90 /features/features.8/conv/conv.2/Conv" -> "62 /features/features.8/Add" [label="[1, 64, 14, 14]", style=solid];
-"91 /features/features.11/conv/conv.1/conv.1.2/Clip" -> "94 /features/features.11/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"92 /features/features.10/conv/conv.2/Conv/WithoutBiases" -> "95 /features/features.10/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"93 /features/features.9/conv/conv.2/Conv" -> "64 /features/features.9/Add" [label="[1, 64, 14, 14]", style=solid];
-"94 /features/features.11/conv/conv.2/Conv/WithoutBiases" -> "96 /features/features.11/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"95 /features/features.10/conv/conv.2/Conv" -> "67 /features/features.10/Add" [label="[1, 64, 14, 14]", style=solid];
-"96 /features/features.11/conv/conv.2/Conv" -> "97 /features/features.12/Add" [label="[1, 96, 14, 14]", style=solid];
-"96 /features/features.11/conv/conv.2/Conv" -> "98 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"97 /features/features.12/Add" -> "99 /features/features.13/Add" [label="[1, 96, 14, 14]", style=solid];
-"97 /features/features.12/Add" -> "100 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"98 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "101 /features/features.12/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"99 /features/features.13/Add" -> "102 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"100 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "103 /features/features.13/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"101 /features/features.12/conv/conv.0/conv.0.0/Conv" -> "104 /features/features.12/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"102 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "105 /features/features.14/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"103 /features/features.13/conv/conv.0/conv.0.0/Conv" -> "106 /features/features.13/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"104 /features/features.12/conv/conv.0/conv.0.2/Clip" -> "107 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"105 /features/features.14/conv/conv.0/conv.0.0/Conv" -> "108 /features/features.14/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"106 /features/features.13/conv/conv.0/conv.0.2/Clip" -> "109 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"107 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "110 /features/features.12/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"108 /features/features.14/conv/conv.0/conv.0.2/Clip" -> "111 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"109 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "112 /features/features.13/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"110 /features/features.12/conv/conv.1/conv.1.0/Conv" -> "113 /features/features.12/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"111 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "114 /features/features.14/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 7, 7]", style=solid];
-"112 /features/features.13/conv/conv.1/conv.1.0/Conv" -> "115 /features/features.13/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"113 /features/features.12/conv/conv.1/conv.1.2/Clip" -> "116 /features/features.12/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"114 /features/features.14/conv/conv.1/conv.1.0/Conv" -> "117 /features/features.14/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 7, 7]", style=solid];
-"115 /features/features.13/conv/conv.1/conv.1.2/Clip" -> "118 /features/features.13/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"116 /features/features.12/conv/conv.2/Conv/WithoutBiases" -> "119 /features/features.12/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"117 /features/features.14/conv/conv.1/conv.1.2/Clip" -> "120 /features/features.14/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 7, 7]", style=solid];
-"118 /features/features.13/conv/conv.2/Conv/WithoutBiases" -> "121 /features/features.13/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"119 /features/features.12/conv/conv.2/Conv" -> "97 /features/features.12/Add" [label="[1, 96, 14, 14]", style=solid];
-"120 /features/features.14/conv/conv.2/Conv/WithoutBiases" -> "122 /features/features.14/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"121 /features/features.13/conv/conv.2/Conv" -> "99 /features/features.13/Add" [label="[1, 96, 14, 14]", style=solid];
-"122 /features/features.14/conv/conv.2/Conv" -> "123 /features/features.15/Add" [label="[1, 160, 7, 7]", style=solid];
-"122 /features/features.14/conv/conv.2/Conv" -> "124 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"123 /features/features.15/Add" -> "125 /features/features.16/Add" [label="[1, 160, 7, 7]", style=solid];
-"123 /features/features.15/Add" -> "126 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"124 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "127 /features/features.15/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"125 /features/features.16/Add" -> "128 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"126 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "129 /features/features.16/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"127 /features/features.15/conv/conv.0/conv.0.0/Conv" -> "130 /features/features.15/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"128 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "131 /features/features.17/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"129 /features/features.16/conv/conv.0/conv.0.0/Conv" -> "132 /features/features.16/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"130 /features/features.15/conv/conv.0/conv.0.2/Clip" -> "133 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"131 /features/features.17/conv/conv.0/conv.0.0/Conv" -> "134 /features/features.17/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"132 /features/features.16/conv/conv.0/conv.0.2/Clip" -> "135 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"133 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "136 /features/features.15/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"134 /features/features.17/conv/conv.0/conv.0.2/Clip" -> "137 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"135 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "138 /features/features.16/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"136 /features/features.15/conv/conv.1/conv.1.0/Conv" -> "139 /features/features.15/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"137 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "140 /features/features.17/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"138 /features/features.16/conv/conv.1/conv.1.0/Conv" -> "141 /features/features.16/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"139 /features/features.15/conv/conv.1/conv.1.2/Clip" -> "142 /features/features.15/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"140 /features/features.17/conv/conv.1/conv.1.0/Conv" -> "143 /features/features.17/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"141 /features/features.16/conv/conv.1/conv.1.2/Clip" -> "144 /features/features.16/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"142 /features/features.15/conv/conv.2/Conv/WithoutBiases" -> "145 /features/features.15/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"143 /features/features.17/conv/conv.1/conv.1.2/Clip" -> "146 /features/features.17/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"144 /features/features.16/conv/conv.2/Conv/WithoutBiases" -> "147 /features/features.16/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"145 /features/features.15/conv/conv.2/Conv" -> "123 /features/features.15/Add" [label="[1, 160, 7, 7]", style=solid];
-"146 /features/features.17/conv/conv.2/Conv/WithoutBiases" -> "148 /features/features.17/conv/conv.2/Conv" [label="[1, 320, 7, 7]", style=solid];
-"147 /features/features.16/conv/conv.2/Conv" -> "125 /features/features.16/Add" [label="[1, 160, 7, 7]", style=solid];
-"148 /features/features.17/conv/conv.2/Conv" -> "149 /features/features.18/features.18.0/Conv/WithoutBiases" [label="[1, 320, 7, 7]", style=solid];
-"149 /features/features.18/features.18.0/Conv/WithoutBiases" -> "150 /features/features.18/features.18.0/Conv" [label="[1, 1280, 7, 7]", style=solid];
-"150 /features/features.18/features.18.0/Conv" -> "151 /features/features.18/features.18.2/Clip" [label="[1, 1280, 7, 7]", style=solid];
-"151 /features/features.18/features.18.2/Clip" -> "152 /GlobalAveragePool" [label="[1, 1280, 7, 7]", style=solid];
-"152 /GlobalAveragePool" -> "153 /Flatten" [label="[1, 1280, 1, 1]", style=solid];
-"153 /Flatten" -> "154 /classifier/classifier.1/Gemm/WithoutBiases" [label="[1, 1280]", style=solid];
-"154 /classifier/classifier.1/Gemm/WithoutBiases" -> "155 prob" [label="[1, 1000]", style=solid];
-"155 prob" -> "156 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"157 Constant_5169" -> "155 prob" [label="[1, 1000]", style=solid];
-"158 classifier.1.weight" -> "154 /classifier/classifier.1/Gemm/WithoutBiases" [label="[1000, 1280]", style=solid];
-"159 Constant_1864" -> "153 /Flatten" [label="[2]", style=dashed];
-"160 Range_1860" -> "152 /GlobalAveragePool" [label="[2]", style=dashed];
-"161 Reshape_1846" -> "150 /features/features.18/features.18.0/Conv" [label="[1, 1280, 1, 1]", style=solid];
-"162 onnx^^Conv_691" -> "149 /features/features.18/features.18.0/Conv/WithoutBiases" [label="[1280, 320, 1, 1]", style=solid];
-"163 Reshape_1831" -> "148 /features/features.17/conv/conv.2/Conv" [label="[1, 320, 1, 1]", style=solid];
-"164 onnx^^Conv_688" -> "146 /features/features.17/conv/conv.2/Conv/WithoutBiases" [label="[320, 960, 1, 1]", style=solid];
-"165 Reshape_1812" -> "140 /features/features.17/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"166 Reshape_1760" -> "137 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"167 Reshape_1745" -> "131 /features/features.17/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"168 onnx^^Conv_682" -> "128 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"169 Reshape_1729" -> "147 /features/features.16/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"170 onnx^^Conv_679" -> "144 /features/features.16/conv/conv.2/Conv/WithoutBiases" [label="[160, 960, 1, 1]", style=solid];
-"171 Reshape_1710" -> "138 /features/features.16/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"172 Reshape_1658" -> "135 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"173 Reshape_1643" -> "129 /features/features.16/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"174 onnx^^Conv_673" -> "126 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"175 Reshape_1627" -> "145 /features/features.15/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"176 onnx^^Conv_670" -> "142 /features/features.15/conv/conv.2/Conv/WithoutBiases" [label="[160, 960, 1, 1]", style=solid];
-"177 Reshape_1608" -> "136 /features/features.15/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"178 Reshape_1556" -> "133 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"179 Reshape_1541" -> "127 /features/features.15/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"180 onnx^^Conv_664" -> "124 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"181 Reshape_1526" -> "122 /features/features.14/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"182 onnx^^Conv_661" -> "120 /features/features.14/conv/conv.2/Conv/WithoutBiases" [label="[160, 576, 1, 1]", style=solid];
-"183 Reshape_1507" -> "114 /features/features.14/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"184 Reshape_1455" -> "111 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"185 Reshape_1440" -> "105 /features/features.14/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"186 onnx^^Conv_655" -> "102 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"187 Reshape_1424" -> "121 /features/features.13/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"188 onnx^^Conv_652" -> "118 /features/features.13/conv/conv.2/Conv/WithoutBiases" [label="[96, 576, 1, 1]", style=solid];
-"189 Reshape_1405" -> "112 /features/features.13/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"190 Reshape_1353" -> "109 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"191 Reshape_1338" -> "103 /features/features.13/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"192 onnx^^Conv_646" -> "100 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"193 Reshape_1322" -> "119 /features/features.12/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"194 onnx^^Conv_643" -> "116 /features/features.12/conv/conv.2/Conv/WithoutBiases" [label="[96, 576, 1, 1]", style=solid];
-"195 Reshape_1303" -> "110 /features/features.12/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"196 Reshape_1251" -> "107 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"197 Reshape_1236" -> "101 /features/features.12/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"198 onnx^^Conv_637" -> "98 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"199 Reshape_1221" -> "96 /features/features.11/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"200 onnx^^Conv_634" -> "94 /features/features.11/conv/conv.2/Conv/WithoutBiases" [label="[96, 384, 1, 1]", style=solid];
-"201 Reshape_1202" -> "87 /features/features.11/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"202 Reshape_1150" -> "83 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"203 Reshape_1135" -> "75 /features/features.11/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"204 onnx^^Conv_628" -> "71 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"205 Reshape_1119" -> "95 /features/features.10/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"206 onnx^^Conv_625" -> "92 /features/features.10/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"207 Reshape_1100" -> "84 /features/features.10/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"208 Reshape_1048" -> "80 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"209 Reshape_1033" -> "72 /features/features.10/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"210 onnx^^Conv_619" -> "68 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"211 Reshape_1017" -> "93 /features/features.9/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"212 onnx^^Conv_616" -> "89 /features/features.9/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"213 Reshape_998" -> "81 /features/features.9/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"214 Reshape_946" -> "77 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"215 Reshape_931" -> "69 /features/features.9/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"216 onnx^^Conv_610" -> "65 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"217 Reshape_915" -> "90 /features/features.8/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"218 onnx^^Conv_607" -> "86 /features/features.8/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"219 Reshape_896" -> "78 /features/features.8/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"220 Reshape_844" -> "74 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"221 Reshape_829" -> "66 /features/features.8/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"222 onnx^^Conv_601" -> "63 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"223 Reshape_814" -> "61 /features/features.7/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"224 onnx^^Conv_598" -> "59 /features/features.7/conv/conv.2/Conv/WithoutBiases" [label="[64, 192, 1, 1]", style=solid];
-"225 Reshape_795" -> "53 /features/features.7/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"226 Reshape_743" -> "50 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"227 Reshape_728" -> "44 /features/features.7/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"228 onnx^^Conv_592" -> "41 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"229 Reshape_712" -> "60 /features/features.6/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"230 onnx^^Conv_589" -> "57 /features/features.6/conv/conv.2/Conv/WithoutBiases" [label="[32, 192, 1, 1]", style=solid];
-"231 Reshape_693" -> "51 /features/features.6/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"232 Reshape_641" -> "48 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"233 Reshape_626" -> "42 /features/features.6/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"234 onnx^^Conv_583" -> "39 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"235 Reshape_610" -> "58 /features/features.5/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"236 onnx^^Conv_580" -> "55 /features/features.5/conv/conv.2/Conv/WithoutBiases" [label="[32, 192, 1, 1]", style=solid];
-"237 Reshape_591" -> "49 /features/features.5/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"238 Reshape_539" -> "46 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"239 Reshape_524" -> "40 /features/features.5/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"240 onnx^^Conv_574" -> "37 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"241 Reshape_509" -> "35 /features/features.4/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"242 onnx^^Conv_571" -> "33 /features/features.4/conv/conv.2/Conv/WithoutBiases" [label="[32, 144, 1, 1]", style=solid];
-"243 Reshape_490" -> "29 /features/features.4/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"244 Reshape_438" -> "27 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[144, 1, 1, 3, 3]", style=solid];
-"245 Reshape_423" -> "23 /features/features.4/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"246 onnx^^Conv_565" -> "21 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[144, 24, 1, 1]", style=solid];
-"247 Reshape_407" -> "34 /features/features.3/conv/conv.2/Conv" [label="[1, 24, 1, 1]", style=solid];
-"248 onnx^^Conv_562" -> "32 /features/features.3/conv/conv.2/Conv/WithoutBiases" [label="[24, 144, 1, 1]", style=solid];
-"249 Reshape_388" -> "28 /features/features.3/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"250 Reshape_336" -> "26 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[144, 1, 1, 3, 3]", style=solid];
-"251 Reshape_321" -> "22 /features/features.3/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"252 onnx^^Conv_556" -> "20 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[144, 24, 1, 1]", style=solid];
-"253 Reshape_306" -> "18 /features/features.2/conv/conv.2/Conv" [label="[1, 24, 1, 1]", style=solid];
-"254 onnx^^Conv_553" -> "17 /features/features.2/conv/conv.2/Conv/WithoutBiases" [label="[24, 96, 1, 1]", style=solid];
-"255 Reshape_287" -> "15 /features/features.2/conv/conv.1/conv.1.0/Conv" [label="[1, 96, 1, 1]", style=solid];
-"256 Reshape_235" -> "14 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[96, 1, 1, 3, 3]", style=solid];
-"257 Reshape_220" -> "12 /features/features.2/conv/conv.0/conv.0.0/Conv" [label="[1, 96, 1, 1]", style=solid];
-"258 onnx^^Conv_547" -> "11 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[96, 16, 1, 1]", style=solid];
-"259 Reshape_205" -> "10 /features/features.1/conv/conv.1/Conv" [label="[1, 16, 1, 1]", style=solid];
-"260 onnx^^Conv_544" -> "9 /features/features.1/conv/conv.1/Conv/WithoutBiases" [label="[16, 32, 1, 1]", style=solid];
-"261 Reshape_186" -> "7 /features/features.1/conv/conv.0/conv.0.0/Conv" [label="[1, 32, 1, 1]", style=solid];
-"262 Reshape_134" -> "6 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[32, 1, 1, 3, 3]", style=solid];
-"263 Reshape_119" -> "4 /features/features.0/features.0.0/Conv" [label="[1, 32, 1, 1]", style=solid];
-"264 Gather_5168" -> "3 /features/features.0/features.0.0/Conv/WithoutBiases" [label="[32, 3, 3, 3]", style=solid];
-"265 Gather_5165" -> "2 Divide_1885" [label="[1, 3, 1, 1]", style=solid];
-"266 Gather_5162" -> "1 Multiply_5095" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v3-small-1.0-224-tf.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v3-small-1.0-224-tf.dot
deleted file mode 100644
index 195becdc1a1..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/mobilenet-v3-small-1.0-224-tf.dot
+++ /dev/null
@@ -1,628 +0,0 @@
-strict digraph {
-"0 input_1" [id=0, type=Parameter];
-"1 Transpose_7780" [id=1, type=Transpose];
-"2 Transpose_7774" [id=2, type=Multiply];
-"3 Transpose_710" [id=3, type=Add];
-"4 Multiply_9167" [id=4, type=Convolution];
-"5 Transpose_5170" [id=5, type=Add];
-"6 Transpose_5188" [id=6, type=HSwish];
-"7 Multiply_9181" [id=7, type=GroupConvolution];
-"8 Transpose_5239" [id=8, type=Add];
-"9 Transpose_5241" [id=9, type=Relu];
-"10 Transpose_5245" [id=10, type=ReduceMean];
-"11 Transpose_5277" [id=11, type=Multiply];
-"12 Convolution_801" [id=12, type=Convolution];
-"13 Multiply_9195" [id=13, type=Convolution];
-"14 Transpose_5251" [id=14, type=Add];
-"15 Transpose_5301" [id=15, type=Add];
-"16 Transpose_5253" [id=16, type=Relu];
-"17 Multiply_9209" [id=17, type=Convolution];
-"18 Convolution_810" [id=18, type=Convolution];
-"19 Transpose_5325" [id=19, type=Add];
-"20 Transpose_5259" [id=20, type=Add];
-"21 Transpose_5327" [id=21, type=Relu];
-"22 Transpose_5273" [id=22, type=HSigmoid];
-"23 Multiply_9223" [id=23, type=GroupConvolution];
-"24 Transpose_5378" [id=24, type=Add];
-"25 Transpose_5380" [id=25, type=Relu];
-"26 Multiply_9237" [id=26, type=Convolution];
-"27 Transpose_5404" [id=27, type=Add];
-"28 Multiply_9251" [id=28, type=Convolution];
-"29 Transpose_5484" [id=29, type=Add];
-"30 Transpose_5428" [id=30, type=Add];
-"31 Multiply_9293" [id=31, type=Convolution];
-"32 Transpose_5430" [id=32, type=Relu];
-"33 Transpose_5508" [id=33, type=Add];
-"34 Multiply_9265" [id=34, type=GroupConvolution];
-"35 Transpose_5526" [id=35, type=HSwish];
-"36 Transpose_5454" [id=36, type=Add];
-"37 Multiply_9307" [id=37, type=GroupConvolution];
-"38 Transpose_5456" [id=38, type=Relu];
-"39 Transpose_5577" [id=39, type=Add];
-"40 Multiply_9279" [id=40, type=Convolution];
-"41 Transpose_5595" [id=41, type=HSwish];
-"42 Transpose_5480" [id=42, type=Add];
-"43 Transpose_5599" [id=43, type=ReduceMean];
-"44 Transpose_5631" [id=44, type=Multiply];
-"45 Convolution_1132" [id=45, type=Convolution];
-"46 Multiply_9321" [id=46, type=Convolution];
-"47 Transpose_5605" [id=47, type=Add];
-"48 Transpose_5655" [id=48, type=Add];
-"49 Transpose_5607" [id=49, type=Relu];
-"50 Multiply_9335" [id=50, type=Convolution];
-"51 Transpose_5803" [id=51, type=Add];
-"52 Convolution_1141" [id=52, type=Convolution];
-"53 Transpose_5679" [id=53, type=Add];
-"54 Multiply_9377" [id=54, type=Convolution];
-"55 Transpose_5951" [id=55, type=Add];
-"56 Transpose_5613" [id=56, type=Add];
-"57 Transpose_5697" [id=57, type=HSwish];
-"58 Transpose_5827" [id=58, type=Add];
-"59 Multiply_9419" [id=59, type=Convolution];
-"60 Transpose_5627" [id=60, type=HSigmoid];
-"61 Multiply_9349" [id=61, type=GroupConvolution];
-"62 Transpose_5845" [id=62, type=HSwish];
-"63 Transpose_5975" [id=63, type=Add];
-"64 Transpose_5721" [id=64, type=Add];
-"65 Multiply_9391" [id=65, type=GroupConvolution];
-"66 Transpose_5993" [id=66, type=HSwish];
-"67 Transpose_5739" [id=67, type=HSwish];
-"68 Transpose_5869" [id=68, type=Add];
-"69 Multiply_9433" [id=69, type=GroupConvolution];
-"70 Transpose_5743" [id=70, type=ReduceMean];
-"71 Transpose_5775" [id=71, type=Multiply];
-"72 Transpose_5887" [id=72, type=HSwish];
-"73 Transpose_6017" [id=73, type=Add];
-"74 Convolution_1242" [id=74, type=Convolution];
-"75 Multiply_9363" [id=75, type=Convolution];
-"76 Transpose_5891" [id=76, type=ReduceMean];
-"77 Transpose_5923" [id=77, type=Multiply];
-"78 Transpose_6035" [id=78, type=HSwish];
-"79 Transpose_5749" [id=79, type=Add];
-"80 Transpose_5799" [id=80, type=Add];
-"81 Convolution_1353" [id=81, type=Convolution];
-"82 Multiply_9405" [id=82, type=Convolution];
-"83 Transpose_6039" [id=83, type=ReduceMean];
-"84 Transpose_6071" [id=84, type=Multiply];
-"85 Transpose_5751" [id=85, type=Relu];
-"86 Transpose_5897" [id=86, type=Add];
-"87 Transpose_5947" [id=87, type=Add];
-"88 Convolution_1464" [id=88, type=Convolution];
-"89 Multiply_9447" [id=89, type=Convolution];
-"90 Convolution_1251" [id=90, type=Convolution];
-"91 Transpose_5899" [id=91, type=Relu];
-"92 Transpose_6045" [id=92, type=Add];
-"93 Transpose_6095" [id=93, type=Add];
-"94 Transpose_5757" [id=94, type=Add];
-"95 Convolution_1362" [id=95, type=Convolution];
-"96 Transpose_6047" [id=96, type=Relu];
-"97 Multiply_9461" [id=97, type=Convolution];
-"98 Transpose_6243" [id=98, type=Add];
-"99 Transpose_5771" [id=99, type=HSigmoid];
-"100 Transpose_5905" [id=100, type=Add];
-"101 Convolution_1473" [id=101, type=Convolution];
-"102 Transpose_6119" [id=102, type=Add];
-"103 Multiply_9503" [id=103, type=Convolution];
-"104 Transpose_5919" [id=104, type=HSigmoid];
-"105 Transpose_6053" [id=105, type=Add];
-"106 Transpose_6137" [id=106, type=HSwish];
-"107 Transpose_6267" [id=107, type=Add];
-"108 Transpose_6067" [id=108, type=HSigmoid];
-"109 Multiply_9475" [id=109, type=GroupConvolution];
-"110 Transpose_6285" [id=110, type=HSwish];
-"111 Transpose_6161" [id=111, type=Add];
-"112 Multiply_9517" [id=112, type=GroupConvolution];
-"113 Transpose_6179" [id=113, type=HSwish];
-"114 Transpose_6336" [id=114, type=Add];
-"115 Transpose_6183" [id=115, type=ReduceMean];
-"116 Transpose_6215" [id=116, type=Multiply];
-"117 Transpose_6354" [id=117, type=HSwish];
-"118 Convolution_1574" [id=118, type=Convolution];
-"119 Multiply_9489" [id=119, type=Convolution];
-"120 Transpose_6358" [id=120, type=ReduceMean];
-"121 Transpose_6390" [id=121, type=Multiply];
-"122 Transpose_6189" [id=122, type=Add];
-"123 Transpose_6239" [id=123, type=Add];
-"124 Convolution_1713" [id=124, type=Convolution];
-"125 Multiply_9531" [id=125, type=Convolution];
-"126 Transpose_6191" [id=126, type=Relu];
-"127 Transpose_6364" [id=127, type=Add];
-"128 Transpose_6414" [id=128, type=Add];
-"129 Convolution_1583" [id=129, type=Convolution];
-"130 Transpose_6366" [id=130, type=Relu];
-"131 Multiply_9545" [id=131, type=Convolution];
-"132 Transpose_6562" [id=132, type=Add];
-"133 Transpose_6197" [id=133, type=Add];
-"134 Convolution_1722" [id=134, type=Convolution];
-"135 Transpose_6438" [id=135, type=Add];
-"136 Multiply_9587" [id=136, type=Convolution];
-"137 Transpose_6710" [id=137, type=Add];
-"138 Transpose_6211" [id=138, type=HSigmoid];
-"139 Transpose_6372" [id=139, type=Add];
-"140 Transpose_6456" [id=140, type=HSwish];
-"141 Transpose_6586" [id=141, type=Add];
-"142 Multiply_9629" [id=142, type=Convolution];
-"143 Transpose_6386" [id=143, type=HSigmoid];
-"144 Multiply_9559" [id=144, type=GroupConvolution];
-"145 Transpose_6604" [id=145, type=HSwish];
-"146 Transpose_6734" [id=146, type=Add];
-"147 Transpose_6480" [id=147, type=Add];
-"148 Multiply_9601" [id=148, type=GroupConvolution];
-"149 Transpose_6752" [id=149, type=HSwish];
-"150 Transpose_6498" [id=150, type=HSwish];
-"151 Transpose_6628" [id=151, type=Add];
-"152 Transpose_6756" [id=152, type=ReduceMean];
-"153 Transpose_6502" [id=153, type=ReduceMean];
-"154 Transpose_6534" [id=154, type=Multiply];
-"155 Transpose_6646" [id=155, type=HSwish];
-"156 Convolution_2013" [id=156, type=Convolution];
-"157 Convolution_1823" [id=157, type=Convolution];
-"158 Multiply_9573" [id=158, type=Convolution];
-"159 Transpose_6650" [id=159, type=ReduceMean];
-"160 Transpose_6682" [id=160, type=Multiply];
-"161 Transpose_6762" [id=161, type=Add];
-"162 Transpose_6508" [id=162, type=Add];
-"163 Transpose_6558" [id=163, type=Add];
-"164 Convolution_1934" [id=164, type=Convolution];
-"165 Multiply_9615" [id=165, type=Convolution];
-"166 Transpose_6780" [id=166, type=HSwish];
-"167 Transpose_6510" [id=167, type=Relu];
-"168 Transpose_6656" [id=168, type=Add];
-"169 Transpose_6706" [id=169, type=Add];
-"170 Convolution_2025" [id=170, type=Convolution];
-"171 Convolution_1832" [id=171, type=Convolution];
-"172 Transpose_6658" [id=172, type=Relu];
-"173 Transpose_6786" [id=173, type=Add];
-"174 Transpose_6516" [id=174, type=Add];
-"175 Convolution_1943" [id=175, type=Convolution];
-"176 MobilenetV3small/Logits/BiasAdd" [id=176, type=Reshape];
-"177 Transpose_6530" [id=177, type=HSigmoid];
-"178 Transpose_6664" [id=178, type=Add];
-"179 MobilenetV3small/flatten/Reshape" [id=179, type=Reshape];
-"180 Transpose_6678" [id=180, type=HSigmoid];
-"181 MobilenetV3small/Predictions/Softmax" [id=181, type=Softmax];
-"182 Predictions" [id=182, type=Result];
-"183 MobilenetV3small/flatten/Const" [id=183, type=Constant];
-"184 Constant_8887" [id=184, type=Constant];
-"185 Transpose_6784" [id=185, type=Constant];
-"186 Transpose_2024" [id=186, type=Constant];
-"187 Transpose_6760" [id=187, type=Constant];
-"188 Transpose_2012" [id=188, type=Constant];
-"189 Constant_6754" [id=189, type=Constant];
-"190 Constant_9637" [id=190, type=Constant];
-"191 Multiply_9830" [id=191, type=Constant];
-"192 Constant_9623" [id=192, type=Constant];
-"193 Multiply_9824" [id=193, type=Constant];
-"194 Transpose_6662" [id=194, type=Constant];
-"195 Transpose_1942" [id=195, type=Constant];
-"196 Transpose_6654" [id=196, type=Constant];
-"197 Transpose_1933" [id=197, type=Constant];
-"198 Constant_6648" [id=198, type=Constant];
-"199 Constant_9609" [id=199, type=Constant];
-"200 Multiply_9819" [id=200, type=Constant];
-"201 Constant_9595" [id=201, type=Constant];
-"202 Multiply_9813" [id=202, type=Constant];
-"203 Constant_9581" [id=203, type=Constant];
-"204 Multiply_9807" [id=204, type=Constant];
-"205 Transpose_6514" [id=205, type=Constant];
-"206 Transpose_1831" [id=206, type=Constant];
-"207 Transpose_6506" [id=207, type=Constant];
-"208 Transpose_1822" [id=208, type=Constant];
-"209 Constant_6500" [id=209, type=Constant];
-"210 Constant_9567" [id=210, type=Constant];
-"211 Multiply_9802" [id=211, type=Constant];
-"212 Constant_9553" [id=212, type=Constant];
-"213 Multiply_9796" [id=213, type=Constant];
-"214 Constant_9539" [id=214, type=Constant];
-"215 Multiply_9790" [id=215, type=Constant];
-"216 Transpose_6370" [id=216, type=Constant];
-"217 Transpose_1721" [id=217, type=Constant];
-"218 Transpose_6362" [id=218, type=Constant];
-"219 Transpose_1712" [id=219, type=Constant];
-"220 Constant_6356" [id=220, type=Constant];
-"221 Constant_9525" [id=221, type=Constant];
-"222 Multiply_9785" [id=222, type=Constant];
-"223 Constant_9511" [id=223, type=Constant];
-"224 Multiply_9779" [id=224, type=Constant];
-"225 Constant_9497" [id=225, type=Constant];
-"226 Multiply_9773" [id=226, type=Constant];
-"227 Transpose_6195" [id=227, type=Constant];
-"228 Transpose_1582" [id=228, type=Constant];
-"229 Transpose_6187" [id=229, type=Constant];
-"230 Transpose_1573" [id=230, type=Constant];
-"231 Constant_6181" [id=231, type=Constant];
-"232 Constant_9483" [id=232, type=Constant];
-"233 Multiply_9768" [id=233, type=Constant];
-"234 Constant_9469" [id=234, type=Constant];
-"235 Multiply_9762" [id=235, type=Constant];
-"236 Constant_9455" [id=236, type=Constant];
-"237 Multiply_9756" [id=237, type=Constant];
-"238 Transpose_6051" [id=238, type=Constant];
-"239 Transpose_1472" [id=239, type=Constant];
-"240 Transpose_6043" [id=240, type=Constant];
-"241 Transpose_1463" [id=241, type=Constant];
-"242 Constant_6037" [id=242, type=Constant];
-"243 Constant_9441" [id=243, type=Constant];
-"244 Multiply_9751" [id=244, type=Constant];
-"245 Constant_9427" [id=245, type=Constant];
-"246 Multiply_9745" [id=246, type=Constant];
-"247 Constant_9413" [id=247, type=Constant];
-"248 Multiply_9739" [id=248, type=Constant];
-"249 Transpose_5903" [id=249, type=Constant];
-"250 Transpose_1361" [id=250, type=Constant];
-"251 Transpose_5895" [id=251, type=Constant];
-"252 Transpose_1352" [id=252, type=Constant];
-"253 Constant_5889" [id=253, type=Constant];
-"254 Constant_9399" [id=254, type=Constant];
-"255 Multiply_9734" [id=255, type=Constant];
-"256 Constant_9385" [id=256, type=Constant];
-"257 Multiply_9728" [id=257, type=Constant];
-"258 Constant_9371" [id=258, type=Constant];
-"259 Multiply_9722" [id=259, type=Constant];
-"260 Transpose_5755" [id=260, type=Constant];
-"261 Transpose_1250" [id=261, type=Constant];
-"262 Transpose_5747" [id=262, type=Constant];
-"263 Transpose_1241" [id=263, type=Constant];
-"264 Constant_5741" [id=264, type=Constant];
-"265 Constant_9357" [id=265, type=Constant];
-"266 Multiply_9717" [id=266, type=Constant];
-"267 Constant_9343" [id=267, type=Constant];
-"268 Multiply_9711" [id=268, type=Constant];
-"269 Constant_9329" [id=269, type=Constant];
-"270 Multiply_9705" [id=270, type=Constant];
-"271 Transpose_5611" [id=271, type=Constant];
-"272 Transpose_1140" [id=272, type=Constant];
-"273 Transpose_5603" [id=273, type=Constant];
-"274 Transpose_1131" [id=274, type=Constant];
-"275 Constant_5597" [id=275, type=Constant];
-"276 Constant_9315" [id=276, type=Constant];
-"277 Multiply_9700" [id=277, type=Constant];
-"278 Constant_9301" [id=278, type=Constant];
-"279 Multiply_9694" [id=279, type=Constant];
-"280 Constant_9287" [id=280, type=Constant];
-"281 Multiply_9688" [id=281, type=Constant];
-"282 Constant_9273" [id=282, type=Constant];
-"283 Multiply_9683" [id=283, type=Constant];
-"284 Constant_9259" [id=284, type=Constant];
-"285 Multiply_9677" [id=285, type=Constant];
-"286 Constant_9245" [id=286, type=Constant];
-"287 Multiply_9671" [id=287, type=Constant];
-"288 Constant_9231" [id=288, type=Constant];
-"289 Multiply_9666" [id=289, type=Constant];
-"290 Constant_9217" [id=290, type=Constant];
-"291 Multiply_9660" [id=291, type=Constant];
-"292 Constant_9203" [id=292, type=Constant];
-"293 Multiply_9654" [id=293, type=Constant];
-"294 Transpose_5257" [id=294, type=Constant];
-"295 Transpose_809" [id=295, type=Constant];
-"296 Transpose_5249" [id=296, type=Constant];
-"297 Transpose_800" [id=297, type=Constant];
-"298 Constant_5243" [id=298, type=Constant];
-"299 Constant_9189" [id=299, type=Constant];
-"300 Multiply_9649" [id=300, type=Constant];
-"301 Constant_9175" [id=301, type=Constant];
-"302 Gather_10068" [id=302, type=Constant];
-"303 Unsqueeze_7776" [id=303, type=Constant];
-"304 Unsqueeze_7782" [id=304, type=Constant];
-"305 Constant_7779" [id=305, type=Constant];
-"0 input_1" -> "1 Transpose_7780" [label="[1, 224, 224, 3]", style=solid];
-"1 Transpose_7780" -> "2 Transpose_7774" [label="[1, 3, 224, 224]", style=solid];
-"2 Transpose_7774" -> "3 Transpose_710" [label="[1, 3, 224, 224]", style=solid];
-"3 Transpose_710" -> "4 Multiply_9167" [label="[1, 3, 224, 224]", style=solid];
-"4 Multiply_9167" -> "5 Transpose_5170" [label="[1, 16, 112, 112]", style=solid];
-"5 Transpose_5170" -> "6 Transpose_5188" [label="[1, 16, 112, 112]", style=solid];
-"6 Transpose_5188" -> "7 Multiply_9181" [label="[1, 16, 112, 112]", style=solid];
-"7 Multiply_9181" -> "8 Transpose_5239" [label="[1, 16, 56, 56]", style=solid];
-"8 Transpose_5239" -> "9 Transpose_5241" [label="[1, 16, 56, 56]", style=solid];
-"9 Transpose_5241" -> "10 Transpose_5245" [label="[1, 16, 56, 56]", style=solid];
-"9 Transpose_5241" -> "11 Transpose_5277" [label="[1, 16, 56, 56]", style=solid];
-"10 Transpose_5245" -> "12 Convolution_801" [label="[1, 16, 1, 1]", style=solid];
-"11 Transpose_5277" -> "13 Multiply_9195" [label="[1, 16, 56, 56]", style=solid];
-"12 Convolution_801" -> "14 Transpose_5251" [label="[1, 8, 1, 1]", style=solid];
-"13 Multiply_9195" -> "15 Transpose_5301" [label="[1, 16, 56, 56]", style=solid];
-"14 Transpose_5251" -> "16 Transpose_5253" [label="[1, 8, 1, 1]", style=solid];
-"15 Transpose_5301" -> "17 Multiply_9209" [label="[1, 16, 56, 56]", style=solid];
-"16 Transpose_5253" -> "18 Convolution_810" [label="[1, 8, 1, 1]", style=solid];
-"17 Multiply_9209" -> "19 Transpose_5325" [label="[1, 72, 56, 56]", style=solid];
-"18 Convolution_810" -> "20 Transpose_5259" [label="[1, 16, 1, 1]", style=solid];
-"19 Transpose_5325" -> "21 Transpose_5327" [label="[1, 72, 56, 56]", style=solid];
-"20 Transpose_5259" -> "22 Transpose_5273" [label="[1, 16, 1, 1]", style=solid];
-"21 Transpose_5327" -> "23 Multiply_9223" [label="[1, 72, 56, 56]", style=solid];
-"22 Transpose_5273" -> "11 Transpose_5277" [label="[1, 16, 1, 1]", style=solid];
-"23 Multiply_9223" -> "24 Transpose_5378" [label="[1, 72, 28, 28]", style=solid];
-"24 Transpose_5378" -> "25 Transpose_5380" [label="[1, 72, 28, 28]", style=solid];
-"25 Transpose_5380" -> "26 Multiply_9237" [label="[1, 72, 28, 28]", style=solid];
-"26 Multiply_9237" -> "27 Transpose_5404" [label="[1, 24, 28, 28]", style=solid];
-"27 Transpose_5404" -> "28 Multiply_9251" [label="[1, 24, 28, 28]", style=solid];
-"27 Transpose_5404" -> "29 Transpose_5484" [label="[1, 24, 28, 28]", style=solid];
-"28 Multiply_9251" -> "30 Transpose_5428" [label="[1, 88, 28, 28]", style=solid];
-"29 Transpose_5484" -> "31 Multiply_9293" [label="[1, 24, 28, 28]", style=solid];
-"30 Transpose_5428" -> "32 Transpose_5430" [label="[1, 88, 28, 28]", style=solid];
-"31 Multiply_9293" -> "33 Transpose_5508" [label="[1, 96, 28, 28]", style=solid];
-"32 Transpose_5430" -> "34 Multiply_9265" [label="[1, 88, 28, 28]", style=solid];
-"33 Transpose_5508" -> "35 Transpose_5526" [label="[1, 96, 28, 28]", style=solid];
-"34 Multiply_9265" -> "36 Transpose_5454" [label="[1, 88, 28, 28]", style=solid];
-"35 Transpose_5526" -> "37 Multiply_9307" [label="[1, 96, 28, 28]", style=solid];
-"36 Transpose_5454" -> "38 Transpose_5456" [label="[1, 88, 28, 28]", style=solid];
-"37 Multiply_9307" -> "39 Transpose_5577" [label="[1, 96, 14, 14]", style=solid];
-"38 Transpose_5456" -> "40 Multiply_9279" [label="[1, 88, 28, 28]", style=solid];
-"39 Transpose_5577" -> "41 Transpose_5595" [label="[1, 96, 14, 14]", style=solid];
-"40 Multiply_9279" -> "42 Transpose_5480" [label="[1, 24, 28, 28]", style=solid];
-"41 Transpose_5595" -> "43 Transpose_5599" [label="[1, 96, 14, 14]", style=solid];
-"41 Transpose_5595" -> "44 Transpose_5631" [label="[1, 96, 14, 14]", style=solid];
-"42 Transpose_5480" -> "29 Transpose_5484" [label="[1, 24, 28, 28]", style=solid];
-"43 Transpose_5599" -> "45 Convolution_1132" [label="[1, 96, 1, 1]", style=solid];
-"44 Transpose_5631" -> "46 Multiply_9321" [label="[1, 96, 14, 14]", style=solid];
-"45 Convolution_1132" -> "47 Transpose_5605" [label="[1, 24, 1, 1]", style=solid];
-"46 Multiply_9321" -> "48 Transpose_5655" [label="[1, 40, 14, 14]", style=solid];
-"47 Transpose_5605" -> "49 Transpose_5607" [label="[1, 24, 1, 1]", style=solid];
-"48 Transpose_5655" -> "50 Multiply_9335" [label="[1, 40, 14, 14]", style=solid];
-"48 Transpose_5655" -> "51 Transpose_5803" [label="[1, 40, 14, 14]", style=solid];
-"49 Transpose_5607" -> "52 Convolution_1141" [label="[1, 24, 1, 1]", style=solid];
-"50 Multiply_9335" -> "53 Transpose_5679" [label="[1, 240, 14, 14]", style=solid];
-"51 Transpose_5803" -> "54 Multiply_9377" [label="[1, 40, 14, 14]", style=solid];
-"51 Transpose_5803" -> "55 Transpose_5951" [label="[1, 40, 14, 14]", style=solid];
-"52 Convolution_1141" -> "56 Transpose_5613" [label="[1, 96, 1, 1]", style=solid];
-"53 Transpose_5679" -> "57 Transpose_5697" [label="[1, 240, 14, 14]", style=solid];
-"54 Multiply_9377" -> "58 Transpose_5827" [label="[1, 240, 14, 14]", style=solid];
-"55 Transpose_5951" -> "59 Multiply_9419" [label="[1, 40, 14, 14]", style=solid];
-"56 Transpose_5613" -> "60 Transpose_5627" [label="[1, 96, 1, 1]", style=solid];
-"57 Transpose_5697" -> "61 Multiply_9349" [label="[1, 240, 14, 14]", style=solid];
-"58 Transpose_5827" -> "62 Transpose_5845" [label="[1, 240, 14, 14]", style=solid];
-"59 Multiply_9419" -> "63 Transpose_5975" [label="[1, 120, 14, 14]", style=solid];
-"60 Transpose_5627" -> "44 Transpose_5631" [label="[1, 96, 1, 1]", style=solid];
-"61 Multiply_9349" -> "64 Transpose_5721" [label="[1, 240, 14, 14]", style=solid];
-"62 Transpose_5845" -> "65 Multiply_9391" [label="[1, 240, 14, 14]", style=solid];
-"63 Transpose_5975" -> "66 Transpose_5993" [label="[1, 120, 14, 14]", style=solid];
-"64 Transpose_5721" -> "67 Transpose_5739" [label="[1, 240, 14, 14]", style=solid];
-"65 Multiply_9391" -> "68 Transpose_5869" [label="[1, 240, 14, 14]", style=solid];
-"66 Transpose_5993" -> "69 Multiply_9433" [label="[1, 120, 14, 14]", style=solid];
-"67 Transpose_5739" -> "70 Transpose_5743" [label="[1, 240, 14, 14]", style=solid];
-"67 Transpose_5739" -> "71 Transpose_5775" [label="[1, 240, 14, 14]", style=solid];
-"68 Transpose_5869" -> "72 Transpose_5887" [label="[1, 240, 14, 14]", style=solid];
-"69 Multiply_9433" -> "73 Transpose_6017" [label="[1, 120, 14, 14]", style=solid];
-"70 Transpose_5743" -> "74 Convolution_1242" [label="[1, 240, 1, 1]", style=solid];
-"71 Transpose_5775" -> "75 Multiply_9363" [label="[1, 240, 14, 14]", style=solid];
-"72 Transpose_5887" -> "76 Transpose_5891" [label="[1, 240, 14, 14]", style=solid];
-"72 Transpose_5887" -> "77 Transpose_5923" [label="[1, 240, 14, 14]", style=solid];
-"73 Transpose_6017" -> "78 Transpose_6035" [label="[1, 120, 14, 14]", style=solid];
-"74 Convolution_1242" -> "79 Transpose_5749" [label="[1, 64, 1, 1]", style=solid];
-"75 Multiply_9363" -> "80 Transpose_5799" [label="[1, 40, 14, 14]", style=solid];
-"76 Transpose_5891" -> "81 Convolution_1353" [label="[1, 240, 1, 1]", style=solid];
-"77 Transpose_5923" -> "82 Multiply_9405" [label="[1, 240, 14, 14]", style=solid];
-"78 Transpose_6035" -> "83 Transpose_6039" [label="[1, 120, 14, 14]", style=solid];
-"78 Transpose_6035" -> "84 Transpose_6071" [label="[1, 120, 14, 14]", style=solid];
-"79 Transpose_5749" -> "85 Transpose_5751" [label="[1, 64, 1, 1]", style=solid];
-"80 Transpose_5799" -> "51 Transpose_5803" [label="[1, 40, 14, 14]", style=solid];
-"81 Convolution_1353" -> "86 Transpose_5897" [label="[1, 64, 1, 1]", style=solid];
-"82 Multiply_9405" -> "87 Transpose_5947" [label="[1, 40, 14, 14]", style=solid];
-"83 Transpose_6039" -> "88 Convolution_1464" [label="[1, 120, 1, 1]", style=solid];
-"84 Transpose_6071" -> "89 Multiply_9447" [label="[1, 120, 14, 14]", style=solid];
-"85 Transpose_5751" -> "90 Convolution_1251" [label="[1, 64, 1, 1]", style=solid];
-"86 Transpose_5897" -> "91 Transpose_5899" [label="[1, 64, 1, 1]", style=solid];
-"87 Transpose_5947" -> "55 Transpose_5951" [label="[1, 40, 14, 14]", style=solid];
-"88 Convolution_1464" -> "92 Transpose_6045" [label="[1, 32, 1, 1]", style=solid];
-"89 Multiply_9447" -> "93 Transpose_6095" [label="[1, 48, 14, 14]", style=solid];
-"90 Convolution_1251" -> "94 Transpose_5757" [label="[1, 240, 1, 1]", style=solid];
-"91 Transpose_5899" -> "95 Convolution_1362" [label="[1, 64, 1, 1]", style=solid];
-"92 Transpose_6045" -> "96 Transpose_6047" [label="[1, 32, 1, 1]", style=solid];
-"93 Transpose_6095" -> "97 Multiply_9461" [label="[1, 48, 14, 14]", style=solid];
-"93 Transpose_6095" -> "98 Transpose_6243" [label="[1, 48, 14, 14]", style=solid];
-"94 Transpose_5757" -> "99 Transpose_5771" [label="[1, 240, 1, 1]", style=solid];
-"95 Convolution_1362" -> "100 Transpose_5905" [label="[1, 240, 1, 1]", style=solid];
-"96 Transpose_6047" -> "101 Convolution_1473" [label="[1, 32, 1, 1]", style=solid];
-"97 Multiply_9461" -> "102 Transpose_6119" [label="[1, 144, 14, 14]", style=solid];
-"98 Transpose_6243" -> "103 Multiply_9503" [label="[1, 48, 14, 14]", style=solid];
-"99 Transpose_5771" -> "71 Transpose_5775" [label="[1, 240, 1, 1]", style=solid];
-"100 Transpose_5905" -> "104 Transpose_5919" [label="[1, 240, 1, 1]", style=solid];
-"101 Convolution_1473" -> "105 Transpose_6053" [label="[1, 120, 1, 1]", style=solid];
-"102 Transpose_6119" -> "106 Transpose_6137" [label="[1, 144, 14, 14]", style=solid];
-"103 Multiply_9503" -> "107 Transpose_6267" [label="[1, 288, 14, 14]", style=solid];
-"104 Transpose_5919" -> "77 Transpose_5923" [label="[1, 240, 1, 1]", style=solid];
-"105 Transpose_6053" -> "108 Transpose_6067" [label="[1, 120, 1, 1]", style=solid];
-"106 Transpose_6137" -> "109 Multiply_9475" [label="[1, 144, 14, 14]", style=solid];
-"107 Transpose_6267" -> "110 Transpose_6285" [label="[1, 288, 14, 14]", style=solid];
-"108 Transpose_6067" -> "84 Transpose_6071" [label="[1, 120, 1, 1]", style=solid];
-"109 Multiply_9475" -> "111 Transpose_6161" [label="[1, 144, 14, 14]", style=solid];
-"110 Transpose_6285" -> "112 Multiply_9517" [label="[1, 288, 14, 14]", style=solid];
-"111 Transpose_6161" -> "113 Transpose_6179" [label="[1, 144, 14, 14]", style=solid];
-"112 Multiply_9517" -> "114 Transpose_6336" [label="[1, 288, 7, 7]", style=solid];
-"113 Transpose_6179" -> "115 Transpose_6183" [label="[1, 144, 14, 14]", style=solid];
-"113 Transpose_6179" -> "116 Transpose_6215" [label="[1, 144, 14, 14]", style=solid];
-"114 Transpose_6336" -> "117 Transpose_6354" [label="[1, 288, 7, 7]", style=solid];
-"115 Transpose_6183" -> "118 Convolution_1574" [label="[1, 144, 1, 1]", style=solid];
-"116 Transpose_6215" -> "119 Multiply_9489" [label="[1, 144, 14, 14]", style=solid];
-"117 Transpose_6354" -> "120 Transpose_6358" [label="[1, 288, 7, 7]", style=solid];
-"117 Transpose_6354" -> "121 Transpose_6390" [label="[1, 288, 7, 7]", style=solid];
-"118 Convolution_1574" -> "122 Transpose_6189" [label="[1, 40, 1, 1]", style=solid];
-"119 Multiply_9489" -> "123 Transpose_6239" [label="[1, 48, 14, 14]", style=solid];
-"120 Transpose_6358" -> "124 Convolution_1713" [label="[1, 288, 1, 1]", style=solid];
-"121 Transpose_6390" -> "125 Multiply_9531" [label="[1, 288, 7, 7]", style=solid];
-"122 Transpose_6189" -> "126 Transpose_6191" [label="[1, 40, 1, 1]", style=solid];
-"123 Transpose_6239" -> "98 Transpose_6243" [label="[1, 48, 14, 14]", style=solid];
-"124 Convolution_1713" -> "127 Transpose_6364" [label="[1, 72, 1, 1]", style=solid];
-"125 Multiply_9531" -> "128 Transpose_6414" [label="[1, 96, 7, 7]", style=solid];
-"126 Transpose_6191" -> "129 Convolution_1583" [label="[1, 40, 1, 1]", style=solid];
-"127 Transpose_6364" -> "130 Transpose_6366" [label="[1, 72, 1, 1]", style=solid];
-"128 Transpose_6414" -> "131 Multiply_9545" [label="[1, 96, 7, 7]", style=solid];
-"128 Transpose_6414" -> "132 Transpose_6562" [label="[1, 96, 7, 7]", style=solid];
-"129 Convolution_1583" -> "133 Transpose_6197" [label="[1, 144, 1, 1]", style=solid];
-"130 Transpose_6366" -> "134 Convolution_1722" [label="[1, 72, 1, 1]", style=solid];
-"131 Multiply_9545" -> "135 Transpose_6438" [label="[1, 576, 7, 7]", style=solid];
-"132 Transpose_6562" -> "136 Multiply_9587" [label="[1, 96, 7, 7]", style=solid];
-"132 Transpose_6562" -> "137 Transpose_6710" [label="[1, 96, 7, 7]", style=solid];
-"133 Transpose_6197" -> "138 Transpose_6211" [label="[1, 144, 1, 1]", style=solid];
-"134 Convolution_1722" -> "139 Transpose_6372" [label="[1, 288, 1, 1]", style=solid];
-"135 Transpose_6438" -> "140 Transpose_6456" [label="[1, 576, 7, 7]", style=solid];
-"136 Multiply_9587" -> "141 Transpose_6586" [label="[1, 576, 7, 7]", style=solid];
-"137 Transpose_6710" -> "142 Multiply_9629" [label="[1, 96, 7, 7]", style=solid];
-"138 Transpose_6211" -> "116 Transpose_6215" [label="[1, 144, 1, 1]", style=solid];
-"139 Transpose_6372" -> "143 Transpose_6386" [label="[1, 288, 1, 1]", style=solid];
-"140 Transpose_6456" -> "144 Multiply_9559" [label="[1, 576, 7, 7]", style=solid];
-"141 Transpose_6586" -> "145 Transpose_6604" [label="[1, 576, 7, 7]", style=solid];
-"142 Multiply_9629" -> "146 Transpose_6734" [label="[1, 576, 7, 7]", style=solid];
-"143 Transpose_6386" -> "121 Transpose_6390" [label="[1, 288, 1, 1]", style=solid];
-"144 Multiply_9559" -> "147 Transpose_6480" [label="[1, 576, 7, 7]", style=solid];
-"145 Transpose_6604" -> "148 Multiply_9601" [label="[1, 576, 7, 7]", style=solid];
-"146 Transpose_6734" -> "149 Transpose_6752" [label="[1, 576, 7, 7]", style=solid];
-"147 Transpose_6480" -> "150 Transpose_6498" [label="[1, 576, 7, 7]", style=solid];
-"148 Multiply_9601" -> "151 Transpose_6628" [label="[1, 576, 7, 7]", style=solid];
-"149 Transpose_6752" -> "152 Transpose_6756" [label="[1, 576, 7, 7]", style=solid];
-"150 Transpose_6498" -> "153 Transpose_6502" [label="[1, 576, 7, 7]", style=solid];
-"150 Transpose_6498" -> "154 Transpose_6534" [label="[1, 576, 7, 7]", style=solid];
-"151 Transpose_6628" -> "155 Transpose_6646" [label="[1, 576, 7, 7]", style=solid];
-"152 Transpose_6756" -> "156 Convolution_2013" [label="[1, 576, 1, 1]", style=solid];
-"153 Transpose_6502" -> "157 Convolution_1823" [label="[1, 576, 1, 1]", style=solid];
-"154 Transpose_6534" -> "158 Multiply_9573" [label="[1, 576, 7, 7]", style=solid];
-"155 Transpose_6646" -> "159 Transpose_6650" [label="[1, 576, 7, 7]", style=solid];
-"155 Transpose_6646" -> "160 Transpose_6682" [label="[1, 576, 7, 7]", style=solid];
-"156 Convolution_2013" -> "161 Transpose_6762" [label="[1, 1024, 1, 1]", style=solid];
-"157 Convolution_1823" -> "162 Transpose_6508" [label="[1, 144, 1, 1]", style=solid];
-"158 Multiply_9573" -> "163 Transpose_6558" [label="[1, 96, 7, 7]", style=solid];
-"159 Transpose_6650" -> "164 Convolution_1934" [label="[1, 576, 1, 1]", style=solid];
-"160 Transpose_6682" -> "165 Multiply_9615" [label="[1, 576, 7, 7]", style=solid];
-"161 Transpose_6762" -> "166 Transpose_6780" [label="[1, 1024, 1, 1]", style=solid];
-"162 Transpose_6508" -> "167 Transpose_6510" [label="[1, 144, 1, 1]", style=solid];
-"163 Transpose_6558" -> "132 Transpose_6562" [label="[1, 96, 7, 7]", style=solid];
-"164 Convolution_1934" -> "168 Transpose_6656" [label="[1, 144, 1, 1]", style=solid];
-"165 Multiply_9615" -> "169 Transpose_6706" [label="[1, 96, 7, 7]", style=solid];
-"166 Transpose_6780" -> "170 Convolution_2025" [label="[1, 1024, 1, 1]", style=solid];
-"167 Transpose_6510" -> "171 Convolution_1832" [label="[1, 144, 1, 1]", style=solid];
-"168 Transpose_6656" -> "172 Transpose_6658" [label="[1, 144, 1, 1]", style=solid];
-"169 Transpose_6706" -> "137 Transpose_6710" [label="[1, 96, 7, 7]", style=solid];
-"170 Convolution_2025" -> "173 Transpose_6786" [label="[1, 1000, 1, 1]", style=solid];
-"171 Convolution_1832" -> "174 Transpose_6516" [label="[1, 576, 1, 1]", style=solid];
-"172 Transpose_6658" -> "175 Convolution_1943" [label="[1, 144, 1, 1]", style=solid];
-"173 Transpose_6786" -> "176 MobilenetV3small/Logits/BiasAdd" [label="[1, 1000, 1, 1]", style=solid];
-"174 Transpose_6516" -> "177 Transpose_6530" [label="[1, 576, 1, 1]", style=solid];
-"175 Convolution_1943" -> "178 Transpose_6664" [label="[1, 576, 1, 1]", style=solid];
-"176 MobilenetV3small/Logits/BiasAdd" -> "179 MobilenetV3small/flatten/Reshape" [label="[1, 1, 1, 1000]", style=solid];
-"177 Transpose_6530" -> "154 Transpose_6534" [label="[1, 576, 1, 1]", style=solid];
-"178 Transpose_6664" -> "180 Transpose_6678" [label="[1, 576, 1, 1]", style=solid];
-"179 MobilenetV3small/flatten/Reshape" -> "181 MobilenetV3small/Predictions/Softmax" [label="[1, 1000]", style=solid];
-"180 Transpose_6678" -> "160 Transpose_6682" [label="[1, 576, 1, 1]", style=solid];
-"181 MobilenetV3small/Predictions/Softmax" -> "182 Predictions" [label="[1, 1000]", style=solid];
-"183 MobilenetV3small/flatten/Const" -> "179 MobilenetV3small/flatten/Reshape" [label="[2]", style=dashed];
-"184 Constant_8887" -> "176 MobilenetV3small/Logits/BiasAdd" [label="[4]", style=dashed];
-"185 Transpose_6784" -> "173 Transpose_6786" [label="[1, 1000, 1, 1]", style=solid];
-"186 Transpose_2024" -> "170 Convolution_2025" [label="[1000, 1024, 1, 1]", style=solid];
-"187 Transpose_6760" -> "161 Transpose_6762" [label="[1, 1024, 1, 1]", style=solid];
-"188 Transpose_2012" -> "156 Convolution_2013" [label="[1024, 576, 1, 1]", style=solid];
-"189 Constant_6754" -> "152 Transpose_6756" [label="[2]", style=dashed];
-"190 Constant_9637" -> "146 Transpose_6734" [label="[1, 576, 1, 1]", style=solid];
-"191 Multiply_9830" -> "142 Multiply_9629" [label="[576, 96, 1, 1]", style=solid];
-"192 Constant_9623" -> "169 Transpose_6706" [label="[1, 96, 1, 1]", style=solid];
-"193 Multiply_9824" -> "165 Multiply_9615" [label="[96, 576, 1, 1]", style=solid];
-"194 Transpose_6662" -> "178 Transpose_6664" [label="[1, 576, 1, 1]", style=solid];
-"195 Transpose_1942" -> "175 Convolution_1943" [label="[576, 144, 1, 1]", style=solid];
-"196 Transpose_6654" -> "168 Transpose_6656" [label="[1, 144, 1, 1]", style=solid];
-"197 Transpose_1933" -> "164 Convolution_1934" [label="[144, 576, 1, 1]", style=solid];
-"198 Constant_6648" -> "159 Transpose_6650" [label="[2]", style=dashed];
-"199 Constant_9609" -> "151 Transpose_6628" [label="[1, 576, 1, 1]", style=solid];
-"200 Multiply_9819" -> "148 Multiply_9601" [label="[576, 1, 1, 5, 5]", style=solid];
-"201 Constant_9595" -> "141 Transpose_6586" [label="[1, 576, 1, 1]", style=solid];
-"202 Multiply_9813" -> "136 Multiply_9587" [label="[576, 96, 1, 1]", style=solid];
-"203 Constant_9581" -> "163 Transpose_6558" [label="[1, 96, 1, 1]", style=solid];
-"204 Multiply_9807" -> "158 Multiply_9573" [label="[96, 576, 1, 1]", style=solid];
-"205 Transpose_6514" -> "174 Transpose_6516" [label="[1, 576, 1, 1]", style=solid];
-"206 Transpose_1831" -> "171 Convolution_1832" [label="[576, 144, 1, 1]", style=solid];
-"207 Transpose_6506" -> "162 Transpose_6508" [label="[1, 144, 1, 1]", style=solid];
-"208 Transpose_1822" -> "157 Convolution_1823" [label="[144, 576, 1, 1]", style=solid];
-"209 Constant_6500" -> "153 Transpose_6502" [label="[2]", style=dashed];
-"210 Constant_9567" -> "147 Transpose_6480" [label="[1, 576, 1, 1]", style=solid];
-"211 Multiply_9802" -> "144 Multiply_9559" [label="[576, 1, 1, 5, 5]", style=solid];
-"212 Constant_9553" -> "135 Transpose_6438" [label="[1, 576, 1, 1]", style=solid];
-"213 Multiply_9796" -> "131 Multiply_9545" [label="[576, 96, 1, 1]", style=solid];
-"214 Constant_9539" -> "128 Transpose_6414" [label="[1, 96, 1, 1]", style=solid];
-"215 Multiply_9790" -> "125 Multiply_9531" [label="[96, 288, 1, 1]", style=solid];
-"216 Transpose_6370" -> "139 Transpose_6372" [label="[1, 288, 1, 1]", style=solid];
-"217 Transpose_1721" -> "134 Convolution_1722" [label="[288, 72, 1, 1]", style=solid];
-"218 Transpose_6362" -> "127 Transpose_6364" [label="[1, 72, 1, 1]", style=solid];
-"219 Transpose_1712" -> "124 Convolution_1713" [label="[72, 288, 1, 1]", style=solid];
-"220 Constant_6356" -> "120 Transpose_6358" [label="[2]", style=dashed];
-"221 Constant_9525" -> "114 Transpose_6336" [label="[1, 288, 1, 1]", style=solid];
-"222 Multiply_9785" -> "112 Multiply_9517" [label="[288, 1, 1, 5, 5]", style=solid];
-"223 Constant_9511" -> "107 Transpose_6267" [label="[1, 288, 1, 1]", style=solid];
-"224 Multiply_9779" -> "103 Multiply_9503" [label="[288, 48, 1, 1]", style=solid];
-"225 Constant_9497" -> "123 Transpose_6239" [label="[1, 48, 1, 1]", style=solid];
-"226 Multiply_9773" -> "119 Multiply_9489" [label="[48, 144, 1, 1]", style=solid];
-"227 Transpose_6195" -> "133 Transpose_6197" [label="[1, 144, 1, 1]", style=solid];
-"228 Transpose_1582" -> "129 Convolution_1583" [label="[144, 40, 1, 1]", style=solid];
-"229 Transpose_6187" -> "122 Transpose_6189" [label="[1, 40, 1, 1]", style=solid];
-"230 Transpose_1573" -> "118 Convolution_1574" [label="[40, 144, 1, 1]", style=solid];
-"231 Constant_6181" -> "115 Transpose_6183" [label="[2]", style=dashed];
-"232 Constant_9483" -> "111 Transpose_6161" [label="[1, 144, 1, 1]", style=solid];
-"233 Multiply_9768" -> "109 Multiply_9475" [label="[144, 1, 1, 5, 5]", style=solid];
-"234 Constant_9469" -> "102 Transpose_6119" [label="[1, 144, 1, 1]", style=solid];
-"235 Multiply_9762" -> "97 Multiply_9461" [label="[144, 48, 1, 1]", style=solid];
-"236 Constant_9455" -> "93 Transpose_6095" [label="[1, 48, 1, 1]", style=solid];
-"237 Multiply_9756" -> "89 Multiply_9447" [label="[48, 120, 1, 1]", style=solid];
-"238 Transpose_6051" -> "105 Transpose_6053" [label="[1, 120, 1, 1]", style=solid];
-"239 Transpose_1472" -> "101 Convolution_1473" [label="[120, 32, 1, 1]", style=solid];
-"240 Transpose_6043" -> "92 Transpose_6045" [label="[1, 32, 1, 1]", style=solid];
-"241 Transpose_1463" -> "88 Convolution_1464" [label="[32, 120, 1, 1]", style=solid];
-"242 Constant_6037" -> "83 Transpose_6039" [label="[2]", style=dashed];
-"243 Constant_9441" -> "73 Transpose_6017" [label="[1, 120, 1, 1]", style=solid];
-"244 Multiply_9751" -> "69 Multiply_9433" [label="[120, 1, 1, 5, 5]", style=solid];
-"245 Constant_9427" -> "63 Transpose_5975" [label="[1, 120, 1, 1]", style=solid];
-"246 Multiply_9745" -> "59 Multiply_9419" [label="[120, 40, 1, 1]", style=solid];
-"247 Constant_9413" -> "87 Transpose_5947" [label="[1, 40, 1, 1]", style=solid];
-"248 Multiply_9739" -> "82 Multiply_9405" [label="[40, 240, 1, 1]", style=solid];
-"249 Transpose_5903" -> "100 Transpose_5905" [label="[1, 240, 1, 1]", style=solid];
-"250 Transpose_1361" -> "95 Convolution_1362" [label="[240, 64, 1, 1]", style=solid];
-"251 Transpose_5895" -> "86 Transpose_5897" [label="[1, 64, 1, 1]", style=solid];
-"252 Transpose_1352" -> "81 Convolution_1353" [label="[64, 240, 1, 1]", style=solid];
-"253 Constant_5889" -> "76 Transpose_5891" [label="[2]", style=dashed];
-"254 Constant_9399" -> "68 Transpose_5869" [label="[1, 240, 1, 1]", style=solid];
-"255 Multiply_9734" -> "65 Multiply_9391" [label="[240, 1, 1, 5, 5]", style=solid];
-"256 Constant_9385" -> "58 Transpose_5827" [label="[1, 240, 1, 1]", style=solid];
-"257 Multiply_9728" -> "54 Multiply_9377" [label="[240, 40, 1, 1]", style=solid];
-"258 Constant_9371" -> "80 Transpose_5799" [label="[1, 40, 1, 1]", style=solid];
-"259 Multiply_9722" -> "75 Multiply_9363" [label="[40, 240, 1, 1]", style=solid];
-"260 Transpose_5755" -> "94 Transpose_5757" [label="[1, 240, 1, 1]", style=solid];
-"261 Transpose_1250" -> "90 Convolution_1251" [label="[240, 64, 1, 1]", style=solid];
-"262 Transpose_5747" -> "79 Transpose_5749" [label="[1, 64, 1, 1]", style=solid];
-"263 Transpose_1241" -> "74 Convolution_1242" [label="[64, 240, 1, 1]", style=solid];
-"264 Constant_5741" -> "70 Transpose_5743" [label="[2]", style=dashed];
-"265 Constant_9357" -> "64 Transpose_5721" [label="[1, 240, 1, 1]", style=solid];
-"266 Multiply_9717" -> "61 Multiply_9349" [label="[240, 1, 1, 5, 5]", style=solid];
-"267 Constant_9343" -> "53 Transpose_5679" [label="[1, 240, 1, 1]", style=solid];
-"268 Multiply_9711" -> "50 Multiply_9335" [label="[240, 40, 1, 1]", style=solid];
-"269 Constant_9329" -> "48 Transpose_5655" [label="[1, 40, 1, 1]", style=solid];
-"270 Multiply_9705" -> "46 Multiply_9321" [label="[40, 96, 1, 1]", style=solid];
-"271 Transpose_5611" -> "56 Transpose_5613" [label="[1, 96, 1, 1]", style=solid];
-"272 Transpose_1140" -> "52 Convolution_1141" [label="[96, 24, 1, 1]", style=solid];
-"273 Transpose_5603" -> "47 Transpose_5605" [label="[1, 24, 1, 1]", style=solid];
-"274 Transpose_1131" -> "45 Convolution_1132" [label="[24, 96, 1, 1]", style=solid];
-"275 Constant_5597" -> "43 Transpose_5599" [label="[2]", style=dashed];
-"276 Constant_9315" -> "39 Transpose_5577" [label="[1, 96, 1, 1]", style=solid];
-"277 Multiply_9700" -> "37 Multiply_9307" [label="[96, 1, 1, 5, 5]", style=solid];
-"278 Constant_9301" -> "33 Transpose_5508" [label="[1, 96, 1, 1]", style=solid];
-"279 Multiply_9694" -> "31 Multiply_9293" [label="[96, 24, 1, 1]", style=solid];
-"280 Constant_9287" -> "42 Transpose_5480" [label="[1, 24, 1, 1]", style=solid];
-"281 Multiply_9688" -> "40 Multiply_9279" [label="[24, 88, 1, 1]", style=solid];
-"282 Constant_9273" -> "36 Transpose_5454" [label="[1, 88, 1, 1]", style=solid];
-"283 Multiply_9683" -> "34 Multiply_9265" [label="[88, 1, 1, 3, 3]", style=solid];
-"284 Constant_9259" -> "30 Transpose_5428" [label="[1, 88, 1, 1]", style=solid];
-"285 Multiply_9677" -> "28 Multiply_9251" [label="[88, 24, 1, 1]", style=solid];
-"286 Constant_9245" -> "27 Transpose_5404" [label="[1, 24, 1, 1]", style=solid];
-"287 Multiply_9671" -> "26 Multiply_9237" [label="[24, 72, 1, 1]", style=solid];
-"288 Constant_9231" -> "24 Transpose_5378" [label="[1, 72, 1, 1]", style=solid];
-"289 Multiply_9666" -> "23 Multiply_9223" [label="[72, 1, 1, 3, 3]", style=solid];
-"290 Constant_9217" -> "19 Transpose_5325" [label="[1, 72, 1, 1]", style=solid];
-"291 Multiply_9660" -> "17 Multiply_9209" [label="[72, 16, 1, 1]", style=solid];
-"292 Constant_9203" -> "15 Transpose_5301" [label="[1, 16, 1, 1]", style=solid];
-"293 Multiply_9654" -> "13 Multiply_9195" [label="[16, 16, 1, 1]", style=solid];
-"294 Transpose_5257" -> "20 Transpose_5259" [label="[1, 16, 1, 1]", style=solid];
-"295 Transpose_809" -> "18 Convolution_810" [label="[16, 8, 1, 1]", style=solid];
-"296 Transpose_5249" -> "14 Transpose_5251" [label="[1, 8, 1, 1]", style=solid];
-"297 Transpose_800" -> "12 Convolution_801" [label="[8, 16, 1, 1]", style=solid];
-"298 Constant_5243" -> "10 Transpose_5245" [label="[2]", style=dashed];
-"299 Constant_9189" -> "8 Transpose_5239" [label="[1, 16, 1, 1]", style=solid];
-"300 Multiply_9649" -> "7 Multiply_9181" [label="[16, 1, 1, 3, 3]", style=solid];
-"301 Constant_9175" -> "5 Transpose_5170" [label="[1, 16, 1, 1]", style=solid];
-"302 Gather_10068" -> "4 Multiply_9167" [label="[16, 3, 3, 3]", style=solid];
-"303 Unsqueeze_7776" -> "3 Transpose_710" [label="[1, 1, 1, 1]", style=solid];
-"304 Unsqueeze_7782" -> "2 Transpose_7774" [label="[1, 1, 1, 1]", style=solid];
-"305 Constant_7779" -> "1 Transpose_7780" [label="[4]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/removed_nodes_in_QuantizedModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/removed_nodes_in_QuantizedModel.dot
deleted file mode 100644
index 7ab98ea6599..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/removed_nodes_in_QuantizedModel.dot
+++ /dev/null
@@ -1,92 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Conv_1" [id=2, type=Convolution];
-"3 Mul" [id=3, type=Multiply];
-"4 Relu_1" [id=4, type=Relu];
-"5 Add_1" [id=5, type=Add];
-"6 Concat_1" [id=6, type=Concat];
-"7 Transpose/fq_input_0" [id=7, type=FakeQuantize];
-"8 Add_2" [id=8, type=Add];
-"9 Conv_2" [id=9, type=Convolution];
-"10 Transpose" [id=10, type=Transpose];
-"11 Concat_2" [id=11, type=Concat];
-"12 Relu_2" [id=12, type=Relu];
-"13 Reshape_237" [id=13, type=Reshape];
-"14 Conv_3/fq_input_0" [id=14, type=FakeQuantize];
-"15 MatMul_244" [id=15, type=MatMul];
-"16 Conv_3" [id=16, type=Convolution];
-"17 Result" [id=17, type=Result];
-"18 Constant_243" [id=18, type=Constant];
-"19 Constant_236" [id=19, type=Constant];
-"20 Constant_228" [id=20, type=Constant];
-"21 Constant_200" [id=21, type=Constant];
-"22 Constant_198" [id=22, type=Constant];
-"23 Constant_197" [id=23, type=Constant];
-"24 Constant_196" [id=24, type=Constant];
-"25 Constant_195" [id=25, type=Constant];
-"26 Constant_193" [id=26, type=Constant];
-"27 Constant_191" [id=27, type=Constant];
-"28 Conv_1/fq_weights_0" [id=28, type=FakeQuantize];
-"29 Constant_186" [id=29, type=Constant];
-"30 Constant_185" [id=30, type=Constant];
-"31 Constant_184" [id=31, type=Constant];
-"32 Constant_183" [id=32, type=Constant];
-"33 Constant_182" [id=33, type=Constant];
-"34 Constant_221" [id=34, type=Constant];
-"35 Constant_219" [id=35, type=Constant];
-"36 Constant_218" [id=36, type=Constant];
-"37 Constant_217" [id=37, type=Constant];
-"38 Constant_216" [id=38, type=Constant];
-"39 Conv_2/fq_weights_0" [id=39, type=FakeQuantize];
-"40 Constant_212" [id=40, type=Constant];
-"41 Constant_211" [id=41, type=Constant];
-"42 Constant_210" [id=42, type=Constant];
-"43 Constant_209" [id=43, type=Constant];
-"44 Constant_208" [id=44, type=Constant];
-"0 Input_1" -> "2 Conv_1" [label="[1, 3, 14, 28]", style=solid];
-"1 Input_2" -> "3 Mul" [label="[1, 3, 28, 14]", style=solid];
-"2 Conv_1" -> "4 Relu_1" [label="[1, 3, 14, 28]", style=solid];
-"3 Mul" -> "5 Add_1" [label="[1, 3, 28, 14]", style=solid];
-"4 Relu_1" -> "6 Concat_1" [label="[1, 3, 14, 28]", style=solid];
-"5 Add_1" -> "7 Transpose/fq_input_0" [label="[1, 3, 28, 14]", style=solid];
-"6 Concat_1" -> "8 Add_2" [label="[1, 6, 14, 28]", style=solid];
-"6 Concat_1" -> "9 Conv_2" [label="[1, 6, 14, 28]", style=solid];
-"7 Transpose/fq_input_0" -> "10 Transpose" [label="[1, 3, 28, 14]", style=solid];
-"8 Add_2" -> "11 Concat_2" [label="[1, 6, 14, 28]", style=solid];
-"9 Conv_2" -> "12 Relu_2" [label="[1, 12, 14, 28]", style=solid];
-"10 Transpose" -> "6 Concat_1" [label="[1, 3, 14, 28]", style=solid];
-"11 Concat_2" -> "13 Reshape_237" [label="[1, 12, 14, 28]", style=solid];
-"12 Relu_2" -> "14 Conv_3/fq_input_0" [label="[1, 12, 14, 28]", style=solid];
-"13 Reshape_237" -> "15 MatMul_244" [label="[2, 2352]", style=solid];
-"14 Conv_3/fq_input_0" -> "16 Conv_3" [label="[1, 12, 14, 28]", style=solid];
-"15 MatMul_244" -> "17 Result" [label="[2, 100]", style=solid];
-"16 Conv_3" -> "11 Concat_2" [label="[1, 6, 14, 28]", style=solid];
-"18 Constant_243" -> "15 MatMul_244" [label="[100, 2352]", style=solid];
-"19 Constant_236" -> "13 Reshape_237" [label="[2]", style=dashed];
-"20 Constant_228" -> "8 Add_2" [label="[1, 6, 1, 1]", style=solid];
-"21 Constant_200" -> "10 Transpose" [label="[4]", style=dashed];
-"22 Constant_198" -> "7 Transpose/fq_input_0" [label="[]", style=solid];
-"23 Constant_197" -> "7 Transpose/fq_input_0" [label="[]", style=solid];
-"24 Constant_196" -> "7 Transpose/fq_input_0" [label="[]", style=solid];
-"25 Constant_195" -> "7 Transpose/fq_input_0" [label="[]", style=solid];
-"26 Constant_193" -> "5 Add_1" [label="[1, 3, 1, 1]", style=solid];
-"27 Constant_191" -> "3 Mul" [label="[1, 3, 1, 1]", style=solid];
-"28 Conv_1/fq_weights_0" -> "2 Conv_1" [label="[3, 3, 1, 1]", style=solid];
-"29 Constant_186" -> "28 Conv_1/fq_weights_0" [label="[]", style=solid];
-"30 Constant_185" -> "28 Conv_1/fq_weights_0" [label="[]", style=solid];
-"31 Constant_184" -> "28 Conv_1/fq_weights_0" [label="[]", style=solid];
-"32 Constant_183" -> "28 Conv_1/fq_weights_0" [label="[]", style=solid];
-"33 Constant_182" -> "28 Conv_1/fq_weights_0" [label="[3, 3, 1, 1]", style=solid];
-"34 Constant_221" -> "16 Conv_3" [label="[6, 12, 1, 1]", style=solid];
-"35 Constant_219" -> "14 Conv_3/fq_input_0" [label="[]", style=solid];
-"36 Constant_218" -> "14 Conv_3/fq_input_0" [label="[]", style=solid];
-"37 Constant_217" -> "14 Conv_3/fq_input_0" [label="[]", style=solid];
-"38 Constant_216" -> "14 Conv_3/fq_input_0" [label="[]", style=solid];
-"39 Conv_2/fq_weights_0" -> "9 Conv_2" [label="[12, 6, 1, 1]", style=solid];
-"40 Constant_212" -> "39 Conv_2/fq_weights_0" [label="[]", style=solid];
-"41 Constant_211" -> "39 Conv_2/fq_weights_0" [label="[]", style=solid];
-"42 Constant_210" -> "39 Conv_2/fq_weights_0" [label="[]", style=solid];
-"43 Constant_209" -> "39 Conv_2/fq_weights_0" [label="[]", style=solid];
-"44 Constant_208" -> "39 Conv_2/fq_weights_0" [label="[12, 6, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/resnet-18-pytorch.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/resnet-18-pytorch.dot
deleted file mode 100644
index 24fecd18ab3..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/resnet-18-pytorch.dot
+++ /dev/null
@@ -1,249 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_1715" [id=1, type=Multiply];
-"2 Divide_401" [id=2, type=Add];
-"3 /conv1/Conv/WithoutBiases" [id=3, type=Convolution];
-"4 /conv1/Conv" [id=4, type=Add];
-"5 /relu/Relu" [id=5, type=Relu];
-"6 /maxpool/MaxPool" [id=6, type=MaxPool];
-"7 /layer1/layer1.0/Add" [id=7, type=Add];
-"8 /layer1/layer1.0/conv1/Conv/WithoutBiases" [id=8, type=Convolution];
-"9 /layer1/layer1.0/relu_1/Relu" [id=9, type=Relu];
-"10 /layer1/layer1.0/conv1/Conv" [id=10, type=Add];
-"11 /layer1/layer1.1/Add" [id=11, type=Add];
-"12 /layer1/layer1.1/conv1/Conv/WithoutBiases" [id=12, type=Convolution];
-"13 /layer1/layer1.0/relu/Relu" [id=13, type=Relu];
-"14 /layer1/layer1.1/relu_1/Relu" [id=14, type=Relu];
-"15 /layer1/layer1.1/conv1/Conv" [id=15, type=Add];
-"16 /layer1/layer1.0/conv2/Conv/WithoutBiases" [id=16, type=Convolution];
-"17 /layer2/layer2.0/conv1/Conv/WithoutBiases" [id=17, type=Convolution];
-"18 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [id=18, type=Convolution];
-"19 /layer1/layer1.1/relu/Relu" [id=19, type=Relu];
-"20 /layer1/layer1.0/conv2/Conv" [id=20, type=Add];
-"21 /layer2/layer2.0/conv1/Conv" [id=21, type=Add];
-"22 /layer2/layer2.0/downsample/downsample.0/Conv" [id=22, type=Add];
-"23 /layer1/layer1.1/conv2/Conv/WithoutBiases" [id=23, type=Convolution];
-"24 /layer2/layer2.0/relu/Relu" [id=24, type=Relu];
-"25 /layer2/layer2.0/Add" [id=25, type=Add];
-"26 /layer1/layer1.1/conv2/Conv" [id=26, type=Add];
-"27 /layer2/layer2.0/conv2/Conv/WithoutBiases" [id=27, type=Convolution];
-"28 /layer2/layer2.0/relu_1/Relu" [id=28, type=Relu];
-"29 /layer2/layer2.0/conv2/Conv" [id=29, type=Add];
-"30 /layer2/layer2.1/Add" [id=30, type=Add];
-"31 /layer2/layer2.1/conv1/Conv/WithoutBiases" [id=31, type=Convolution];
-"32 /layer2/layer2.1/relu_1/Relu" [id=32, type=Relu];
-"33 /layer2/layer2.1/conv1/Conv" [id=33, type=Add];
-"34 /layer3/layer3.0/conv1/Conv/WithoutBiases" [id=34, type=Convolution];
-"35 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [id=35, type=Convolution];
-"36 /layer2/layer2.1/relu/Relu" [id=36, type=Relu];
-"37 /layer3/layer3.0/conv1/Conv" [id=37, type=Add];
-"38 /layer3/layer3.0/downsample/downsample.0/Conv" [id=38, type=Add];
-"39 /layer2/layer2.1/conv2/Conv/WithoutBiases" [id=39, type=Convolution];
-"40 /layer3/layer3.0/relu/Relu" [id=40, type=Relu];
-"41 /layer3/layer3.0/Add" [id=41, type=Add];
-"42 /layer2/layer2.1/conv2/Conv" [id=42, type=Add];
-"43 /layer3/layer3.0/conv2/Conv/WithoutBiases" [id=43, type=Convolution];
-"44 /layer3/layer3.0/relu_1/Relu" [id=44, type=Relu];
-"45 /layer3/layer3.0/conv2/Conv" [id=45, type=Add];
-"46 /layer3/layer3.1/Add" [id=46, type=Add];
-"47 /layer3/layer3.1/conv1/Conv/WithoutBiases" [id=47, type=Convolution];
-"48 /layer3/layer3.1/relu_1/Relu" [id=48, type=Relu];
-"49 /layer3/layer3.1/conv1/Conv" [id=49, type=Add];
-"50 /layer4/layer4.0/conv1/Conv/WithoutBiases" [id=50, type=Convolution];
-"51 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [id=51, type=Convolution];
-"52 /layer3/layer3.1/relu/Relu" [id=52, type=Relu];
-"53 /layer4/layer4.0/conv1/Conv" [id=53, type=Add];
-"54 /layer4/layer4.0/downsample/downsample.0/Conv" [id=54, type=Add];
-"55 /layer3/layer3.1/conv2/Conv/WithoutBiases" [id=55, type=Convolution];
-"56 /layer4/layer4.0/relu/Relu" [id=56, type=Relu];
-"57 /layer4/layer4.0/Add" [id=57, type=Add];
-"58 /layer3/layer3.1/conv2/Conv" [id=58, type=Add];
-"59 /layer4/layer4.0/conv2/Conv/WithoutBiases" [id=59, type=Convolution];
-"60 /layer4/layer4.0/relu_1/Relu" [id=60, type=Relu];
-"61 /layer4/layer4.0/conv2/Conv" [id=61, type=Add];
-"62 /layer4/layer4.1/Add" [id=62, type=Add];
-"63 /layer4/layer4.1/conv1/Conv/WithoutBiases" [id=63, type=Convolution];
-"64 /layer4/layer4.1/relu_1/Relu" [id=64, type=Relu];
-"65 /layer4/layer4.1/conv1/Conv" [id=65, type=Add];
-"66 /avgpool/GlobalAveragePool" [id=66, type=ReduceMean];
-"67 /layer4/layer4.1/relu/Relu" [id=67, type=Relu];
-"68 /Flatten" [id=68, type=Reshape];
-"69 /layer4/layer4.1/conv2/Conv/WithoutBiases" [id=69, type=Convolution];
-"70 /fc/Gemm/WithoutBiases" [id=70, type=MatMul];
-"71 /layer4/layer4.1/conv2/Conv" [id=71, type=Add];
-"72 prob" [id=72, type=Add];
-"73 prob/sink_port_0" [id=73, type=Result];
-"74 Constant_1789" [id=74, type=Constant];
-"75 fc.weight" [id=75, type=Constant];
-"76 Constant_380" [id=76, type=Constant];
-"77 Range_376" [id=77, type=Constant];
-"78 Reshape_331" [id=78, type=Constant];
-"79 onnx^^Conv_244" [id=79, label="79 onnx::Conv_244", type=Constant];
-"80 Reshape_250" [id=80, type=Constant];
-"81 onnx^^Conv_229" [id=81, label="81 onnx::Conv_229", type=Constant];
-"82 Reshape_169" [id=82, type=Constant];
-"83 onnx^^Conv_214" [id=83, label="83 onnx::Conv_214", type=Constant];
-"84 Reshape_55" [id=84, type=Constant];
-"85 Gather_1788" [id=85, type=Constant];
-"86 Gather_1785" [id=86, type=Constant];
-"87 Gather_1782" [id=87, type=Constant];
-"88 Reshape_88" [id=88, type=Constant];
-"89 onnx^^Conv_199" [id=89, label="89 onnx::Conv_199", type=Constant];
-"90 Reshape_72" [id=90, type=Constant];
-"91 onnx^^Conv_196" [id=91, label="91 onnx::Conv_196", type=Constant];
-"92 Reshape_121" [id=92, type=Constant];
-"93 onnx^^Conv_205" [id=93, label="93 onnx::Conv_205", type=Constant];
-"94 Reshape_105" [id=94, type=Constant];
-"95 onnx^^Conv_202" [id=95, label="95 onnx::Conv_202", type=Constant];
-"96 Reshape_154" [id=96, type=Constant];
-"97 onnx^^Conv_211" [id=97, label="97 onnx::Conv_211", type=Constant];
-"98 Reshape_138" [id=98, type=Constant];
-"99 onnx^^Conv_208" [id=99, label="99 onnx::Conv_208", type=Constant];
-"100 Reshape_202" [id=100, type=Constant];
-"101 onnx^^Conv_220" [id=101, label="101 onnx::Conv_220", type=Constant];
-"102 Reshape_186" [id=102, type=Constant];
-"103 onnx^^Conv_217" [id=103, label="103 onnx::Conv_217", type=Constant];
-"104 Reshape_235" [id=104, type=Constant];
-"105 onnx^^Conv_226" [id=105, label="105 onnx::Conv_226", type=Constant];
-"106 Reshape_219" [id=106, type=Constant];
-"107 onnx^^Conv_223" [id=107, label="107 onnx::Conv_223", type=Constant];
-"108 Reshape_283" [id=108, type=Constant];
-"109 onnx^^Conv_235" [id=109, label="109 onnx::Conv_235", type=Constant];
-"110 Reshape_267" [id=110, type=Constant];
-"111 onnx^^Conv_232" [id=111, label="111 onnx::Conv_232", type=Constant];
-"112 Reshape_316" [id=112, type=Constant];
-"113 onnx^^Conv_241" [id=113, label="113 onnx::Conv_241", type=Constant];
-"114 Reshape_300" [id=114, type=Constant];
-"115 onnx^^Conv_238" [id=115, label="115 onnx::Conv_238", type=Constant];
-"116 Reshape_364" [id=116, type=Constant];
-"117 onnx^^Conv_250" [id=117, label="117 onnx::Conv_250", type=Constant];
-"118 Reshape_348" [id=118, type=Constant];
-"119 onnx^^Conv_247" [id=119, label="119 onnx::Conv_247", type=Constant];
-"0 data" -> "1 Multiply_1715" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_1715" -> "2 Divide_401" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_401" -> "3 /conv1/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"3 /conv1/Conv/WithoutBiases" -> "4 /conv1/Conv" [label="[1, 64, 112, 112]", style=solid];
-"4 /conv1/Conv" -> "5 /relu/Relu" [label="[1, 64, 112, 112]", style=solid];
-"5 /relu/Relu" -> "6 /maxpool/MaxPool" [label="[1, 64, 112, 112]", style=solid];
-"6 /maxpool/MaxPool" -> "7 /layer1/layer1.0/Add" [label="[1, 64, 56, 56]", style=solid];
-"6 /maxpool/MaxPool" -> "8 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"7 /layer1/layer1.0/Add" -> "9 /layer1/layer1.0/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"8 /layer1/layer1.0/conv1/Conv/WithoutBiases" -> "10 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"9 /layer1/layer1.0/relu_1/Relu" -> "11 /layer1/layer1.1/Add" [label="[1, 64, 56, 56]", style=solid];
-"9 /layer1/layer1.0/relu_1/Relu" -> "12 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"10 /layer1/layer1.0/conv1/Conv" -> "13 /layer1/layer1.0/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"11 /layer1/layer1.1/Add" -> "14 /layer1/layer1.1/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"12 /layer1/layer1.1/conv1/Conv/WithoutBiases" -> "15 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"13 /layer1/layer1.0/relu/Relu" -> "16 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"14 /layer1/layer1.1/relu_1/Relu" -> "17 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"14 /layer1/layer1.1/relu_1/Relu" -> "18 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"15 /layer1/layer1.1/conv1/Conv" -> "19 /layer1/layer1.1/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"16 /layer1/layer1.0/conv2/Conv/WithoutBiases" -> "20 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"17 /layer2/layer2.0/conv1/Conv/WithoutBiases" -> "21 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"18 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" -> "22 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 128, 28, 28]", style=solid];
-"19 /layer1/layer1.1/relu/Relu" -> "23 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"20 /layer1/layer1.0/conv2/Conv" -> "7 /layer1/layer1.0/Add" [label="[1, 64, 56, 56]", style=solid];
-"21 /layer2/layer2.0/conv1/Conv" -> "24 /layer2/layer2.0/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"22 /layer2/layer2.0/downsample/downsample.0/Conv" -> "25 /layer2/layer2.0/Add" [label="[1, 128, 28, 28]", style=solid];
-"23 /layer1/layer1.1/conv2/Conv/WithoutBiases" -> "26 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"24 /layer2/layer2.0/relu/Relu" -> "27 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"25 /layer2/layer2.0/Add" -> "28 /layer2/layer2.0/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"26 /layer1/layer1.1/conv2/Conv" -> "11 /layer1/layer1.1/Add" [label="[1, 64, 56, 56]", style=solid];
-"27 /layer2/layer2.0/conv2/Conv/WithoutBiases" -> "29 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"28 /layer2/layer2.0/relu_1/Relu" -> "30 /layer2/layer2.1/Add" [label="[1, 128, 28, 28]", style=solid];
-"28 /layer2/layer2.0/relu_1/Relu" -> "31 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"29 /layer2/layer2.0/conv2/Conv" -> "25 /layer2/layer2.0/Add" [label="[1, 128, 28, 28]", style=solid];
-"30 /layer2/layer2.1/Add" -> "32 /layer2/layer2.1/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"31 /layer2/layer2.1/conv1/Conv/WithoutBiases" -> "33 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"32 /layer2/layer2.1/relu_1/Relu" -> "34 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"32 /layer2/layer2.1/relu_1/Relu" -> "35 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"33 /layer2/layer2.1/conv1/Conv" -> "36 /layer2/layer2.1/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"34 /layer3/layer3.0/conv1/Conv/WithoutBiases" -> "37 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"35 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" -> "38 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 256, 14, 14]", style=solid];
-"36 /layer2/layer2.1/relu/Relu" -> "39 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"37 /layer3/layer3.0/conv1/Conv" -> "40 /layer3/layer3.0/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"38 /layer3/layer3.0/downsample/downsample.0/Conv" -> "41 /layer3/layer3.0/Add" [label="[1, 256, 14, 14]", style=solid];
-"39 /layer2/layer2.1/conv2/Conv/WithoutBiases" -> "42 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"40 /layer3/layer3.0/relu/Relu" -> "43 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"41 /layer3/layer3.0/Add" -> "44 /layer3/layer3.0/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"42 /layer2/layer2.1/conv2/Conv" -> "30 /layer2/layer2.1/Add" [label="[1, 128, 28, 28]", style=solid];
-"43 /layer3/layer3.0/conv2/Conv/WithoutBiases" -> "45 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"44 /layer3/layer3.0/relu_1/Relu" -> "46 /layer3/layer3.1/Add" [label="[1, 256, 14, 14]", style=solid];
-"44 /layer3/layer3.0/relu_1/Relu" -> "47 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"45 /layer3/layer3.0/conv2/Conv" -> "41 /layer3/layer3.0/Add" [label="[1, 256, 14, 14]", style=solid];
-"46 /layer3/layer3.1/Add" -> "48 /layer3/layer3.1/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"47 /layer3/layer3.1/conv1/Conv/WithoutBiases" -> "49 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"48 /layer3/layer3.1/relu_1/Relu" -> "50 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"48 /layer3/layer3.1/relu_1/Relu" -> "51 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"49 /layer3/layer3.1/conv1/Conv" -> "52 /layer3/layer3.1/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"50 /layer4/layer4.0/conv1/Conv/WithoutBiases" -> "53 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"51 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" -> "54 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 512, 7, 7]", style=solid];
-"52 /layer3/layer3.1/relu/Relu" -> "55 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"53 /layer4/layer4.0/conv1/Conv" -> "56 /layer4/layer4.0/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"54 /layer4/layer4.0/downsample/downsample.0/Conv" -> "57 /layer4/layer4.0/Add" [label="[1, 512, 7, 7]", style=solid];
-"55 /layer3/layer3.1/conv2/Conv/WithoutBiases" -> "58 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"56 /layer4/layer4.0/relu/Relu" -> "59 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"57 /layer4/layer4.0/Add" -> "60 /layer4/layer4.0/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"58 /layer3/layer3.1/conv2/Conv" -> "46 /layer3/layer3.1/Add" [label="[1, 256, 14, 14]", style=solid];
-"59 /layer4/layer4.0/conv2/Conv/WithoutBiases" -> "61 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"60 /layer4/layer4.0/relu_1/Relu" -> "62 /layer4/layer4.1/Add" [label="[1, 512, 7, 7]", style=solid];
-"60 /layer4/layer4.0/relu_1/Relu" -> "63 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"61 /layer4/layer4.0/conv2/Conv" -> "57 /layer4/layer4.0/Add" [label="[1, 512, 7, 7]", style=solid];
-"62 /layer4/layer4.1/Add" -> "64 /layer4/layer4.1/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"63 /layer4/layer4.1/conv1/Conv/WithoutBiases" -> "65 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"64 /layer4/layer4.1/relu_1/Relu" -> "66 /avgpool/GlobalAveragePool" [label="[1, 512, 7, 7]", style=solid];
-"65 /layer4/layer4.1/conv1/Conv" -> "67 /layer4/layer4.1/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"66 /avgpool/GlobalAveragePool" -> "68 /Flatten" [label="[1, 512, 1, 1]", style=solid];
-"67 /layer4/layer4.1/relu/Relu" -> "69 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"68 /Flatten" -> "70 /fc/Gemm/WithoutBiases" [label="[1, 512]", style=solid];
-"69 /layer4/layer4.1/conv2/Conv/WithoutBiases" -> "71 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"70 /fc/Gemm/WithoutBiases" -> "72 prob" [label="[1, 1000]", style=solid];
-"71 /layer4/layer4.1/conv2/Conv" -> "62 /layer4/layer4.1/Add" [label="[1, 512, 7, 7]", style=solid];
-"72 prob" -> "73 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"74 Constant_1789" -> "72 prob" [label="[1, 1000]", style=solid];
-"75 fc.weight" -> "70 /fc/Gemm/WithoutBiases" [label="[1000, 512]", style=solid];
-"76 Constant_380" -> "68 /Flatten" [label="[2]", style=dashed];
-"77 Range_376" -> "66 /avgpool/GlobalAveragePool" [label="[2]", style=dashed];
-"78 Reshape_331" -> "54 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 512, 1, 1]", style=solid];
-"79 onnx^^Conv_244" -> "51 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[512, 256, 1, 1]", style=solid];
-"80 Reshape_250" -> "38 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 256, 1, 1]", style=solid];
-"81 onnx^^Conv_229" -> "35 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[256, 128, 1, 1]", style=solid];
-"82 Reshape_169" -> "22 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 128, 1, 1]", style=solid];
-"83 onnx^^Conv_214" -> "18 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[128, 64, 1, 1]", style=solid];
-"84 Reshape_55" -> "4 /conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"85 Gather_1788" -> "3 /conv1/Conv/WithoutBiases" [label="[64, 3, 7, 7]", style=solid];
-"86 Gather_1785" -> "2 Divide_401" [label="[1, 3, 1, 1]", style=solid];
-"87 Gather_1782" -> "1 Multiply_1715" [label="[1, 3, 1, 1]", style=solid];
-"88 Reshape_88" -> "20 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"89 onnx^^Conv_199" -> "16 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"90 Reshape_72" -> "10 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"91 onnx^^Conv_196" -> "8 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"92 Reshape_121" -> "26 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"93 onnx^^Conv_205" -> "23 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"94 Reshape_105" -> "15 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"95 onnx^^Conv_202" -> "12 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"96 Reshape_154" -> "29 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"97 onnx^^Conv_211" -> "27 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"98 Reshape_138" -> "21 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"99 onnx^^Conv_208" -> "17 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[128, 64, 3, 3]", style=solid];
-"100 Reshape_202" -> "42 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"101 onnx^^Conv_220" -> "39 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"102 Reshape_186" -> "33 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"103 onnx^^Conv_217" -> "31 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"104 Reshape_235" -> "45 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"105 onnx^^Conv_226" -> "43 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"106 Reshape_219" -> "37 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"107 onnx^^Conv_223" -> "34 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[256, 128, 3, 3]", style=solid];
-"108 Reshape_283" -> "58 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"109 onnx^^Conv_235" -> "55 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"110 Reshape_267" -> "49 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"111 onnx^^Conv_232" -> "47 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"112 Reshape_316" -> "61 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"113 onnx^^Conv_241" -> "59 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"114 Reshape_300" -> "53 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"115 onnx^^Conv_238" -> "50 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[512, 256, 3, 3]", style=solid];
-"116 Reshape_364" -> "71 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"117 onnx^^Conv_250" -> "69 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"118 Reshape_348" -> "65 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"119 onnx^^Conv_247" -> "63 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ssd_mobilenet_v1_coco.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ssd_mobilenet_v1_coco.dot
deleted file mode 100644
index a6a110d28df..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/ssd_mobilenet_v1_coco.dot
+++ /dev/null
@@ -1,752 +0,0 @@
-strict digraph {
-"0 image_tensor" [id=0, type=Parameter];
-"1 Convert_2817" [id=1, type=Convert];
-"2 ToFloat" [id=2, type=Transpose];
-"3 Preprocessor/mul" [id=3, type=Multiply];
-"4 PriorBoxClustered_0/1_port" [id=4, type=ShapeOf];
-"5 Preprocessor/sub" [id=5, type=Add];
-"6 PriorBoxClustered_0/ss_1_port" [id=6, type=StridedSlice];
-"7 PriorBoxClustered_1/ss_1_port" [id=7, type=StridedSlice];
-"8 PriorBoxClustered_2/ss_1_port" [id=8, type=StridedSlice];
-"9 PriorBoxClustered_3/ss_1_port" [id=9, type=StridedSlice];
-"10 PriorBoxClustered_4/ss_1_port" [id=10, type=StridedSlice];
-"11 PriorBoxClustered_5/ss_1_port" [id=11, type=StridedSlice];
-"12 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/mul_1" [id=12, type=Convolution];
-"13 PriorBoxClustered_0/naked_not_unsqueezed" [id=13, type=PriorBoxClustered];
-"14 PriorBoxClustered_1/naked_not_unsqueezed" [id=14, type=PriorBoxClustered];
-"15 PriorBoxClustered_2/naked_not_unsqueezed" [id=15, type=PriorBoxClustered];
-"16 PriorBoxClustered_3/naked_not_unsqueezed" [id=16, type=PriorBoxClustered];
-"17 PriorBoxClustered_4/naked_not_unsqueezed" [id=17, type=PriorBoxClustered];
-"18 PriorBoxClustered_5/naked_not_unsqueezed" [id=18, type=PriorBoxClustered];
-"19 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/add_1" [id=19, type=Add];
-"20 PriorBoxClustered_0" [id=20, type=Unsqueeze];
-"21 PriorBoxClustered_1" [id=21, type=Unsqueeze];
-"22 PriorBoxClustered_2" [id=22, type=Unsqueeze];
-"23 PriorBoxClustered_3" [id=23, type=Unsqueeze];
-"24 PriorBoxClustered_4" [id=24, type=Unsqueeze];
-"25 PriorBoxClustered_5" [id=25, type=Unsqueeze];
-"26 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/Relu6" [id=26, type=Clamp];
-"27 ConcatPriorBoxesClustered" [id=27, type=Concat];
-"28 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/depthwise" [id=28, type=GroupConvolution];
-"29 DetectionOutput" [id=29, type=DetectionOutput];
-"30 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/add_1" [id=30, type=Add];
-"31 detection_boxes" [id=31, type=Result];
-"32 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/Relu6" [id=32, type=Clamp];
-"33 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/mul_1" [id=33, type=Convolution];
-"34 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/add_1" [id=34, type=Add];
-"35 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/Relu6" [id=35, type=Clamp];
-"36 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/depthwise" [id=36, type=GroupConvolution];
-"37 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/add_1" [id=37, type=Add];
-"38 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/Relu6" [id=38, type=Clamp];
-"39 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/mul_1" [id=39, type=Convolution];
-"40 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/add_1" [id=40, type=Add];
-"41 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/Relu6" [id=41, type=Clamp];
-"42 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/depthwise" [id=42, type=GroupConvolution];
-"43 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/add_1" [id=43, type=Add];
-"44 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/Relu6" [id=44, type=Clamp];
-"45 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/mul_1" [id=45, type=Convolution];
-"46 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/add_1" [id=46, type=Add];
-"47 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/Relu6" [id=47, type=Clamp];
-"48 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/depthwise" [id=48, type=GroupConvolution];
-"49 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/add_1" [id=49, type=Add];
-"50 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/Relu6" [id=50, type=Clamp];
-"51 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/mul_1" [id=51, type=Convolution];
-"52 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/add_1" [id=52, type=Add];
-"53 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/Relu6" [id=53, type=Clamp];
-"54 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/depthwise" [id=54, type=GroupConvolution];
-"55 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/add_1" [id=55, type=Add];
-"56 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/Relu6" [id=56, type=Clamp];
-"57 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/mul_1" [id=57, type=Convolution];
-"58 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/add_1" [id=58, type=Add];
-"59 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/Relu6" [id=59, type=Clamp];
-"60 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/depthwise" [id=60, type=GroupConvolution];
-"61 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/add_1" [id=61, type=Add];
-"62 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/Relu6" [id=62, type=Clamp];
-"63 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/mul_1" [id=63, type=Convolution];
-"64 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/add_1" [id=64, type=Add];
-"65 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/Relu6" [id=65, type=Clamp];
-"66 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/depthwise" [id=66, type=GroupConvolution];
-"67 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/add_1" [id=67, type=Add];
-"68 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/Relu6" [id=68, type=Clamp];
-"69 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/mul_1" [id=69, type=Convolution];
-"70 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/add_1" [id=70, type=Add];
-"71 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/Relu6" [id=71, type=Clamp];
-"72 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/depthwise" [id=72, type=GroupConvolution];
-"73 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/add_1" [id=73, type=Add];
-"74 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/Relu6" [id=74, type=Clamp];
-"75 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/mul_1" [id=75, type=Convolution];
-"76 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/add_1" [id=76, type=Add];
-"77 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/Relu6" [id=77, type=Clamp];
-"78 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/depthwise" [id=78, type=GroupConvolution];
-"79 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/add_1" [id=79, type=Add];
-"80 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/Relu6" [id=80, type=Clamp];
-"81 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/mul_1" [id=81, type=Convolution];
-"82 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/add_1" [id=82, type=Add];
-"83 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/Relu6" [id=83, type=Clamp];
-"84 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/depthwise" [id=84, type=GroupConvolution];
-"85 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/add_1" [id=85, type=Add];
-"86 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/Relu6" [id=86, type=Clamp];
-"87 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/mul_1" [id=87, type=Convolution];
-"88 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/add_1" [id=88, type=Add];
-"89 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/Relu6" [id=89, type=Clamp];
-"90 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/depthwise" [id=90, type=GroupConvolution];
-"91 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/add_1" [id=91, type=Add];
-"92 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/Relu6" [id=92, type=Clamp];
-"93 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/mul_1" [id=93, type=Convolution];
-"94 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/add_1" [id=94, type=Add];
-"95 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/Relu6" [id=95, type=Clamp];
-"96 BoxPredictor_0/BoxEncodingPredictor/Conv2D" [id=96, type=Convolution];
-"97 BoxPredictor_0/ClassPredictor/Conv2D" [id=97, type=Convolution];
-"98 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/depthwise" [id=98, type=GroupConvolution];
-"99 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add" [id=99, type=Add];
-"100 BoxPredictor_0/ClassPredictor/BiasAdd/Add" [id=100, type=Add];
-"101 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/add_1" [id=101, type=Add];
-"102 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=102, type=Transpose];
-"103 PriorBoxClustered_0/0_port" [id=103, type=ShapeOf];
-"104 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose" [id=104, type=Transpose];
-"105 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/Relu6" [id=105, type=Clamp];
-"106 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Reshape" [id=106, type=Reshape];
-"107 PriorBoxClustered_0/ss_0_port" [id=107, type=StridedSlice];
-"108 BoxPredictor_0/ClassPredictor/BiasAdd/Reshape" [id=108, type=Reshape];
-"109 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/mul_1" [id=109, type=Convolution];
-"110 concat" [id=110, type=Concat];
-"111 concat_1" [id=111, type=Concat];
-"112 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/add_1" [id=112, type=Add];
-"113 do_reshape_offsets" [id=113, type=Reshape];
-"114 do_ExpandDims_conf" [id=114, type=Reshape];
-"115 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/Relu6" [id=115, type=Clamp];
-"116 do_ExpandDims_conf/sigmoid" [id=116, type=Sigmoid];
-"117 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/depthwise" [id=117, type=GroupConvolution];
-"118 do_reshape_conf" [id=118, type=Reshape];
-"119 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/add_1" [id=119, type=Add];
-"120 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/Relu6" [id=120, type=Clamp];
-"121 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/mul_1" [id=121, type=Convolution];
-"122 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/add_1" [id=122, type=Add];
-"123 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/Relu6" [id=123, type=Clamp];
-"124 BoxPredictor_1/BoxEncodingPredictor/Conv2D" [id=124, type=Convolution];
-"125 BoxPredictor_1/ClassPredictor/Conv2D" [id=125, type=Convolution];
-"126 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/mul_1" [id=126, type=Convolution];
-"127 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add" [id=127, type=Add];
-"128 BoxPredictor_1/ClassPredictor/BiasAdd/Add" [id=128, type=Add];
-"129 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/add_1" [id=129, type=Add];
-"130 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=130, type=Transpose];
-"131 PriorBoxClustered_1/0_port" [id=131, type=ShapeOf];
-"132 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose" [id=132, type=Transpose];
-"133 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/Relu6" [id=133, type=Clamp];
-"134 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Reshape" [id=134, type=Reshape];
-"135 PriorBoxClustered_1/ss_0_port" [id=135, type=StridedSlice];
-"136 BoxPredictor_1/ClassPredictor/BiasAdd/Reshape" [id=136, type=Reshape];
-"137 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/mul_1" [id=137, type=Convolution];
-"138 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/add_1" [id=138, type=Add];
-"139 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/Relu6" [id=139, type=Clamp];
-"140 BoxPredictor_2/BoxEncodingPredictor/Conv2D" [id=140, type=Convolution];
-"141 BoxPredictor_2/ClassPredictor/Conv2D" [id=141, type=Convolution];
-"142 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/mul_1" [id=142, type=Convolution];
-"143 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add" [id=143, type=Add];
-"144 BoxPredictor_2/ClassPredictor/BiasAdd/Add" [id=144, type=Add];
-"145 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/add_1" [id=145, type=Add];
-"146 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=146, type=Transpose];
-"147 PriorBoxClustered_2/0_port" [id=147, type=ShapeOf];
-"148 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose" [id=148, type=Transpose];
-"149 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/Relu6" [id=149, type=Clamp];
-"150 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Reshape" [id=150, type=Reshape];
-"151 PriorBoxClustered_2/ss_0_port" [id=151, type=StridedSlice];
-"152 BoxPredictor_2/ClassPredictor/BiasAdd/Reshape" [id=152, type=Reshape];
-"153 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/mul_1" [id=153, type=Convolution];
-"154 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/add_1" [id=154, type=Add];
-"155 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/Relu6" [id=155, type=Clamp];
-"156 BoxPredictor_3/BoxEncodingPredictor/Conv2D" [id=156, type=Convolution];
-"157 BoxPredictor_3/ClassPredictor/Conv2D" [id=157, type=Convolution];
-"158 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/mul_1" [id=158, type=Convolution];
-"159 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add" [id=159, type=Add];
-"160 BoxPredictor_3/ClassPredictor/BiasAdd/Add" [id=160, type=Add];
-"161 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/add_1" [id=161, type=Add];
-"162 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=162, type=Transpose];
-"163 PriorBoxClustered_3/0_port" [id=163, type=ShapeOf];
-"164 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose" [id=164, type=Transpose];
-"165 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/Relu6" [id=165, type=Clamp];
-"166 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Reshape" [id=166, type=Reshape];
-"167 PriorBoxClustered_3/ss_0_port" [id=167, type=StridedSlice];
-"168 BoxPredictor_3/ClassPredictor/BiasAdd/Reshape" [id=168, type=Reshape];
-"169 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/mul_1" [id=169, type=Convolution];
-"170 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/add_1" [id=170, type=Add];
-"171 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/Relu6" [id=171, type=Clamp];
-"172 BoxPredictor_4/BoxEncodingPredictor/Conv2D" [id=172, type=Convolution];
-"173 BoxPredictor_4/ClassPredictor/Conv2D" [id=173, type=Convolution];
-"174 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/mul_1" [id=174, type=Convolution];
-"175 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add" [id=175, type=Add];
-"176 BoxPredictor_4/ClassPredictor/BiasAdd/Add" [id=176, type=Add];
-"177 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/add_1" [id=177, type=Add];
-"178 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=178, type=Transpose];
-"179 PriorBoxClustered_4/0_port" [id=179, type=ShapeOf];
-"180 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose" [id=180, type=Transpose];
-"181 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/Relu6" [id=181, type=Clamp];
-"182 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Reshape" [id=182, type=Reshape];
-"183 PriorBoxClustered_4/ss_0_port" [id=183, type=StridedSlice];
-"184 BoxPredictor_4/ClassPredictor/BiasAdd/Reshape" [id=184, type=Reshape];
-"185 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/mul_1" [id=185, type=Convolution];
-"186 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/add_1" [id=186, type=Add];
-"187 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/Relu6" [id=187, type=Clamp];
-"188 BoxPredictor_5/BoxEncodingPredictor/Conv2D" [id=188, type=Convolution];
-"189 BoxPredictor_5/ClassPredictor/Conv2D" [id=189, type=Convolution];
-"190 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add" [id=190, type=Add];
-"191 BoxPredictor_5/ClassPredictor/BiasAdd/Add" [id=191, type=Add];
-"192 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose" [id=192, type=Transpose];
-"193 PriorBoxClustered_5/0_port" [id=193, type=ShapeOf];
-"194 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose" [id=194, type=Transpose];
-"195 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Reshape" [id=195, type=Reshape];
-"196 PriorBoxClustered_5/ss_0_port" [id=196, type=StridedSlice];
-"197 BoxPredictor_5/ClassPredictor/BiasAdd/Reshape" [id=197, type=Reshape];
-"198 PriorBoxClustered_5/unsqueeze/value1658922155" [id=198, type=Constant];
-"199 PriorBoxClustered_5/ss_stride1658121846" [id=199, type=Constant];
-"200 PriorBoxClustered_5/ss_end1658022119" [id=200, type=Constant];
-"201 PriorBoxClustered_5/ss_begin1657922068" [id=201, type=Constant];
-"202 image_tensor/Transpose([0 3 1 2])/value1617121900" [id=202, type=Constant];
-"203 PriorBoxClustered_5/ss_stride1658122116" [id=203, type=Constant];
-"204 PriorBoxClustered_5/ss_end1658021867" [id=204, type=Constant];
-"205 PriorBoxClustered_5/ss_begin1657921927" [id=205, type=Constant];
-"206 BoxPredictor_5/BoxEncodingPredictor/biases/read/_167__cf__170/ReshapeBack" [id=206, type=Constant];
-"207 BoxPredictor_5/BoxEncodingPredictor/weights/read/_168__cf__171/ReshapeBack" [id=207, type=Constant];
-"208 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/sub/_63__cf__66" [id=208, type=Constant];
-"209 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/weights/read/_64__cf__67" [id=209, type=Constant];
-"210 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/sub/_66__cf__69" [id=210, type=Constant];
-"211 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/weights/read/_67__cf__70" [id=211, type=Constant];
-"212 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/sub/_69__cf__72" [id=212, type=Constant];
-"213 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/weights/read/_70__cf__73" [id=213, type=Constant];
-"214 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/sub/_72__cf__75" [id=214, type=Constant];
-"215 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/weights/read/_73__cf__76" [id=215, type=Constant];
-"216 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/sub/_75__cf__78" [id=216, type=Constant];
-"217 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/weights/read/_76__cf__79" [id=217, type=Constant];
-"218 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/sub/_78__cf__81" [id=218, type=Constant];
-"219 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/weights/read/_79__cf__82" [id=219, type=Constant];
-"220 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/sub/_81__cf__84" [id=220, type=Constant];
-"221 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/weights/read/_82__cf__85" [id=221, type=Constant];
-"222 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/sub/_84__cf__87" [id=222, type=Constant];
-"223 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/weights/read/_85__cf__88" [id=223, type=Constant];
-"224 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/sub/_87__cf__90" [id=224, type=Constant];
-"225 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise/weights/read/_88__cf__91" [id=225, type=Constant];
-"226 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/sub/_90__cf__93" [id=226, type=Constant];
-"227 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=227, type=Constant];
-"228 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/sub/_93__cf__96" [id=228, type=Constant];
-"229 FeatureExtractor/MobilenetV1/Conv2d_12_pointwise/weights/read/_94__cf__97" [id=229, type=Constant];
-"230 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/sub/_96__cf__99" [id=230, type=Constant];
-"231 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=231, type=Constant];
-"232 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/sub/_99__cf__102" [id=232, type=Constant];
-"233 FeatureExtractor/MobilenetV1/Conv2d_11_pointwise/weights/read/_100__cf__103" [id=233, type=Constant];
-"234 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/sub/_102__cf__105" [id=234, type=Constant];
-"235 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=235, type=Constant];
-"236 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/sub/_105__cf__108" [id=236, type=Constant];
-"237 FeatureExtractor/MobilenetV1/Conv2d_10_pointwise/weights/read/_106__cf__109" [id=237, type=Constant];
-"238 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/sub/_108__cf__111" [id=238, type=Constant];
-"239 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=239, type=Constant];
-"240 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/sub/_111__cf__114" [id=240, type=Constant];
-"241 FeatureExtractor/MobilenetV1/Conv2d_9_pointwise/weights/read/_112__cf__115" [id=241, type=Constant];
-"242 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/sub/_114__cf__117" [id=242, type=Constant];
-"243 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=243, type=Constant];
-"244 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/sub/_117__cf__120" [id=244, type=Constant];
-"245 FeatureExtractor/MobilenetV1/Conv2d_8_pointwise/weights/read/_118__cf__121" [id=245, type=Constant];
-"246 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/sub/_120__cf__123" [id=246, type=Constant];
-"247 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=247, type=Constant];
-"248 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/sub/_123__cf__126" [id=248, type=Constant];
-"249 FeatureExtractor/MobilenetV1/Conv2d_7_pointwise/weights/read/_124__cf__127" [id=249, type=Constant];
-"250 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/sub/_126__cf__129" [id=250, type=Constant];
-"251 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=251, type=Constant];
-"252 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/sub/_129__cf__132" [id=252, type=Constant];
-"253 FeatureExtractor/MobilenetV1/Conv2d_6_pointwise/weights/read/_130__cf__133" [id=253, type=Constant];
-"254 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/sub/_132__cf__135" [id=254, type=Constant];
-"255 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=255, type=Constant];
-"256 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/sub/_135__cf__138" [id=256, type=Constant];
-"257 FeatureExtractor/MobilenetV1/Conv2d_5_pointwise/weights/read/_136__cf__139" [id=257, type=Constant];
-"258 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/sub/_138__cf__141" [id=258, type=Constant];
-"259 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=259, type=Constant];
-"260 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/sub/_141__cf__144" [id=260, type=Constant];
-"261 FeatureExtractor/MobilenetV1/Conv2d_4_pointwise/weights/read/_142__cf__145" [id=261, type=Constant];
-"262 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/sub/_144__cf__147" [id=262, type=Constant];
-"263 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=263, type=Constant];
-"264 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/sub/_147__cf__150" [id=264, type=Constant];
-"265 FeatureExtractor/MobilenetV1/Conv2d_3_pointwise/weights/read/_148__cf__151" [id=265, type=Constant];
-"266 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/sub/_150__cf__153" [id=266, type=Constant];
-"267 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=267, type=Constant];
-"268 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/sub/_153__cf__156" [id=268, type=Constant];
-"269 FeatureExtractor/MobilenetV1/Conv2d_2_pointwise/weights/read/_154__cf__157" [id=269, type=Constant];
-"270 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/sub/_156__cf__159" [id=270, type=Constant];
-"271 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=271, type=Constant];
-"272 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/sub/_159__cf__162" [id=272, type=Constant];
-"273 FeatureExtractor/MobilenetV1/Conv2d_1_pointwise/weights/read/_160__cf__163" [id=273, type=Constant];
-"274 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/sub/_162__cf__165" [id=274, type=Constant];
-"275 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/mul_1_copy" [id=275, type=Constant];
-"276 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/sub/_165__cf__168" [id=276, type=Constant];
-"277 Gather_2911" [id=277, type=Constant];
-"278 Preprocessor/sub/y" [id=278, type=Constant];
-"279 Preprocessor/mul/x" [id=279, type=Constant];
-"280 PriorBoxClustered_4/unsqueeze/value1660722065" [id=280, type=Constant];
-"281 PriorBoxClustered_4/ss_stride1659922128" [id=281, type=Constant];
-"282 PriorBoxClustered_4/ss_end1659821909" [id=282, type=Constant];
-"283 PriorBoxClustered_4/ss_begin1659721912" [id=283, type=Constant];
-"284 PriorBoxClustered_4/ss_stride1659922311" [id=284, type=Constant];
-"285 PriorBoxClustered_4/ss_end1659822149" [id=285, type=Constant];
-"286 PriorBoxClustered_4/ss_begin1659721861" [id=286, type=Constant];
-"287 BoxPredictor_4/BoxEncodingPredictor/biases/read/_169__cf__172/ReshapeBack" [id=287, type=Constant];
-"288 BoxPredictor_4/BoxEncodingPredictor/weights/read/_170__cf__173/ReshapeBack" [id=288, type=Constant];
-"289 PriorBoxClustered_3/unsqueeze/value1657122122" [id=289, type=Constant];
-"290 PriorBoxClustered_3/ss_stride1656322320" [id=290, type=Constant];
-"291 PriorBoxClustered_3/ss_end1656222140" [id=291, type=Constant];
-"292 PriorBoxClustered_3/ss_begin1656122026" [id=292, type=Constant];
-"293 PriorBoxClustered_3/ss_stride1656322203" [id=293, type=Constant];
-"294 PriorBoxClustered_3/ss_end1656222314" [id=294, type=Constant];
-"295 PriorBoxClustered_3/ss_begin1656121903" [id=295, type=Constant];
-"296 BoxPredictor_3/BoxEncodingPredictor/biases/read/_171__cf__174/ReshapeBack" [id=296, type=Constant];
-"297 BoxPredictor_3/BoxEncodingPredictor/weights/read/_172__cf__175/ReshapeBack" [id=297, type=Constant];
-"298 PriorBoxClustered_2/unsqueeze/value1662521894" [id=298, type=Constant];
-"299 PriorBoxClustered_2/ss_stride1661721993" [id=299, type=Constant];
-"300 PriorBoxClustered_2/ss_end1661621987" [id=300, type=Constant];
-"301 PriorBoxClustered_2/ss_begin1661521888" [id=301, type=Constant];
-"302 PriorBoxClustered_2/ss_stride1661722224" [id=302, type=Constant];
-"303 PriorBoxClustered_2/ss_end1661621915" [id=303, type=Constant];
-"304 PriorBoxClustered_2/ss_begin1661522101" [id=304, type=Constant];
-"305 BoxPredictor_2/BoxEncodingPredictor/biases/read/_173__cf__176/ReshapeBack" [id=305, type=Constant];
-"306 BoxPredictor_2/BoxEncodingPredictor/weights/read/_174__cf__177/ReshapeBack" [id=306, type=Constant];
-"307 PriorBoxClustered_1/unsqueeze/value1666121864" [id=307, type=Constant];
-"308 PriorBoxClustered_1/ss_stride1665322200" [id=308, type=Constant];
-"309 PriorBoxClustered_1/ss_end1665222266" [id=309, type=Constant];
-"310 PriorBoxClustered_1/ss_begin1665122323" [id=310, type=Constant];
-"311 PriorBoxClustered_1/ss_stride1665321942" [id=311, type=Constant];
-"312 PriorBoxClustered_1/ss_end1665222146" [id=312, type=Constant];
-"313 PriorBoxClustered_1/ss_begin1665122245" [id=313, type=Constant];
-"314 BoxPredictor_1/BoxEncodingPredictor/biases/read/_175__cf__178/ReshapeBack" [id=314, type=Constant];
-"315 BoxPredictor_1/BoxEncodingPredictor/weights/read/_176__cf__179/ReshapeBack" [id=315, type=Constant];
-"316 PriorBoxClustered_0/unsqueeze/value1664322215" [id=316, type=Constant];
-"317 PriorBoxClustered_0/ss_stride1663522167" [id=317, type=Constant];
-"318 PriorBoxClustered_0/ss_end1663422110" [id=318, type=Constant];
-"319 PriorBoxClustered_0/ss_begin1663322044" [id=319, type=Constant];
-"320 PriorBoxClustered_0/ss_stride1663522053" [id=320, type=Constant];
-"321 PriorBoxClustered_0/ss_end1663422131" [id=321, type=Constant];
-"322 PriorBoxClustered_0/ss_begin1663322188" [id=322, type=Constant];
-"323 BoxPredictor_0/BoxEncodingPredictor/biases/read/_177__cf__180/ReshapeBack" [id=323, type=Constant];
-"324 BoxPredictor_0/BoxEncodingPredictor/weights/read/_178__cf__181/ReshapeBack" [id=324, type=Constant];
-"325 do_reshape_conf/value" [id=325, type=Constant];
-"326 do_ExpandDims_conf/value" [id=326, type=Constant];
-"327 7099" [id=327, type=Constant];
-"328 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose/value1578122020" [id=328, type=Constant];
-"329 BoxPredictor_5/ClassPredictor/biases/read/_41__cf__44" [id=329, type=Constant];
-"330 BoxPredictor_5/ClassPredictor/weights/read/_42__cf__45" [id=330, type=Constant];
-"331 7095" [id=331, type=Constant];
-"332 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose/value1577322305" [id=332, type=Constant];
-"333 BoxPredictor_4/ClassPredictor/biases/read/_43__cf__46" [id=333, type=Constant];
-"334 BoxPredictor_4/ClassPredictor/weights/read/_44__cf__47" [id=334, type=Constant];
-"335 7091" [id=335, type=Constant];
-"336 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose/value1576521918" [id=336, type=Constant];
-"337 BoxPredictor_3/ClassPredictor/biases/read/_45__cf__48" [id=337, type=Constant];
-"338 BoxPredictor_3/ClassPredictor/weights/read/_46__cf__49" [id=338, type=Constant];
-"339 7087" [id=339, type=Constant];
-"340 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose/value1575722248" [id=340, type=Constant];
-"341 BoxPredictor_2/ClassPredictor/biases/read/_47__cf__50" [id=341, type=Constant];
-"342 BoxPredictor_2/ClassPredictor/weights/read/_48__cf__51" [id=342, type=Constant];
-"343 7083" [id=343, type=Constant];
-"344 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose/value1574921921" [id=344, type=Constant];
-"345 BoxPredictor_1/ClassPredictor/biases/read/_49__cf__52" [id=345, type=Constant];
-"346 BoxPredictor_1/ClassPredictor/weights/read/_50__cf__53" [id=346, type=Constant];
-"347 7079" [id=347, type=Constant];
-"348 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose/value1574122035" [id=348, type=Constant];
-"349 BoxPredictor_0/ClassPredictor/biases/read/_51__cf__54" [id=349, type=Constant];
-"350 BoxPredictor_0/ClassPredictor/weights/read/_52__cf__55" [id=350, type=Constant];
-"351 do_reshape_offsets/value" [id=351, type=Constant];
-"352 7097" [id=352, type=Constant];
-"353 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1577722092" [id=353, type=Constant];
-"354 7093" [id=354, type=Constant];
-"355 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1576922317" [id=355, type=Constant];
-"356 7089" [id=356, type=Constant];
-"357 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1576122242" [id=357, type=Constant];
-"358 7085" [id=358, type=Constant];
-"359 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1575322050" [id=359, type=Constant];
-"360 7081" [id=360, type=Constant];
-"361 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1574521897" [id=361, type=Constant];
-"362 7077" [id=362, type=Constant];
-"363 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1573721858" [id=363, type=Constant];
-"0 image_tensor" -> "1 Convert_2817" [label="[1, 300, 300, 3]", style=dashed];
-"1 Convert_2817" -> "2 ToFloat" [label="[1, 300, 300, 3]", style=solid];
-"2 ToFloat" -> "3 Preprocessor/mul" [label="[1, 3, 300, 300]", style=solid];
-"2 ToFloat" -> "4 PriorBoxClustered_0/1_port" [label="[1, 3, 300, 300]", style=solid];
-"3 Preprocessor/mul" -> "5 Preprocessor/sub" [label="[1, 3, 300, 300]", style=solid];
-"4 PriorBoxClustered_0/1_port" -> "6 PriorBoxClustered_0/ss_1_port" [label="[4]", style=dashed];
-"4 PriorBoxClustered_0/1_port" -> "7 PriorBoxClustered_1/ss_1_port" [label="[4]", style=dashed];
-"4 PriorBoxClustered_0/1_port" -> "8 PriorBoxClustered_2/ss_1_port" [label="[4]", style=dashed];
-"4 PriorBoxClustered_0/1_port" -> "9 PriorBoxClustered_3/ss_1_port" [label="[4]", style=dashed];
-"4 PriorBoxClustered_0/1_port" -> "10 PriorBoxClustered_4/ss_1_port" [label="[4]", style=dashed];
-"4 PriorBoxClustered_0/1_port" -> "11 PriorBoxClustered_5/ss_1_port" [label="[4]", style=dashed];
-"5 Preprocessor/sub" -> "12 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/mul_1" [label="[1, 3, 300, 300]", style=solid];
-"6 PriorBoxClustered_0/ss_1_port" -> "13 PriorBoxClustered_0/naked_not_unsqueezed" [label="[2]", style=dashed];
-"7 PriorBoxClustered_1/ss_1_port" -> "14 PriorBoxClustered_1/naked_not_unsqueezed" [label="[2]", style=dashed];
-"8 PriorBoxClustered_2/ss_1_port" -> "15 PriorBoxClustered_2/naked_not_unsqueezed" [label="[2]", style=dashed];
-"9 PriorBoxClustered_3/ss_1_port" -> "16 PriorBoxClustered_3/naked_not_unsqueezed" [label="[2]", style=dashed];
-"10 PriorBoxClustered_4/ss_1_port" -> "17 PriorBoxClustered_4/naked_not_unsqueezed" [label="[2]", style=dashed];
-"11 PriorBoxClustered_5/ss_1_port" -> "18 PriorBoxClustered_5/naked_not_unsqueezed" [label="[2]", style=dashed];
-"12 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/mul_1" -> "19 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/add_1" [label="[1, 32, 150, 150]", style=solid];
-"13 PriorBoxClustered_0/naked_not_unsqueezed" -> "20 PriorBoxClustered_0" [label="[2, 4332]", style=solid];
-"14 PriorBoxClustered_1/naked_not_unsqueezed" -> "21 PriorBoxClustered_1" [label="[2, 2400]", style=solid];
-"15 PriorBoxClustered_2/naked_not_unsqueezed" -> "22 PriorBoxClustered_2" [label="[2, 600]", style=solid];
-"16 PriorBoxClustered_3/naked_not_unsqueezed" -> "23 PriorBoxClustered_3" [label="[2, 216]", style=solid];
-"17 PriorBoxClustered_4/naked_not_unsqueezed" -> "24 PriorBoxClustered_4" [label="[2, 96]", style=solid];
-"18 PriorBoxClustered_5/naked_not_unsqueezed" -> "25 PriorBoxClustered_5" [label="[2, 24]", style=solid];
-"19 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/add_1" -> "26 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/Relu6" [label="[1, 32, 150, 150]", style=solid];
-"20 PriorBoxClustered_0" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 4332]", style=solid];
-"21 PriorBoxClustered_1" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 2400]", style=solid];
-"22 PriorBoxClustered_2" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 600]", style=solid];
-"23 PriorBoxClustered_3" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 216]", style=solid];
-"24 PriorBoxClustered_4" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 96]", style=solid];
-"25 PriorBoxClustered_5" -> "27 ConcatPriorBoxesClustered" [label="[1, 2, 24]", style=solid];
-"26 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/Relu6" -> "28 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/depthwise" [label="[1, 32, 150, 150]", style=solid];
-"27 ConcatPriorBoxesClustered" -> "29 DetectionOutput" [label="[1, 2, 7668]", style=solid];
-"28 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/depthwise" -> "30 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 32, 150, 150]", style=solid];
-"29 DetectionOutput" -> "31 detection_boxes" [label="[1, 1, 100, 7]", style=solid];
-"30 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/add_1" -> "32 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/Relu6" [label="[1, 32, 150, 150]", style=solid];
-"32 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/Relu6" -> "33 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 32, 150, 150]", style=solid];
-"33 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/mul_1" -> "34 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 64, 150, 150]", style=solid];
-"34 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/add_1" -> "35 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/Relu6" [label="[1, 64, 150, 150]", style=solid];
-"35 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/Relu6" -> "36 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/depthwise" [label="[1, 64, 150, 150]", style=solid];
-"36 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/depthwise" -> "37 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 64, 75, 75]", style=solid];
-"37 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/add_1" -> "38 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/Relu6" [label="[1, 64, 75, 75]", style=solid];
-"38 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/Relu6" -> "39 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 64, 75, 75]", style=solid];
-"39 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/mul_1" -> "40 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 75, 75]", style=solid];
-"40 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/add_1" -> "41 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/Relu6" [label="[1, 128, 75, 75]", style=solid];
-"41 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/Relu6" -> "42 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/depthwise" [label="[1, 128, 75, 75]", style=solid];
-"42 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/depthwise" -> "43 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 75, 75]", style=solid];
-"43 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/add_1" -> "44 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/Relu6" [label="[1, 128, 75, 75]", style=solid];
-"44 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/Relu6" -> "45 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 128, 75, 75]", style=solid];
-"45 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/mul_1" -> "46 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 75, 75]", style=solid];
-"46 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/add_1" -> "47 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/Relu6" [label="[1, 128, 75, 75]", style=solid];
-"47 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/Relu6" -> "48 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/depthwise" [label="[1, 128, 75, 75]", style=solid];
-"48 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/depthwise" -> "49 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 38, 38]", style=solid];
-"49 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/add_1" -> "50 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/Relu6" [label="[1, 128, 38, 38]", style=solid];
-"50 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/Relu6" -> "51 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 128, 38, 38]", style=solid];
-"51 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/mul_1" -> "52 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 38, 38]", style=solid];
-"52 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/add_1" -> "53 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/Relu6" [label="[1, 256, 38, 38]", style=solid];
-"53 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/Relu6" -> "54 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/depthwise" [label="[1, 256, 38, 38]", style=solid];
-"54 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/depthwise" -> "55 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 38, 38]", style=solid];
-"55 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/add_1" -> "56 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/Relu6" [label="[1, 256, 38, 38]", style=solid];
-"56 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/Relu6" -> "57 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 256, 38, 38]", style=solid];
-"57 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/mul_1" -> "58 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 38, 38]", style=solid];
-"58 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/add_1" -> "59 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/Relu6" [label="[1, 256, 38, 38]", style=solid];
-"59 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/Relu6" -> "60 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/depthwise" [label="[1, 256, 38, 38]", style=solid];
-"60 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/depthwise" -> "61 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 19, 19]", style=solid];
-"61 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/add_1" -> "62 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/Relu6" [label="[1, 256, 19, 19]", style=solid];
-"62 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/Relu6" -> "63 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 256, 19, 19]", style=solid];
-"63 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/mul_1" -> "64 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"64 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/add_1" -> "65 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"65 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/Relu6" -> "66 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"66 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/depthwise" -> "67 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"67 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/add_1" -> "68 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"68 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/Relu6" -> "69 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 19, 19]", style=solid];
-"69 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/mul_1" -> "70 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"70 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/add_1" -> "71 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"71 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/Relu6" -> "72 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"72 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/depthwise" -> "73 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"73 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/add_1" -> "74 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"74 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/Relu6" -> "75 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 19, 19]", style=solid];
-"75 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/mul_1" -> "76 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"76 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/add_1" -> "77 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"77 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/Relu6" -> "78 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"78 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/depthwise" -> "79 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"79 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/add_1" -> "80 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"80 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/Relu6" -> "81 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 19, 19]", style=solid];
-"81 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/mul_1" -> "82 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"82 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/add_1" -> "83 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"83 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/Relu6" -> "84 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"84 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/depthwise" -> "85 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"85 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/add_1" -> "86 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"86 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/Relu6" -> "87 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 19, 19]", style=solid];
-"87 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/mul_1" -> "88 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"88 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/add_1" -> "89 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"89 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/Relu6" -> "90 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"90 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/depthwise" -> "91 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"91 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/add_1" -> "92 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"92 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/Relu6" -> "93 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 19, 19]", style=solid];
-"93 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/mul_1" -> "94 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 19, 19]", style=solid];
-"94 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/add_1" -> "95 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/Relu6" [label="[1, 512, 19, 19]", style=solid];
-"95 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/Relu6" -> "96 BoxPredictor_0/BoxEncodingPredictor/Conv2D" [label="[1, 512, 19, 19]", style=solid];
-"95 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/Relu6" -> "97 BoxPredictor_0/ClassPredictor/Conv2D" [label="[1, 512, 19, 19]", style=solid];
-"95 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/Relu6" -> "98 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/depthwise" [label="[1, 512, 19, 19]", style=solid];
-"96 BoxPredictor_0/BoxEncodingPredictor/Conv2D" -> "99 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 12, 19, 19]", style=solid];
-"97 BoxPredictor_0/ClassPredictor/Conv2D" -> "100 BoxPredictor_0/ClassPredictor/BiasAdd/Add" [label="[1, 273, 19, 19]", style=solid];
-"98 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/depthwise" -> "101 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 10, 10]", style=solid];
-"99 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add" -> "102 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 12, 19, 19]", style=solid];
-"99 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add" -> "103 PriorBoxClustered_0/0_port" [label="[1, 12, 19, 19]", style=solid];
-"100 BoxPredictor_0/ClassPredictor/BiasAdd/Add" -> "104 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 273, 19, 19]", style=solid];
-"101 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/add_1" -> "105 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/Relu6" [label="[1, 512, 10, 10]", style=solid];
-"102 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "106 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 19, 19, 12]", style=solid];
-"103 PriorBoxClustered_0/0_port" -> "107 PriorBoxClustered_0/ss_0_port" [label="[4]", style=dashed];
-"104 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose" -> "108 BoxPredictor_0/ClassPredictor/BiasAdd/Reshape" [label="[1, 19, 19, 273]", style=solid];
-"105 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/Relu6" -> "109 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 512, 10, 10]", style=solid];
-"106 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 1083, 1, 4]", style=solid];
-"107 PriorBoxClustered_0/ss_0_port" -> "13 PriorBoxClustered_0/naked_not_unsqueezed" [label="[2]", style=dashed];
-"108 BoxPredictor_0/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 1083, 91]", style=solid];
-"109 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/mul_1" -> "112 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 10, 10]", style=solid];
-"110 concat" -> "113 do_reshape_offsets" [label="[1, 1917, 1, 4]", style=solid];
-"111 concat_1" -> "114 do_ExpandDims_conf" [label="[1, 1917, 91]", style=solid];
-"112 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/add_1" -> "115 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/Relu6" [label="[1, 1024, 10, 10]", style=solid];
-"113 do_reshape_offsets" -> "29 DetectionOutput" [label="[1, 7668]", style=solid];
-"114 do_ExpandDims_conf" -> "116 do_ExpandDims_conf/sigmoid" [label="[1, 1, 1917, 91]", style=solid];
-"115 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/Relu6" -> "117 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/depthwise" [label="[1, 1024, 10, 10]", style=solid];
-"116 do_ExpandDims_conf/sigmoid" -> "118 do_reshape_conf" [label="[1, 1, 1917, 91]", style=solid];
-"117 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/depthwise" -> "119 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 10, 10]", style=solid];
-"118 do_reshape_conf" -> "29 DetectionOutput" [label="[1, 174447]", style=solid];
-"119 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/add_1" -> "120 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/Relu6" [label="[1, 1024, 10, 10]", style=solid];
-"120 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/Relu6" -> "121 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/mul_1" [label="[1, 1024, 10, 10]", style=solid];
-"121 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/mul_1" -> "122 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 10, 10]", style=solid];
-"122 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/add_1" -> "123 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/Relu6" [label="[1, 1024, 10, 10]", style=solid];
-"123 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/Relu6" -> "124 BoxPredictor_1/BoxEncodingPredictor/Conv2D" [label="[1, 1024, 10, 10]", style=solid];
-"123 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/Relu6" -> "125 BoxPredictor_1/ClassPredictor/Conv2D" [label="[1, 1024, 10, 10]", style=solid];
-"123 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/Relu6" -> "126 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/mul_1" [label="[1, 1024, 10, 10]", style=solid];
-"124 BoxPredictor_1/BoxEncodingPredictor/Conv2D" -> "127 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 10, 10]", style=solid];
-"125 BoxPredictor_1/ClassPredictor/Conv2D" -> "128 BoxPredictor_1/ClassPredictor/BiasAdd/Add" [label="[1, 546, 10, 10]", style=solid];
-"126 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/mul_1" -> "129 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 10, 10]", style=solid];
-"127 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add" -> "130 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 24, 10, 10]", style=solid];
-"127 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add" -> "131 PriorBoxClustered_1/0_port" [label="[1, 24, 10, 10]", style=solid];
-"128 BoxPredictor_1/ClassPredictor/BiasAdd/Add" -> "132 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 546, 10, 10]", style=solid];
-"129 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/add_1" -> "133 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/Relu6" [label="[1, 256, 10, 10]", style=solid];
-"130 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "134 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 10, 10, 24]", style=solid];
-"131 PriorBoxClustered_1/0_port" -> "135 PriorBoxClustered_1/ss_0_port" [label="[4]", style=dashed];
-"132 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose" -> "136 BoxPredictor_1/ClassPredictor/BiasAdd/Reshape" [label="[1, 10, 10, 546]", style=solid];
-"133 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/Relu6" -> "137 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/mul_1" [label="[1, 256, 10, 10]", style=solid];
-"134 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 600, 1, 4]", style=solid];
-"135 PriorBoxClustered_1/ss_0_port" -> "14 PriorBoxClustered_1/naked_not_unsqueezed" [label="[2]", style=dashed];
-"136 BoxPredictor_1/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 600, 91]", style=solid];
-"137 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/mul_1" -> "138 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/add_1" [label="[1, 512, 5, 5]", style=solid];
-"138 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/add_1" -> "139 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/Relu6" [label="[1, 512, 5, 5]", style=solid];
-"139 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/Relu6" -> "140 BoxPredictor_2/BoxEncodingPredictor/Conv2D" [label="[1, 512, 5, 5]", style=solid];
-"139 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/Relu6" -> "141 BoxPredictor_2/ClassPredictor/Conv2D" [label="[1, 512, 5, 5]", style=solid];
-"139 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/Relu6" -> "142 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/mul_1" [label="[1, 512, 5, 5]", style=solid];
-"140 BoxPredictor_2/BoxEncodingPredictor/Conv2D" -> "143 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 5, 5]", style=solid];
-"141 BoxPredictor_2/ClassPredictor/Conv2D" -> "144 BoxPredictor_2/ClassPredictor/BiasAdd/Add" [label="[1, 546, 5, 5]", style=solid];
-"142 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/mul_1" -> "145 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 5, 5]", style=solid];
-"143 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add" -> "146 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 24, 5, 5]", style=solid];
-"143 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add" -> "147 PriorBoxClustered_2/0_port" [label="[1, 24, 5, 5]", style=solid];
-"144 BoxPredictor_2/ClassPredictor/BiasAdd/Add" -> "148 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 546, 5, 5]", style=solid];
-"145 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/add_1" -> "149 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/Relu6" [label="[1, 128, 5, 5]", style=solid];
-"146 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "150 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 5, 5, 24]", style=solid];
-"147 PriorBoxClustered_2/0_port" -> "151 PriorBoxClustered_2/ss_0_port" [label="[4]", style=dashed];
-"148 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose" -> "152 BoxPredictor_2/ClassPredictor/BiasAdd/Reshape" [label="[1, 5, 5, 546]", style=solid];
-"149 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/Relu6" -> "153 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/mul_1" [label="[1, 128, 5, 5]", style=solid];
-"150 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 150, 1, 4]", style=solid];
-"151 PriorBoxClustered_2/ss_0_port" -> "15 PriorBoxClustered_2/naked_not_unsqueezed" [label="[2]", style=dashed];
-"152 BoxPredictor_2/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 150, 91]", style=solid];
-"153 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/mul_1" -> "154 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 3, 3]", style=solid];
-"154 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/add_1" -> "155 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/Relu6" [label="[1, 256, 3, 3]", style=solid];
-"155 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/Relu6" -> "156 BoxPredictor_3/BoxEncodingPredictor/Conv2D" [label="[1, 256, 3, 3]", style=solid];
-"155 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/Relu6" -> "157 BoxPredictor_3/ClassPredictor/Conv2D" [label="[1, 256, 3, 3]", style=solid];
-"155 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/Relu6" -> "158 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/mul_1" [label="[1, 256, 3, 3]", style=solid];
-"156 BoxPredictor_3/BoxEncodingPredictor/Conv2D" -> "159 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 3, 3]", style=solid];
-"157 BoxPredictor_3/ClassPredictor/Conv2D" -> "160 BoxPredictor_3/ClassPredictor/BiasAdd/Add" [label="[1, 546, 3, 3]", style=solid];
-"158 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/mul_1" -> "161 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 3, 3]", style=solid];
-"159 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add" -> "162 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 24, 3, 3]", style=solid];
-"159 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add" -> "163 PriorBoxClustered_3/0_port" [label="[1, 24, 3, 3]", style=solid];
-"160 BoxPredictor_3/ClassPredictor/BiasAdd/Add" -> "164 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 546, 3, 3]", style=solid];
-"161 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/add_1" -> "165 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/Relu6" [label="[1, 128, 3, 3]", style=solid];
-"162 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "166 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 3, 3, 24]", style=solid];
-"163 PriorBoxClustered_3/0_port" -> "167 PriorBoxClustered_3/ss_0_port" [label="[4]", style=dashed];
-"164 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose" -> "168 BoxPredictor_3/ClassPredictor/BiasAdd/Reshape" [label="[1, 3, 3, 546]", style=solid];
-"165 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/Relu6" -> "169 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/mul_1" [label="[1, 128, 3, 3]", style=solid];
-"166 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 54, 1, 4]", style=solid];
-"167 PriorBoxClustered_3/ss_0_port" -> "16 PriorBoxClustered_3/naked_not_unsqueezed" [label="[2]", style=dashed];
-"168 BoxPredictor_3/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 54, 91]", style=solid];
-"169 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/mul_1" -> "170 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 2, 2]", style=solid];
-"170 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/add_1" -> "171 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/Relu6" [label="[1, 256, 2, 2]", style=solid];
-"171 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/Relu6" -> "172 BoxPredictor_4/BoxEncodingPredictor/Conv2D" [label="[1, 256, 2, 2]", style=solid];
-"171 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/Relu6" -> "173 BoxPredictor_4/ClassPredictor/Conv2D" [label="[1, 256, 2, 2]", style=solid];
-"171 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/Relu6" -> "174 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/mul_1" [label="[1, 256, 2, 2]", style=solid];
-"172 BoxPredictor_4/BoxEncodingPredictor/Conv2D" -> "175 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 2, 2]", style=solid];
-"173 BoxPredictor_4/ClassPredictor/Conv2D" -> "176 BoxPredictor_4/ClassPredictor/BiasAdd/Add" [label="[1, 546, 2, 2]", style=solid];
-"174 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/mul_1" -> "177 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/add_1" [label="[1, 64, 2, 2]", style=solid];
-"175 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add" -> "178 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 24, 2, 2]", style=solid];
-"175 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add" -> "179 PriorBoxClustered_4/0_port" [label="[1, 24, 2, 2]", style=solid];
-"176 BoxPredictor_4/ClassPredictor/BiasAdd/Add" -> "180 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 546, 2, 2]", style=solid];
-"177 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/add_1" -> "181 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/Relu6" [label="[1, 64, 2, 2]", style=solid];
-"178 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "182 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 2, 2, 24]", style=solid];
-"179 PriorBoxClustered_4/0_port" -> "183 PriorBoxClustered_4/ss_0_port" [label="[4]", style=dashed];
-"180 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose" -> "184 BoxPredictor_4/ClassPredictor/BiasAdd/Reshape" [label="[1, 2, 2, 546]", style=solid];
-"181 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/Relu6" -> "185 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/mul_1" [label="[1, 64, 2, 2]", style=solid];
-"182 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 24, 1, 4]", style=solid];
-"183 PriorBoxClustered_4/ss_0_port" -> "17 PriorBoxClustered_4/naked_not_unsqueezed" [label="[2]", style=dashed];
-"184 BoxPredictor_4/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 24, 91]", style=solid];
-"185 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/mul_1" -> "186 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"186 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/add_1" -> "187 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/Relu6" [label="[1, 128, 1, 1]", style=solid];
-"187 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/Relu6" -> "188 BoxPredictor_5/BoxEncodingPredictor/Conv2D" [label="[1, 128, 1, 1]", style=solid];
-"187 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/Relu6" -> "189 BoxPredictor_5/ClassPredictor/Conv2D" [label="[1, 128, 1, 1]", style=solid];
-"188 BoxPredictor_5/BoxEncodingPredictor/Conv2D" -> "190 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"189 BoxPredictor_5/ClassPredictor/Conv2D" -> "191 BoxPredictor_5/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"190 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add" -> "192 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[1, 24, 1, 1]", style=solid];
-"190 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add" -> "193 PriorBoxClustered_5/0_port" [label="[1, 24, 1, 1]", style=solid];
-"191 BoxPredictor_5/ClassPredictor/BiasAdd/Add" -> "194 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose" [label="[1, 546, 1, 1]", style=solid];
-"192 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose" -> "195 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Reshape" [label="[1, 1, 1, 24]", style=solid];
-"193 PriorBoxClustered_5/0_port" -> "196 PriorBoxClustered_5/ss_0_port" [label="[4]", style=dashed];
-"194 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose" -> "197 BoxPredictor_5/ClassPredictor/BiasAdd/Reshape" [label="[1, 1, 1, 546]", style=solid];
-"195 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Reshape" -> "110 concat" [label="[1, 6, 1, 4]", style=solid];
-"196 PriorBoxClustered_5/ss_0_port" -> "18 PriorBoxClustered_5/naked_not_unsqueezed" [label="[2]", style=dashed];
-"197 BoxPredictor_5/ClassPredictor/BiasAdd/Reshape" -> "111 concat_1" [label="[1, 6, 91]", style=solid];
-"198 PriorBoxClustered_5/unsqueeze/value1658922155" -> "25 PriorBoxClustered_5" [label="[1]", style=dashed];
-"199 PriorBoxClustered_5/ss_stride1658121846" -> "11 PriorBoxClustered_5/ss_1_port" [label="[1]", style=dashed];
-"200 PriorBoxClustered_5/ss_end1658022119" -> "11 PriorBoxClustered_5/ss_1_port" [label="[1]", style=dashed];
-"201 PriorBoxClustered_5/ss_begin1657922068" -> "11 PriorBoxClustered_5/ss_1_port" [label="[1]", style=dashed];
-"202 image_tensor/Transpose([0 3 1 2])/value1617121900" -> "2 ToFloat" [label="[4]", style=dashed];
-"203 PriorBoxClustered_5/ss_stride1658122116" -> "196 PriorBoxClustered_5/ss_0_port" [label="[1]", style=dashed];
-"204 PriorBoxClustered_5/ss_end1658021867" -> "196 PriorBoxClustered_5/ss_0_port" [label="[1]", style=dashed];
-"205 PriorBoxClustered_5/ss_begin1657921927" -> "196 PriorBoxClustered_5/ss_0_port" [label="[1]", style=dashed];
-"206 BoxPredictor_5/BoxEncodingPredictor/biases/read/_167__cf__170/ReshapeBack" -> "190 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"207 BoxPredictor_5/BoxEncodingPredictor/weights/read/_168__cf__171/ReshapeBack" -> "188 BoxPredictor_5/BoxEncodingPredictor/Conv2D" [label="[24, 128, 1, 1]", style=solid];
-"208 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/sub/_63__cf__66" -> "186 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"209 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/weights/read/_64__cf__67" -> "185 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_5_3x3_s2_128/BatchNorm/batchnorm/mul_1" [label="[128, 64, 3, 3]", style=solid];
-"210 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/sub/_66__cf__69" -> "177 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/add_1" [label="[1, 64, 1, 1]", style=solid];
-"211 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/weights/read/_67__cf__70" -> "174 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_5_1x1_64/BatchNorm/batchnorm/mul_1" [label="[64, 256, 1, 1]", style=solid];
-"212 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/sub/_69__cf__72" -> "170 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"213 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/weights/read/_70__cf__73" -> "169 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_4_3x3_s2_256/BatchNorm/batchnorm/mul_1" [label="[256, 128, 3, 3]", style=solid];
-"214 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/sub/_72__cf__75" -> "161 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"215 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/weights/read/_73__cf__76" -> "158 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_4_1x1_128/BatchNorm/batchnorm/mul_1" [label="[128, 256, 1, 1]", style=solid];
-"216 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/sub/_75__cf__78" -> "154 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"217 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/weights/read/_76__cf__79" -> "153 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_3_3x3_s2_256/BatchNorm/batchnorm/mul_1" [label="[256, 128, 3, 3]", style=solid];
-"218 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/sub/_78__cf__81" -> "145 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"219 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/weights/read/_79__cf__82" -> "142 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_3_1x1_128/BatchNorm/batchnorm/mul_1" [label="[128, 512, 1, 1]", style=solid];
-"220 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/sub/_81__cf__84" -> "138 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"221 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/weights/read/_82__cf__85" -> "137 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_2_Conv2d_2_3x3_s2_512/BatchNorm/batchnorm/mul_1" [label="[512, 256, 3, 3]", style=solid];
-"222 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/sub/_84__cf__87" -> "129 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"223 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/weights/read/_85__cf__88" -> "126 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise_1_Conv2d_2_1x1_256/BatchNorm/batchnorm/mul_1" [label="[256, 1024, 1, 1]", style=solid];
-"224 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/sub/_87__cf__90" -> "122 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 1, 1]", style=solid];
-"225 FeatureExtractor/MobilenetV1/Conv2d_13_pointwise/weights/read/_88__cf__91" -> "121 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_pointwise/BatchNorm/batchnorm/mul_1" [label="[1024, 1024, 1, 1]", style=solid];
-"226 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/sub/_90__cf__93" -> "119 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 1, 1]", style=solid];
-"227 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "117 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_13_depthwise/depthwise" [label="[1024, 1, 1, 3, 3]", style=solid];
-"228 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/sub/_93__cf__96" -> "112 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 1024, 1, 1]", style=solid];
-"229 FeatureExtractor/MobilenetV1/Conv2d_12_pointwise/weights/read/_94__cf__97" -> "109 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_pointwise/BatchNorm/batchnorm/mul_1" [label="[1024, 512, 1, 1]", style=solid];
-"230 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/sub/_96__cf__99" -> "101 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"231 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "98 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_12_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"232 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/sub/_99__cf__102" -> "94 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"233 FeatureExtractor/MobilenetV1/Conv2d_11_pointwise/weights/read/_100__cf__103" -> "93 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 512, 1, 1]", style=solid];
-"234 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/sub/_102__cf__105" -> "91 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"235 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "90 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_11_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"236 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/sub/_105__cf__108" -> "88 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"237 FeatureExtractor/MobilenetV1/Conv2d_10_pointwise/weights/read/_106__cf__109" -> "87 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 512, 1, 1]", style=solid];
-"238 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/sub/_108__cf__111" -> "85 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"239 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "84 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_10_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"240 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/sub/_111__cf__114" -> "82 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"241 FeatureExtractor/MobilenetV1/Conv2d_9_pointwise/weights/read/_112__cf__115" -> "81 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 512, 1, 1]", style=solid];
-"242 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/sub/_114__cf__117" -> "79 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"243 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "78 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_9_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"244 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/sub/_117__cf__120" -> "76 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"245 FeatureExtractor/MobilenetV1/Conv2d_8_pointwise/weights/read/_118__cf__121" -> "75 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 512, 1, 1]", style=solid];
-"246 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/sub/_120__cf__123" -> "73 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"247 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "72 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_8_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"248 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/sub/_123__cf__126" -> "70 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"249 FeatureExtractor/MobilenetV1/Conv2d_7_pointwise/weights/read/_124__cf__127" -> "69 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 512, 1, 1]", style=solid];
-"250 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/sub/_126__cf__129" -> "67 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"251 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "66 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_7_depthwise/depthwise" [label="[512, 1, 1, 3, 3]", style=solid];
-"252 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/sub/_129__cf__132" -> "64 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 512, 1, 1]", style=solid];
-"253 FeatureExtractor/MobilenetV1/Conv2d_6_pointwise/weights/read/_130__cf__133" -> "63 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_pointwise/BatchNorm/batchnorm/mul_1" [label="[512, 256, 1, 1]", style=solid];
-"254 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/sub/_132__cf__135" -> "61 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"255 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "60 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_6_depthwise/depthwise" [label="[256, 1, 1, 3, 3]", style=solid];
-"256 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/sub/_135__cf__138" -> "58 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"257 FeatureExtractor/MobilenetV1/Conv2d_5_pointwise/weights/read/_136__cf__139" -> "57 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_pointwise/BatchNorm/batchnorm/mul_1" [label="[256, 256, 1, 1]", style=solid];
-"258 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/sub/_138__cf__141" -> "55 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"259 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "54 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_5_depthwise/depthwise" [label="[256, 1, 1, 3, 3]", style=solid];
-"260 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/sub/_141__cf__144" -> "52 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 256, 1, 1]", style=solid];
-"261 FeatureExtractor/MobilenetV1/Conv2d_4_pointwise/weights/read/_142__cf__145" -> "51 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_pointwise/BatchNorm/batchnorm/mul_1" [label="[256, 128, 1, 1]", style=solid];
-"262 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/sub/_144__cf__147" -> "49 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"263 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "48 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_4_depthwise/depthwise" [label="[128, 1, 1, 3, 3]", style=solid];
-"264 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/sub/_147__cf__150" -> "46 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"265 FeatureExtractor/MobilenetV1/Conv2d_3_pointwise/weights/read/_148__cf__151" -> "45 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_pointwise/BatchNorm/batchnorm/mul_1" [label="[128, 128, 1, 1]", style=solid];
-"266 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/sub/_150__cf__153" -> "43 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"267 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "42 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_3_depthwise/depthwise" [label="[128, 1, 1, 3, 3]", style=solid];
-"268 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/sub/_153__cf__156" -> "40 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 128, 1, 1]", style=solid];
-"269 FeatureExtractor/MobilenetV1/Conv2d_2_pointwise/weights/read/_154__cf__157" -> "39 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_pointwise/BatchNorm/batchnorm/mul_1" [label="[128, 64, 1, 1]", style=solid];
-"270 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/sub/_156__cf__159" -> "37 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 64, 1, 1]", style=solid];
-"271 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "36 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_2_depthwise/depthwise" [label="[64, 1, 1, 3, 3]", style=solid];
-"272 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/sub/_159__cf__162" -> "34 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/add_1" [label="[1, 64, 1, 1]", style=solid];
-"273 FeatureExtractor/MobilenetV1/Conv2d_1_pointwise/weights/read/_160__cf__163" -> "33 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_pointwise/BatchNorm/batchnorm/mul_1" [label="[64, 32, 1, 1]", style=solid];
-"274 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/sub/_162__cf__165" -> "30 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/add_1" [label="[1, 32, 1, 1]", style=solid];
-"275 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/BatchNorm/batchnorm/mul_1_copy" -> "28 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_1_depthwise/depthwise" [label="[32, 1, 1, 3, 3]", style=solid];
-"276 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/sub/_165__cf__168" -> "19 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/add_1" [label="[1, 32, 1, 1]", style=solid];
-"277 Gather_2911" -> "12 FeatureExtractor/MobilenetV1/MobilenetV1/Conv2d_0/BatchNorm/batchnorm/mul_1" [label="[32, 3, 3, 3]", style=solid];
-"278 Preprocessor/sub/y" -> "5 Preprocessor/sub" [label="[1, 1, 1, 1]", style=solid];
-"279 Preprocessor/mul/x" -> "3 Preprocessor/mul" [label="[1, 1, 1, 1]", style=solid];
-"280 PriorBoxClustered_4/unsqueeze/value1660722065" -> "24 PriorBoxClustered_4" [label="[1]", style=dashed];
-"281 PriorBoxClustered_4/ss_stride1659922128" -> "10 PriorBoxClustered_4/ss_1_port" [label="[1]", style=dashed];
-"282 PriorBoxClustered_4/ss_end1659821909" -> "10 PriorBoxClustered_4/ss_1_port" [label="[1]", style=dashed];
-"283 PriorBoxClustered_4/ss_begin1659721912" -> "10 PriorBoxClustered_4/ss_1_port" [label="[1]", style=dashed];
-"284 PriorBoxClustered_4/ss_stride1659922311" -> "183 PriorBoxClustered_4/ss_0_port" [label="[1]", style=dashed];
-"285 PriorBoxClustered_4/ss_end1659822149" -> "183 PriorBoxClustered_4/ss_0_port" [label="[1]", style=dashed];
-"286 PriorBoxClustered_4/ss_begin1659721861" -> "183 PriorBoxClustered_4/ss_0_port" [label="[1]", style=dashed];
-"287 BoxPredictor_4/BoxEncodingPredictor/biases/read/_169__cf__172/ReshapeBack" -> "175 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"288 BoxPredictor_4/BoxEncodingPredictor/weights/read/_170__cf__173/ReshapeBack" -> "172 BoxPredictor_4/BoxEncodingPredictor/Conv2D" [label="[24, 256, 1, 1]", style=solid];
-"289 PriorBoxClustered_3/unsqueeze/value1657122122" -> "23 PriorBoxClustered_3" [label="[1]", style=dashed];
-"290 PriorBoxClustered_3/ss_stride1656322320" -> "9 PriorBoxClustered_3/ss_1_port" [label="[1]", style=dashed];
-"291 PriorBoxClustered_3/ss_end1656222140" -> "9 PriorBoxClustered_3/ss_1_port" [label="[1]", style=dashed];
-"292 PriorBoxClustered_3/ss_begin1656122026" -> "9 PriorBoxClustered_3/ss_1_port" [label="[1]", style=dashed];
-"293 PriorBoxClustered_3/ss_stride1656322203" -> "167 PriorBoxClustered_3/ss_0_port" [label="[1]", style=dashed];
-"294 PriorBoxClustered_3/ss_end1656222314" -> "167 PriorBoxClustered_3/ss_0_port" [label="[1]", style=dashed];
-"295 PriorBoxClustered_3/ss_begin1656121903" -> "167 PriorBoxClustered_3/ss_0_port" [label="[1]", style=dashed];
-"296 BoxPredictor_3/BoxEncodingPredictor/biases/read/_171__cf__174/ReshapeBack" -> "159 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"297 BoxPredictor_3/BoxEncodingPredictor/weights/read/_172__cf__175/ReshapeBack" -> "156 BoxPredictor_3/BoxEncodingPredictor/Conv2D" [label="[24, 256, 1, 1]", style=solid];
-"298 PriorBoxClustered_2/unsqueeze/value1662521894" -> "22 PriorBoxClustered_2" [label="[1]", style=dashed];
-"299 PriorBoxClustered_2/ss_stride1661721993" -> "8 PriorBoxClustered_2/ss_1_port" [label="[1]", style=dashed];
-"300 PriorBoxClustered_2/ss_end1661621987" -> "8 PriorBoxClustered_2/ss_1_port" [label="[1]", style=dashed];
-"301 PriorBoxClustered_2/ss_begin1661521888" -> "8 PriorBoxClustered_2/ss_1_port" [label="[1]", style=dashed];
-"302 PriorBoxClustered_2/ss_stride1661722224" -> "151 PriorBoxClustered_2/ss_0_port" [label="[1]", style=dashed];
-"303 PriorBoxClustered_2/ss_end1661621915" -> "151 PriorBoxClustered_2/ss_0_port" [label="[1]", style=dashed];
-"304 PriorBoxClustered_2/ss_begin1661522101" -> "151 PriorBoxClustered_2/ss_0_port" [label="[1]", style=dashed];
-"305 BoxPredictor_2/BoxEncodingPredictor/biases/read/_173__cf__176/ReshapeBack" -> "143 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"306 BoxPredictor_2/BoxEncodingPredictor/weights/read/_174__cf__177/ReshapeBack" -> "140 BoxPredictor_2/BoxEncodingPredictor/Conv2D" [label="[24, 512, 1, 1]", style=solid];
-"307 PriorBoxClustered_1/unsqueeze/value1666121864" -> "21 PriorBoxClustered_1" [label="[1]", style=dashed];
-"308 PriorBoxClustered_1/ss_stride1665322200" -> "7 PriorBoxClustered_1/ss_1_port" [label="[1]", style=dashed];
-"309 PriorBoxClustered_1/ss_end1665222266" -> "7 PriorBoxClustered_1/ss_1_port" [label="[1]", style=dashed];
-"310 PriorBoxClustered_1/ss_begin1665122323" -> "7 PriorBoxClustered_1/ss_1_port" [label="[1]", style=dashed];
-"311 PriorBoxClustered_1/ss_stride1665321942" -> "135 PriorBoxClustered_1/ss_0_port" [label="[1]", style=dashed];
-"312 PriorBoxClustered_1/ss_end1665222146" -> "135 PriorBoxClustered_1/ss_0_port" [label="[1]", style=dashed];
-"313 PriorBoxClustered_1/ss_begin1665122245" -> "135 PriorBoxClustered_1/ss_0_port" [label="[1]", style=dashed];
-"314 BoxPredictor_1/BoxEncodingPredictor/biases/read/_175__cf__178/ReshapeBack" -> "127 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 24, 1, 1]", style=solid];
-"315 BoxPredictor_1/BoxEncodingPredictor/weights/read/_176__cf__179/ReshapeBack" -> "124 BoxPredictor_1/BoxEncodingPredictor/Conv2D" [label="[24, 1024, 1, 1]", style=solid];
-"316 PriorBoxClustered_0/unsqueeze/value1664322215" -> "20 PriorBoxClustered_0" [label="[1]", style=dashed];
-"317 PriorBoxClustered_0/ss_stride1663522167" -> "6 PriorBoxClustered_0/ss_1_port" [label="[1]", style=dashed];
-"318 PriorBoxClustered_0/ss_end1663422110" -> "6 PriorBoxClustered_0/ss_1_port" [label="[1]", style=dashed];
-"319 PriorBoxClustered_0/ss_begin1663322044" -> "6 PriorBoxClustered_0/ss_1_port" [label="[1]", style=dashed];
-"320 PriorBoxClustered_0/ss_stride1663522053" -> "107 PriorBoxClustered_0/ss_0_port" [label="[1]", style=dashed];
-"321 PriorBoxClustered_0/ss_end1663422131" -> "107 PriorBoxClustered_0/ss_0_port" [label="[1]", style=dashed];
-"322 PriorBoxClustered_0/ss_begin1663322188" -> "107 PriorBoxClustered_0/ss_0_port" [label="[1]", style=dashed];
-"323 BoxPredictor_0/BoxEncodingPredictor/biases/read/_177__cf__180/ReshapeBack" -> "99 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add" [label="[1, 12, 1, 1]", style=solid];
-"324 BoxPredictor_0/BoxEncodingPredictor/weights/read/_178__cf__181/ReshapeBack" -> "96 BoxPredictor_0/BoxEncodingPredictor/Conv2D" [label="[12, 512, 1, 1]", style=solid];
-"325 do_reshape_conf/value" -> "118 do_reshape_conf" [label="[2]", style=dashed];
-"326 do_ExpandDims_conf/value" -> "114 do_ExpandDims_conf" [label="[4]", style=dashed];
-"327 7099" -> "197 BoxPredictor_5/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"328 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose/value1578122020" -> "194 BoxPredictor_5/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"329 BoxPredictor_5/ClassPredictor/biases/read/_41__cf__44" -> "191 BoxPredictor_5/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"330 BoxPredictor_5/ClassPredictor/weights/read/_42__cf__45" -> "189 BoxPredictor_5/ClassPredictor/Conv2D" [label="[546, 128, 1, 1]", style=solid];
-"331 7095" -> "184 BoxPredictor_4/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"332 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose/value1577322305" -> "180 BoxPredictor_4/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"333 BoxPredictor_4/ClassPredictor/biases/read/_43__cf__46" -> "176 BoxPredictor_4/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"334 BoxPredictor_4/ClassPredictor/weights/read/_44__cf__47" -> "173 BoxPredictor_4/ClassPredictor/Conv2D" [label="[546, 256, 1, 1]", style=solid];
-"335 7091" -> "168 BoxPredictor_3/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"336 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose/value1576521918" -> "164 BoxPredictor_3/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"337 BoxPredictor_3/ClassPredictor/biases/read/_45__cf__48" -> "160 BoxPredictor_3/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"338 BoxPredictor_3/ClassPredictor/weights/read/_46__cf__49" -> "157 BoxPredictor_3/ClassPredictor/Conv2D" [label="[546, 256, 1, 1]", style=solid];
-"339 7087" -> "152 BoxPredictor_2/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"340 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose/value1575722248" -> "148 BoxPredictor_2/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"341 BoxPredictor_2/ClassPredictor/biases/read/_47__cf__50" -> "144 BoxPredictor_2/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"342 BoxPredictor_2/ClassPredictor/weights/read/_48__cf__51" -> "141 BoxPredictor_2/ClassPredictor/Conv2D" [label="[546, 512, 1, 1]", style=solid];
-"343 7083" -> "136 BoxPredictor_1/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"344 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose/value1574921921" -> "132 BoxPredictor_1/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"345 BoxPredictor_1/ClassPredictor/biases/read/_49__cf__52" -> "128 BoxPredictor_1/ClassPredictor/BiasAdd/Add" [label="[1, 546, 1, 1]", style=solid];
-"346 BoxPredictor_1/ClassPredictor/weights/read/_50__cf__53" -> "125 BoxPredictor_1/ClassPredictor/Conv2D" [label="[546, 1024, 1, 1]", style=solid];
-"347 7079" -> "108 BoxPredictor_0/ClassPredictor/BiasAdd/Reshape" [label="[3]", style=dashed];
-"348 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose/value1574122035" -> "104 BoxPredictor_0/ClassPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"349 BoxPredictor_0/ClassPredictor/biases/read/_51__cf__54" -> "100 BoxPredictor_0/ClassPredictor/BiasAdd/Add" [label="[1, 273, 1, 1]", style=solid];
-"350 BoxPredictor_0/ClassPredictor/weights/read/_52__cf__55" -> "97 BoxPredictor_0/ClassPredictor/Conv2D" [label="[273, 512, 1, 1]", style=solid];
-"351 do_reshape_offsets/value" -> "113 do_reshape_offsets" [label="[2]", style=dashed];
-"352 7097" -> "195 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"353 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1577722092" -> "192 BoxPredictor_5/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"354 7093" -> "182 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"355 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1576922317" -> "178 BoxPredictor_4/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"356 7089" -> "166 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"357 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1576122242" -> "162 BoxPredictor_3/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"358 7085" -> "150 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"359 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1575322050" -> "146 BoxPredictor_2/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"360 7081" -> "134 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"361 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1574521897" -> "130 BoxPredictor_1/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-"362 7077" -> "106 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Reshape" [label="[4]", style=dashed];
-"363 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose/value1573721858" -> "102 BoxPredictor_0/BoxEncodingPredictor/BiasAdd/Add/Transpose" [label="[4]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/yolo-v4-tiny-tf.dot b/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/yolo-v4-tiny-tf.dot
deleted file mode 100644
index 26c6d038178..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/original_nncf_graph/yolo-v4-tiny-tf.dot
+++ /dev/null
@@ -1,329 +0,0 @@
-strict digraph {
-"0 image_input" [id=0, type=Parameter];
-"1 Divide_2366" [id=1, type=Transpose];
-"2 Multiply_3699" [id=2, type=Convolution];
-"3 Transpose_1171" [id=3, type=Add];
-"4 Transpose_1177" [id=4, type=PRelu];
-"5 Multiply_3713" [id=5, type=Convolution];
-"6 Transpose_1228" [id=6, type=Add];
-"7 Transpose_1234" [id=7, type=PRelu];
-"8 Multiply_3727" [id=8, type=Convolution];
-"9 Transpose_1258" [id=9, type=Add];
-"10 Transpose_1264" [id=10, type=PRelu];
-"11 Transpose_1367" [id=11, type=Concat];
-"12 group_route_3/split" [id=12, type=Split];
-"13 MaxPool_307" [id=13, type=MaxPool];
-"14 Multiply_3741" [id=14, type=Convolution];
-"15 Multiply_3783" [id=15, type=Convolution];
-"16 Transpose_1293" [id=16, type=Add];
-"17 Transpose_1391" [id=17, type=Add];
-"18 Transpose_1299" [id=18, type=PRelu];
-"19 Transpose_1397" [id=19, type=PRelu];
-"20 Multiply_3755" [id=20, type=Convolution];
-"21 Transpose_1333" [id=21, type=Concat];
-"22 Transpose_1500" [id=22, type=Concat];
-"23 group_route_11/split" [id=23, type=Split];
-"24 Transpose_1323" [id=24, type=Add];
-"25 Multiply_3769" [id=25, type=Convolution];
-"26 MaxPool_433" [id=26, type=MaxPool];
-"27 Multiply_3797" [id=27, type=Convolution];
-"28 Transpose_1329" [id=28, type=PRelu];
-"29 Transpose_1357" [id=29, type=Add];
-"30 Multiply_3839" [id=30, type=Convolution];
-"31 Transpose_1426" [id=31, type=Add];
-"32 Transpose_1363" [id=32, type=PRelu];
-"33 Transpose_1524" [id=33, type=Add];
-"34 Transpose_1432" [id=34, type=PRelu];
-"35 Transpose_1530" [id=35, type=PRelu];
-"36 Multiply_3811" [id=36, type=Convolution];
-"37 Transpose_1466" [id=37, type=Concat];
-"38 Transpose_1633" [id=38, type=Concat];
-"39 group_route_19/split" [id=39, type=Split];
-"40 Transpose_1456" [id=40, type=Add];
-"41 Multiply_3825" [id=41, type=Convolution];
-"42 MaxPool_579" [id=42, type=MaxPool];
-"43 Multiply_3853" [id=43, type=Convolution];
-"44 Transpose_1462" [id=44, type=PRelu];
-"45 Transpose_1490" [id=45, type=Add];
-"46 Multiply_3895" [id=46, type=Convolution];
-"47 Transpose_1559" [id=47, type=Add];
-"48 Transpose_1496" [id=48, type=PRelu];
-"49 Transpose_1657" [id=49, type=Add];
-"50 Transpose_1565" [id=50, type=PRelu];
-"51 Transpose_1663" [id=51, type=PRelu];
-"52 Multiply_3867" [id=52, type=Convolution];
-"53 Transpose_1599" [id=53, type=Concat];
-"54 Multiply_3909" [id=54, type=Convolution];
-"55 Transpose_1589" [id=55, type=Add];
-"56 Multiply_3881" [id=56, type=Convolution];
-"57 Transpose_1687" [id=57, type=Add];
-"58 Transpose_1595" [id=58, type=PRelu];
-"59 Transpose_1623" [id=59, type=Add];
-"60 Transpose_1693" [id=60, type=PRelu];
-"61 Transpose_1629" [id=61, type=PRelu];
-"62 Multiply_3923" [id=62, type=Convolution];
-"63 Multiply_3951" [id=63, type=Convolution];
-"64 Transpose_1727" [id=64, type=Concat];
-"65 Transpose_1717" [id=65, type=Add];
-"66 Transpose_1787" [id=66, type=Add];
-"67 Multiply_3937" [id=67, type=Convolution];
-"68 Transpose_1723" [id=68, type=PRelu];
-"69 Transpose_1793" [id=69, type=PRelu];
-"70 Transpose_1751" [id=70, type=Add];
-"71 leaky_re_lu_17/LeakyRelu" [id=71, type=Transpose];
-"72 Convolution_749" [id=72, type=Convolution];
-"73 Transpose_1757" [id=73, type=PRelu];
-"74 up_sampling2d/Shape" [id=74, type=ShapeOf];
-"75 up_sampling2d/resize/ResizeNearestNeighbor" [id=75, type=Interpolate];
-"76 Transpose_1799" [id=76, type=Add];
-"77 Convolution_706" [id=77, type=Convolution];
-"78 up_sampling2d/strided_slice" [id=78, type=StridedSlice];
-"79 Transpose_1725" [id=79, type=Transpose];
-"80 conv2d_17/BiasAdd" [id=80, type=Transpose];
-"81 Transpose_1763" [id=81, type=Add];
-"82 up_sampling2d/mul" [id=82, type=Multiply];
-"83 conv2d_17/BiasAdd^0" [id=83, label="83 conv2d_17/BiasAdd:0", type=Result];
-"84 conv2d_20/BiasAdd" [id=84, type=Transpose];
-"85 conv2d_20/BiasAdd^0" [id=85, label="85 conv2d_20/BiasAdd:0", type=Result];
-"86 Constant_1762" [id=86, type=Constant];
-"87 Transpose_1761" [id=87, type=Constant];
-"88 Transpose_705" [id=88, type=Constant];
-"89 Transpose_1755" [id=89, type=Constant];
-"90 Constant_3945" [id=90, type=Constant];
-"91 Multiply_4070" [id=91, type=Constant];
-"92 Transpose_1627" [id=92, type=Constant];
-"93 Constant_3889" [id=93, type=Constant];
-"94 Multiply_4046" [id=94, type=Constant];
-"95 Transpose_1563" [id=95, type=Constant];
-"96 Constant_3861" [id=96, type=Constant];
-"97 Multiply_4034" [id=97, type=Constant];
-"98 Constant_1531" [id=98, type=Constant];
-"99 Transpose_1528" [id=99, type=Constant];
-"100 Constant_3847" [id=100, type=Constant];
-"101 Multiply_4028" [id=101, type=Constant];
-"102 Transpose_1494" [id=102, type=Constant];
-"103 Constant_3833" [id=103, type=Constant];
-"104 Multiply_4022" [id=104, type=Constant];
-"105 Transpose_1430" [id=105, type=Constant];
-"106 Constant_3805" [id=106, type=Constant];
-"107 Multiply_4010" [id=107, type=Constant];
-"108 Constant_1398" [id=108, type=Constant];
-"109 Transpose_1395" [id=109, type=Constant];
-"110 Constant_3791" [id=110, type=Constant];
-"111 Multiply_4004" [id=111, type=Constant];
-"112 Transpose_1361" [id=112, type=Constant];
-"113 Constant_3777" [id=113, type=Constant];
-"114 Multiply_3998" [id=114, type=Constant];
-"115 Transpose_1297" [id=115, type=Constant];
-"116 Constant_3749" [id=116, type=Constant];
-"117 Multiply_3986" [id=117, type=Constant];
-"118 Constant_1265" [id=118, type=Constant];
-"119 Transpose_1262" [id=119, type=Constant];
-"120 Constant_3735" [id=120, type=Constant];
-"121 Multiply_3980" [id=121, type=Constant];
-"122 Transpose_1232" [id=122, type=Constant];
-"123 Constant_3721" [id=123, type=Constant];
-"124 Multiply_3974" [id=124, type=Constant];
-"125 Transpose_1175" [id=125, type=Constant];
-"126 Constant_3707" [id=126, type=Constant];
-"127 Gather_4242" [id=127, type=Constant];
-"128 Constant_2326" [id=128, type=Constant];
-"129 Transpose_1327" [id=129, type=Constant];
-"130 Constant_3763" [id=130, type=Constant];
-"131 Multiply_3992" [id=131, type=Constant];
-"132 Transpose_1460" [id=132, type=Constant];
-"133 Constant_3819" [id=133, type=Constant];
-"134 Multiply_4016" [id=134, type=Constant];
-"135 Transpose_1593" [id=135, type=Constant];
-"136 Constant_3875" [id=136, type=Constant];
-"137 Multiply_4040" [id=137, type=Constant];
-"138 Constant_1724" [id=138, type=Constant];
-"139 Constant_669" [id=139, type=Constant];
-"140 up_sampling2d/Const" [id=140, type=Constant];
-"141 up_sampling2d/strided_slice/stack_2" [id=141, type=Constant];
-"142 up_sampling2d/strided_slice/stack_1" [id=142, type=Constant];
-"143 up_sampling2d/strided_slice/stack" [id=143, type=Constant];
-"144 Constant_1722" [id=144, type=Constant];
-"145 Transpose_1721" [id=145, type=Constant];
-"146 Constant_3931" [id=146, type=Constant];
-"147 Multiply_4064" [id=147, type=Constant];
-"148 Transpose_1691" [id=148, type=Constant];
-"149 Constant_3917" [id=149, type=Constant];
-"150 Multiply_4058" [id=150, type=Constant];
-"151 Transpose_1661" [id=151, type=Constant];
-"152 Constant_3903" [id=152, type=Constant];
-"153 Multiply_4052" [id=153, type=Constant];
-"154 Constant_1798" [id=154, type=Constant];
-"155 Transpose_1797" [id=155, type=Constant];
-"156 Transpose_748" [id=156, type=Constant];
-"157 Transpose_1791" [id=157, type=Constant];
-"158 Constant_3959" [id=158, type=Constant];
-"159 Multiply_4076" [id=159, type=Constant];
-"0 image_input" -> "1 Divide_2366" [label="[1, 416, 416, 3]", style=solid];
-"1 Divide_2366" -> "2 Multiply_3699" [label="[1, 3, 416, 416]", style=solid];
-"2 Multiply_3699" -> "3 Transpose_1171" [label="[1, 32, 208, 208]", style=solid];
-"3 Transpose_1171" -> "4 Transpose_1177" [label="[1, 32, 208, 208]", style=solid];
-"4 Transpose_1177" -> "5 Multiply_3713" [label="[1, 32, 208, 208]", style=solid];
-"5 Multiply_3713" -> "6 Transpose_1228" [label="[1, 64, 104, 104]", style=solid];
-"6 Transpose_1228" -> "7 Transpose_1234" [label="[1, 64, 104, 104]", style=solid];
-"7 Transpose_1234" -> "8 Multiply_3727" [label="[1, 64, 104, 104]", style=solid];
-"8 Multiply_3727" -> "9 Transpose_1258" [label="[1, 64, 104, 104]", style=solid];
-"9 Transpose_1258" -> "10 Transpose_1264" [label="[1, 64, 104, 104]", style=solid];
-"10 Transpose_1264" -> "11 Transpose_1367" [label="[1, 64, 104, 104]", style=solid];
-"10 Transpose_1264" -> "12 group_route_3/split" [label="[1, 64, 104, 104]", style=solid];
-"11 Transpose_1367" -> "13 MaxPool_307" [label="[1, 128, 104, 104]", style=solid];
-"12 group_route_3/split" -> "14 Multiply_3741" [label="[1, 32, 104, 104]", style=solid];
-"13 MaxPool_307" -> "15 Multiply_3783" [label="[1, 128, 52, 52]", style=solid];
-"14 Multiply_3741" -> "16 Transpose_1293" [label="[1, 32, 104, 104]", style=solid];
-"15 Multiply_3783" -> "17 Transpose_1391" [label="[1, 128, 52, 52]", style=solid];
-"16 Transpose_1293" -> "18 Transpose_1299" [label="[1, 32, 104, 104]", style=solid];
-"17 Transpose_1391" -> "19 Transpose_1397" [label="[1, 128, 52, 52]", style=solid];
-"18 Transpose_1299" -> "20 Multiply_3755" [label="[1, 32, 104, 104]", style=solid];
-"18 Transpose_1299" -> "21 Transpose_1333" [label="[1, 32, 104, 104]", style=solid];
-"19 Transpose_1397" -> "22 Transpose_1500" [label="[1, 128, 52, 52]", style=solid];
-"19 Transpose_1397" -> "23 group_route_11/split" [label="[1, 128, 52, 52]", style=solid];
-"20 Multiply_3755" -> "24 Transpose_1323" [label="[1, 32, 104, 104]", style=solid];
-"21 Transpose_1333" -> "25 Multiply_3769" [label="[1, 64, 104, 104]", style=solid];
-"22 Transpose_1500" -> "26 MaxPool_433" [label="[1, 256, 52, 52]", style=solid];
-"23 group_route_11/split" -> "27 Multiply_3797" [label="[1, 64, 52, 52]", style=solid];
-"24 Transpose_1323" -> "28 Transpose_1329" [label="[1, 32, 104, 104]", style=solid];
-"25 Multiply_3769" -> "29 Transpose_1357" [label="[1, 64, 104, 104]", style=solid];
-"26 MaxPool_433" -> "30 Multiply_3839" [label="[1, 256, 26, 26]", style=solid];
-"27 Multiply_3797" -> "31 Transpose_1426" [label="[1, 64, 52, 52]", style=solid];
-"28 Transpose_1329" -> "21 Transpose_1333" [label="[1, 32, 104, 104]", style=solid];
-"29 Transpose_1357" -> "32 Transpose_1363" [label="[1, 64, 104, 104]", style=solid];
-"30 Multiply_3839" -> "33 Transpose_1524" [label="[1, 256, 26, 26]", style=solid];
-"31 Transpose_1426" -> "34 Transpose_1432" [label="[1, 64, 52, 52]", style=solid];
-"32 Transpose_1363" -> "11 Transpose_1367" [label="[1, 64, 104, 104]", style=solid];
-"33 Transpose_1524" -> "35 Transpose_1530" [label="[1, 256, 26, 26]", style=solid];
-"34 Transpose_1432" -> "36 Multiply_3811" [label="[1, 64, 52, 52]", style=solid];
-"34 Transpose_1432" -> "37 Transpose_1466" [label="[1, 64, 52, 52]", style=solid];
-"35 Transpose_1530" -> "38 Transpose_1633" [label="[1, 256, 26, 26]", style=solid];
-"35 Transpose_1530" -> "39 group_route_19/split" [label="[1, 256, 26, 26]", style=solid];
-"36 Multiply_3811" -> "40 Transpose_1456" [label="[1, 64, 52, 52]", style=solid];
-"37 Transpose_1466" -> "41 Multiply_3825" [label="[1, 128, 52, 52]", style=solid];
-"38 Transpose_1633" -> "42 MaxPool_579" [label="[1, 512, 26, 26]", style=solid];
-"39 group_route_19/split" -> "43 Multiply_3853" [label="[1, 128, 26, 26]", style=solid];
-"40 Transpose_1456" -> "44 Transpose_1462" [label="[1, 64, 52, 52]", style=solid];
-"41 Multiply_3825" -> "45 Transpose_1490" [label="[1, 128, 52, 52]", style=solid];
-"42 MaxPool_579" -> "46 Multiply_3895" [label="[1, 512, 13, 13]", style=solid];
-"43 Multiply_3853" -> "47 Transpose_1559" [label="[1, 128, 26, 26]", style=solid];
-"44 Transpose_1462" -> "37 Transpose_1466" [label="[1, 64, 52, 52]", style=solid];
-"45 Transpose_1490" -> "48 Transpose_1496" [label="[1, 128, 52, 52]", style=solid];
-"46 Multiply_3895" -> "49 Transpose_1657" [label="[1, 512, 13, 13]", style=solid];
-"47 Transpose_1559" -> "50 Transpose_1565" [label="[1, 128, 26, 26]", style=solid];
-"48 Transpose_1496" -> "22 Transpose_1500" [label="[1, 128, 52, 52]", style=solid];
-"49 Transpose_1657" -> "51 Transpose_1663" [label="[1, 512, 13, 13]", style=solid];
-"50 Transpose_1565" -> "52 Multiply_3867" [label="[1, 128, 26, 26]", style=solid];
-"50 Transpose_1565" -> "53 Transpose_1599" [label="[1, 128, 26, 26]", style=solid];
-"51 Transpose_1663" -> "54 Multiply_3909" [label="[1, 512, 13, 13]", style=solid];
-"52 Multiply_3867" -> "55 Transpose_1589" [label="[1, 128, 26, 26]", style=solid];
-"53 Transpose_1599" -> "56 Multiply_3881" [label="[1, 256, 26, 26]", style=solid];
-"54 Multiply_3909" -> "57 Transpose_1687" [label="[1, 256, 13, 13]", style=solid];
-"55 Transpose_1589" -> "58 Transpose_1595" [label="[1, 128, 26, 26]", style=solid];
-"56 Multiply_3881" -> "59 Transpose_1623" [label="[1, 256, 26, 26]", style=solid];
-"57 Transpose_1687" -> "60 Transpose_1693" [label="[1, 256, 13, 13]", style=solid];
-"58 Transpose_1595" -> "53 Transpose_1599" [label="[1, 128, 26, 26]", style=solid];
-"59 Transpose_1623" -> "61 Transpose_1629" [label="[1, 256, 26, 26]", style=solid];
-"60 Transpose_1693" -> "62 Multiply_3923" [label="[1, 256, 13, 13]", style=solid];
-"60 Transpose_1693" -> "63 Multiply_3951" [label="[1, 256, 13, 13]", style=solid];
-"61 Transpose_1629" -> "38 Transpose_1633" [label="[1, 256, 26, 26]", style=solid];
-"61 Transpose_1629" -> "64 Transpose_1727" [label="[1, 256, 26, 26]", style=solid];
-"62 Multiply_3923" -> "65 Transpose_1717" [label="[1, 128, 13, 13]", style=solid];
-"63 Multiply_3951" -> "66 Transpose_1787" [label="[1, 512, 13, 13]", style=solid];
-"64 Transpose_1727" -> "67 Multiply_3937" [label="[1, 384, 26, 26]", style=solid];
-"65 Transpose_1717" -> "68 Transpose_1723" [label="[1, 128, 13, 13]", style=solid];
-"66 Transpose_1787" -> "69 Transpose_1793" [label="[1, 512, 13, 13]", style=solid];
-"67 Multiply_3937" -> "70 Transpose_1751" [label="[1, 256, 26, 26]", style=solid];
-"68 Transpose_1723" -> "71 leaky_re_lu_17/LeakyRelu" [label="[1, 128, 13, 13]", style=solid];
-"69 Transpose_1793" -> "72 Convolution_749" [label="[1, 512, 13, 13]", style=solid];
-"70 Transpose_1751" -> "73 Transpose_1757" [label="[1, 256, 26, 26]", style=solid];
-"71 leaky_re_lu_17/LeakyRelu" -> "74 up_sampling2d/Shape" [label="[1, 13, 13, 128]", style=solid];
-"71 leaky_re_lu_17/LeakyRelu" -> "75 up_sampling2d/resize/ResizeNearestNeighbor" [label="[1, 13, 13, 128]", style=solid];
-"72 Convolution_749" -> "76 Transpose_1799" [label="[1, 255, 13, 13]", style=solid];
-"73 Transpose_1757" -> "77 Convolution_706" [label="[1, 256, 26, 26]", style=solid];
-"74 up_sampling2d/Shape" -> "78 up_sampling2d/strided_slice" [label="[4]", style=dashed];
-"75 up_sampling2d/resize/ResizeNearestNeighbor" -> "79 Transpose_1725" [label="[1, 26, 26, 128]", style=solid];
-"76 Transpose_1799" -> "80 conv2d_17/BiasAdd" [label="[1, 255, 13, 13]", style=solid];
-"77 Convolution_706" -> "81 Transpose_1763" [label="[1, 255, 26, 26]", style=solid];
-"78 up_sampling2d/strided_slice" -> "82 up_sampling2d/mul" [label="[2]", style=dashed];
-"79 Transpose_1725" -> "64 Transpose_1727" [label="[1, 128, 26, 26]", style=solid];
-"80 conv2d_17/BiasAdd" -> "83 conv2d_17/BiasAdd^0" [label="[1, 13, 13, 255]", style=solid];
-"81 Transpose_1763" -> "84 conv2d_20/BiasAdd" [label="[1, 255, 26, 26]", style=solid];
-"82 up_sampling2d/mul" -> "75 up_sampling2d/resize/ResizeNearestNeighbor" [label="[2]", style=dashed];
-"84 conv2d_20/BiasAdd" -> "85 conv2d_20/BiasAdd^0" [label="[1, 26, 26, 255]", style=solid];
-"86 Constant_1762" -> "84 conv2d_20/BiasAdd" [label="[4]", style=dashed];
-"87 Transpose_1761" -> "81 Transpose_1763" [label="[1, 255, 1, 1]", style=solid];
-"88 Transpose_705" -> "77 Convolution_706" [label="[255, 256, 1, 1]", style=solid];
-"89 Transpose_1755" -> "73 Transpose_1757" [label="[1, 1, 1, 1]", style=solid];
-"90 Constant_3945" -> "70 Transpose_1751" [label="[1, 256, 1, 1]", style=solid];
-"91 Multiply_4070" -> "67 Multiply_3937" [label="[256, 384, 3, 3]", style=solid];
-"92 Transpose_1627" -> "61 Transpose_1629" [label="[1, 1, 1, 1]", style=solid];
-"93 Constant_3889" -> "59 Transpose_1623" [label="[1, 256, 1, 1]", style=solid];
-"94 Multiply_4046" -> "56 Multiply_3881" [label="[256, 256, 1, 1]", style=solid];
-"95 Transpose_1563" -> "50 Transpose_1565" [label="[1, 1, 1, 1]", style=solid];
-"96 Constant_3861" -> "47 Transpose_1559" [label="[1, 128, 1, 1]", style=solid];
-"97 Multiply_4034" -> "43 Multiply_3853" [label="[128, 128, 3, 3]", style=solid];
-"98 Constant_1531" -> "39 group_route_19/split" [label="[]", style=dashed];
-"99 Transpose_1528" -> "35 Transpose_1530" [label="[1, 1, 1, 1]", style=solid];
-"100 Constant_3847" -> "33 Transpose_1524" [label="[1, 256, 1, 1]", style=solid];
-"101 Multiply_4028" -> "30 Multiply_3839" [label="[256, 256, 3, 3]", style=solid];
-"102 Transpose_1494" -> "48 Transpose_1496" [label="[1, 1, 1, 1]", style=solid];
-"103 Constant_3833" -> "45 Transpose_1490" [label="[1, 128, 1, 1]", style=solid];
-"104 Multiply_4022" -> "41 Multiply_3825" [label="[128, 128, 1, 1]", style=solid];
-"105 Transpose_1430" -> "34 Transpose_1432" [label="[1, 1, 1, 1]", style=solid];
-"106 Constant_3805" -> "31 Transpose_1426" [label="[1, 64, 1, 1]", style=solid];
-"107 Multiply_4010" -> "27 Multiply_3797" [label="[64, 64, 3, 3]", style=solid];
-"108 Constant_1398" -> "23 group_route_11/split" [label="[]", style=dashed];
-"109 Transpose_1395" -> "19 Transpose_1397" [label="[1, 1, 1, 1]", style=solid];
-"110 Constant_3791" -> "17 Transpose_1391" [label="[1, 128, 1, 1]", style=solid];
-"111 Multiply_4004" -> "15 Multiply_3783" [label="[128, 128, 3, 3]", style=solid];
-"112 Transpose_1361" -> "32 Transpose_1363" [label="[1, 1, 1, 1]", style=solid];
-"113 Constant_3777" -> "29 Transpose_1357" [label="[1, 64, 1, 1]", style=solid];
-"114 Multiply_3998" -> "25 Multiply_3769" [label="[64, 64, 1, 1]", style=solid];
-"115 Transpose_1297" -> "18 Transpose_1299" [label="[1, 1, 1, 1]", style=solid];
-"116 Constant_3749" -> "16 Transpose_1293" [label="[1, 32, 1, 1]", style=solid];
-"117 Multiply_3986" -> "14 Multiply_3741" [label="[32, 32, 3, 3]", style=solid];
-"118 Constant_1265" -> "12 group_route_3/split" [label="[]", style=dashed];
-"119 Transpose_1262" -> "10 Transpose_1264" [label="[1, 1, 1, 1]", style=solid];
-"120 Constant_3735" -> "9 Transpose_1258" [label="[1, 64, 1, 1]", style=solid];
-"121 Multiply_3980" -> "8 Multiply_3727" [label="[64, 64, 3, 3]", style=solid];
-"122 Transpose_1232" -> "7 Transpose_1234" [label="[1, 1, 1, 1]", style=solid];
-"123 Constant_3721" -> "6 Transpose_1228" [label="[1, 64, 1, 1]", style=solid];
-"124 Multiply_3974" -> "5 Multiply_3713" [label="[64, 32, 3, 3]", style=solid];
-"125 Transpose_1175" -> "4 Transpose_1177" [label="[1, 1, 1, 1]", style=solid];
-"126 Constant_3707" -> "3 Transpose_1171" [label="[1, 32, 1, 1]", style=solid];
-"127 Gather_4242" -> "2 Multiply_3699" [label="[32, 3, 3, 3]", style=solid];
-"128 Constant_2326" -> "1 Divide_2366" [label="[4]", style=dashed];
-"129 Transpose_1327" -> "28 Transpose_1329" [label="[1, 1, 1, 1]", style=solid];
-"130 Constant_3763" -> "24 Transpose_1323" [label="[1, 32, 1, 1]", style=solid];
-"131 Multiply_3992" -> "20 Multiply_3755" [label="[32, 32, 3, 3]", style=solid];
-"132 Transpose_1460" -> "44 Transpose_1462" [label="[1, 1, 1, 1]", style=solid];
-"133 Constant_3819" -> "40 Transpose_1456" [label="[1, 64, 1, 1]", style=solid];
-"134 Multiply_4016" -> "36 Multiply_3811" [label="[64, 64, 3, 3]", style=solid];
-"135 Transpose_1593" -> "58 Transpose_1595" [label="[1, 1, 1, 1]", style=solid];
-"136 Constant_3875" -> "55 Transpose_1589" [label="[1, 128, 1, 1]", style=solid];
-"137 Multiply_4040" -> "52 Multiply_3867" [label="[128, 128, 3, 3]", style=solid];
-"138 Constant_1724" -> "79 Transpose_1725" [label="[4]", style=dashed];
-"139 Constant_669" -> "75 up_sampling2d/resize/ResizeNearestNeighbor" [label="[2]", style=dashed];
-"140 up_sampling2d/Const" -> "82 up_sampling2d/mul" [label="[2]", style=dashed];
-"141 up_sampling2d/strided_slice/stack_2" -> "78 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"142 up_sampling2d/strided_slice/stack_1" -> "78 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"143 up_sampling2d/strided_slice/stack" -> "78 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"144 Constant_1722" -> "71 leaky_re_lu_17/LeakyRelu" [label="[4]", style=dashed];
-"145 Transpose_1721" -> "68 Transpose_1723" [label="[1, 1, 1, 1]", style=solid];
-"146 Constant_3931" -> "65 Transpose_1717" [label="[1, 128, 1, 1]", style=solid];
-"147 Multiply_4064" -> "62 Multiply_3923" [label="[128, 256, 1, 1]", style=solid];
-"148 Transpose_1691" -> "60 Transpose_1693" [label="[1, 1, 1, 1]", style=solid];
-"149 Constant_3917" -> "57 Transpose_1687" [label="[1, 256, 1, 1]", style=solid];
-"150 Multiply_4058" -> "54 Multiply_3909" [label="[256, 512, 1, 1]", style=solid];
-"151 Transpose_1661" -> "51 Transpose_1663" [label="[1, 1, 1, 1]", style=solid];
-"152 Constant_3903" -> "49 Transpose_1657" [label="[1, 512, 1, 1]", style=solid];
-"153 Multiply_4052" -> "46 Multiply_3895" [label="[512, 512, 3, 3]", style=solid];
-"154 Constant_1798" -> "80 conv2d_17/BiasAdd" [label="[4]", style=dashed];
-"155 Transpose_1797" -> "76 Transpose_1799" [label="[1, 255, 1, 1]", style=solid];
-"156 Transpose_748" -> "72 Convolution_749" [label="[255, 512, 1, 1]", style=solid];
-"157 Transpose_1791" -> "69 Transpose_1793" [label="[1, 1, 1, 1]", style=solid];
-"158 Constant_3959" -> "66 Transpose_1787" [label="[1, 512, 1, 1]", style=solid];
-"159 Multiply_4076" -> "63 Multiply_3951" [label="[512, 256, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ComparisonBinaryModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/ComparisonBinaryModel.dot
deleted file mode 100644
index bc031f16aaa..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ComparisonBinaryModel.dot
+++ /dev/null
@@ -1,29 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Add" [id=2, type=Add];
-"3 Gather_6" [id=3, type=Gather];
-"4 GreaterEqual_3" [id=4, type=GreaterEqual];
-"5 Result_Add" [id=5, type=Result];
-"6 Convert_4" [id=6, type=Convert];
-"7 Constant_5" [id=7, type=Constant];
-"8 Constant_2" [id=8, type=Constant];
-"9 Constant_2140" [id=9, type=Constant];
-"10 Constant_2139" [id=10, type=Constant];
-"11 Constant_2138" [id=11, type=Constant];
-"12 Constant_2137" [id=12, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"1 Input/fq_output_0" -> "2 Add" [label="[1, 3, 4, 2]", style=solid];
-"1 Input/fq_output_0" -> "3 Gather_6" [label="[1, 3, 4, 2]", style=solid];
-"1 Input/fq_output_0" -> "4 GreaterEqual_3" [label="[1, 3, 4, 2]", style=solid];
-"2 Add" -> "5 Result_Add" [label="[1, 3, 4, 2, 3, 4, 2]", style=solid];
-"3 Gather_6" -> "2 Add" [label="[1, 3, 4, 2, 3, 4, 2]", style=solid];
-"4 GreaterEqual_3" -> "6 Convert_4" [label="[1, 3, 4, 2]", style=dashed];
-"6 Convert_4" -> "3 Gather_6" [label="[1, 3, 4, 2]", style=dashed];
-"7 Constant_5" -> "3 Gather_6" [label="[]", style=dashed];
-"8 Constant_2" -> "4 GreaterEqual_3" [label="[1, 3, 4, 2]", style=solid];
-"9 Constant_2140" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"10 Constant_2139" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"11 Constant_2138" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"12 Constant_2137" -> "1 Input/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvModel.dot
deleted file mode 100644
index 125ee7ec102..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvModel.dot
+++ /dev/null
@@ -1,55 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Sub/fq_output_0" [id=4, type=FakeQuantize];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv" [id=6, type=Convolution];
-"7 Transpose" [id=7, type=Transpose];
-"8 Conv_Add" [id=8, type=Add];
-"9 Concat_32" [id=9, type=Concat];
-"10 Relu" [id=10, type=Relu];
-"11 Result" [id=11, type=Result];
-"12 Constant_30" [id=12, type=Constant];
-"13 Constant_28" [id=13, type=Constant];
-"14 Constant_26" [id=14, type=Constant];
-"15 Bias" [id=15, type=Constant];
-"16 Conv/fq_weights_1" [id=16, type=FakeQuantize];
-"17 Constant_2268" [id=17, type=Constant];
-"18 Constant_2267" [id=18, type=Constant];
-"19 Constant_2266" [id=19, type=Constant];
-"20 Constant_2265" [id=20, type=Constant];
-"21 Constant_20" [id=21, type=Constant];
-"22 Constant_2263" [id=22, type=Constant];
-"23 Constant_2262" [id=23, type=Constant];
-"24 Constant_2261" [id=24, type=Constant];
-"25 Constant_2260" [id=25, type=Constant];
-"26 Constant_18" [id=26, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Sub/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[1, 3, 2, 4]", style=solid];
-"4 Sub/fq_output_0" -> "6 Conv" [label="[1, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[1, 3, 2, 4]", style=solid];
-"6 Conv" -> "8 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_32" [label="[1, 3, 4, 2]", style=solid];
-"8 Conv_Add" -> "10 Relu" [label="[1, 3, 4, 2]", style=solid];
-"9 Concat_32" -> "11 Result" [label="[2, 3, 4, 2]", style=solid];
-"10 Relu" -> "9 Concat_32" [label="[1, 3, 4, 2]", style=solid];
-"12 Constant_30" -> "7 Transpose" [label="[4]", style=dashed];
-"13 Constant_28" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_26" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Bias" -> "8 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"16 Conv/fq_weights_1" -> "6 Conv" [label="[3, 3, 1, 1]", style=solid];
-"17 Constant_2268" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"18 Constant_2267" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"19 Constant_2266" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"20 Constant_2265" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"21 Constant_20" -> "16 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"22 Constant_2263" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"23 Constant_2262" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"24 Constant_2261" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"25 Constant_2260" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"26 Constant_18" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvNotBiasModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvNotBiasModel.dot
deleted file mode 100644
index 9d7e0778387..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ConvNotBiasModel.dot
+++ /dev/null
@@ -1,39 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Sub" [id=1, type=Subtract];
-"2 Sub/fq_output_0" [id=2, type=FakeQuantize];
-"3 Conv" [id=3, type=Convolution];
-"4 Conv_Add" [id=4, type=Add];
-"5 Relu" [id=5, type=Relu];
-"6 Result" [id=6, type=Result];
-"7 NotBias" [id=7, type=Constant];
-"8 Conv/fq_weights_1" [id=8, type=FakeQuantize];
-"9 Constant_14951" [id=9, type=Constant];
-"10 Constant_14950" [id=10, type=Constant];
-"11 Constant_14949" [id=11, type=Constant];
-"12 Constant_14948" [id=12, type=Constant];
-"13 Constant_12903" [id=13, type=Constant];
-"14 Constant_14946" [id=14, type=Constant];
-"15 Constant_14945" [id=15, type=Constant];
-"16 Constant_14944" [id=16, type=Constant];
-"17 Constant_14943" [id=17, type=Constant];
-"18 Constant_12901" [id=18, type=Constant];
-"0 Input_1" -> "1 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Sub" -> "2 Sub/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"2 Sub/fq_output_0" -> "3 Conv" [label="[1, 3, 4, 2]", style=solid];
-"3 Conv" -> "4 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"4 Conv_Add" -> "5 Relu" [label="[1, 3, 4, 2]", style=solid];
-"5 Relu" -> "6 Result" [label="[1, 3, 4, 2]", style=solid];
-"7 NotBias" -> "4 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"8 Conv/fq_weights_1" -> "3 Conv" [label="[3, 3, 1, 1]", style=solid];
-"9 Constant_14951" -> "8 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"10 Constant_14950" -> "8 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"11 Constant_14949" -> "8 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"12 Constant_14948" -> "8 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"13 Constant_12903" -> "8 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"14 Constant_14946" -> "2 Sub/fq_output_0" [label="[]", style=solid];
-"15 Constant_14945" -> "2 Sub/fq_output_0" [label="[]", style=solid];
-"16 Constant_14944" -> "2 Sub/fq_output_0" [label="[]", style=solid];
-"17 Constant_14943" -> "2 Sub/fq_output_0" [label="[]", style=solid];
-"18 Constant_12901" -> "1 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv3DModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv3DModel.dot
deleted file mode 100644
index e485b5780d1..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv3DModel.dot
+++ /dev/null
@@ -1,33 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv3D" [id=2, type=GroupConvolution];
-"3 Add" [id=3, type=Add];
-"4 Result" [id=4, type=Result];
-"5 Constant_4" [id=5, type=Constant];
-"6 Conv3D/fq_weights_1" [id=6, type=FakeQuantize];
-"7 Constant_2046" [id=7, type=Constant];
-"8 Constant_2045" [id=8, type=Constant];
-"9 Constant_2044" [id=9, type=Constant];
-"10 Constant_2043" [id=10, type=Constant];
-"11 Constant_2" [id=11, type=Constant];
-"12 Constant_2041" [id=12, type=Constant];
-"13 Constant_2040" [id=13, type=Constant];
-"14 Constant_2039" [id=14, type=Constant];
-"15 Constant_2038" [id=15, type=Constant];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 3, 7]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv3D" [label="[1, 3, 7]", style=solid];
-"2 Conv3D" -> "3 Add" [label="[1, 3, 3]", style=solid];
-"3 Add" -> "4 Result" [label="[1, 3, 3]", style=solid];
-"5 Constant_4" -> "3 Add" [label="[1, 3, 1]", style=solid];
-"6 Conv3D/fq_weights_1" -> "2 Conv3D" [label="[3, 1, 1, 5]", style=solid];
-"7 Constant_2046" -> "6 Conv3D/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"8 Constant_2045" -> "6 Conv3D/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"9 Constant_2044" -> "6 Conv3D/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"10 Constant_2043" -> "6 Conv3D/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"11 Constant_2" -> "6 Conv3D/fq_weights_1" [label="[3, 1, 1, 5]", style=solid];
-"12 Constant_2041" -> "1 Input_1/fq_output_0" [label="[1, 3, 1]", style=solid];
-"13 Constant_2040" -> "1 Input_1/fq_output_0" [label="[1, 3, 1]", style=solid];
-"14 Constant_2039" -> "1 Input_1/fq_output_0" [label="[1, 3, 1]", style=solid];
-"15 Constant_2038" -> "1 Input_1/fq_output_0" [label="[1, 3, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv4DModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv4DModel.dot
deleted file mode 100644
index 4f85164604c..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv4DModel.dot
+++ /dev/null
@@ -1,35 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv4D" [id=2, type=GroupConvolution];
-"3 Add" [id=3, type=Add];
-"4 Relu" [id=4, type=Relu];
-"5 Result" [id=5, type=Result];
-"6 Constant_4" [id=6, type=Constant];
-"7 Conv4D/fq_weights_1" [id=7, type=FakeQuantize];
-"8 Constant_2051" [id=8, type=Constant];
-"9 Constant_2050" [id=9, type=Constant];
-"10 Constant_2049" [id=10, type=Constant];
-"11 Constant_2048" [id=11, type=Constant];
-"12 Constant_2" [id=12, type=Constant];
-"13 Constant_2046" [id=13, type=Constant];
-"14 Constant_2045" [id=14, type=Constant];
-"15 Constant_2044" [id=15, type=Constant];
-"16 Constant_2043" [id=16, type=Constant];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 3, 5, 5]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv4D" [label="[1, 3, 5, 5]", style=solid];
-"2 Conv4D" -> "3 Add" [label="[1, 3, 3, 3]", style=solid];
-"3 Add" -> "4 Relu" [label="[1, 3, 3, 3]", style=solid];
-"4 Relu" -> "5 Result" [label="[1, 3, 3, 3]", style=solid];
-"6 Constant_4" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"7 Conv4D/fq_weights_1" -> "2 Conv4D" [label="[3, 1, 1, 3, 3]", style=solid];
-"8 Constant_2051" -> "7 Conv4D/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"9 Constant_2050" -> "7 Conv4D/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"10 Constant_2049" -> "7 Conv4D/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"11 Constant_2048" -> "7 Conv4D/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"12 Constant_2" -> "7 Conv4D/fq_weights_1" [label="[3, 1, 1, 3, 3]", style=solid];
-"13 Constant_2046" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_2045" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"15 Constant_2044" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"16 Constant_2043" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv5DModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv5DModel.dot
deleted file mode 100644
index a5bc30bfccb..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConv5DModel.dot
+++ /dev/null
@@ -1,33 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv5D" [id=2, type=GroupConvolution];
-"3 Add" [id=3, type=Add];
-"4 Result" [id=4, type=Result];
-"5 Constant_4" [id=5, type=Constant];
-"6 Conv5D/fq_weights_1" [id=6, type=FakeQuantize];
-"7 Constant_2046" [id=7, type=Constant];
-"8 Constant_2045" [id=8, type=Constant];
-"9 Constant_2044" [id=9, type=Constant];
-"10 Constant_2043" [id=10, type=Constant];
-"11 Constant_2" [id=11, type=Constant];
-"12 Constant_2041" [id=12, type=Constant];
-"13 Constant_2040" [id=13, type=Constant];
-"14 Constant_2039" [id=14, type=Constant];
-"15 Constant_2038" [id=15, type=Constant];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 3, 7, 6, 5]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv5D" [label="[1, 3, 7, 6, 5]", style=solid];
-"2 Conv5D" -> "3 Add" [label="[1, 3, 3, 3, 3]", style=solid];
-"3 Add" -> "4 Result" [label="[1, 3, 3, 3, 3]", style=solid];
-"5 Constant_4" -> "3 Add" [label="[1, 3, 1, 1, 1]", style=solid];
-"6 Conv5D/fq_weights_1" -> "2 Conv5D" [label="[3, 1, 1, 5, 4, 3]", style=solid];
-"7 Constant_2046" -> "6 Conv5D/fq_weights_1" [label="[1, 1, 1, 1, 1, 1]", style=solid];
-"8 Constant_2045" -> "6 Conv5D/fq_weights_1" [label="[1, 1, 1, 1, 1, 1]", style=solid];
-"9 Constant_2044" -> "6 Conv5D/fq_weights_1" [label="[1, 1, 1, 1, 1, 1]", style=solid];
-"10 Constant_2043" -> "6 Conv5D/fq_weights_1" [label="[1, 1, 1, 1, 1, 1]", style=solid];
-"11 Constant_2" -> "6 Conv5D/fq_weights_1" [label="[3, 1, 1, 5, 4, 3]", style=solid];
-"12 Constant_2041" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1, 1]", style=solid];
-"13 Constant_2040" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1, 1]", style=solid];
-"14 Constant_2039" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1, 1]", style=solid];
-"15 Constant_2038" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConvModel.dot
deleted file mode 100644
index ad694143041..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DepthwiseConvModel.dot
+++ /dev/null
@@ -1,35 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv" [id=2, type=GroupConvolution];
-"3 Add" [id=3, type=Add];
-"4 Relu" [id=4, type=Relu];
-"5 Result" [id=5, type=Result];
-"6 Constant_11" [id=6, type=Constant];
-"7 Conv/fq_weights_1" [id=7, type=FakeQuantize];
-"8 Constant_2060" [id=8, type=Constant];
-"9 Constant_2059" [id=9, type=Constant];
-"10 Constant_2058" [id=10, type=Constant];
-"11 Constant_2057" [id=11, type=Constant];
-"12 Constant_9" [id=12, type=Constant];
-"13 Constant_2055" [id=13, type=Constant];
-"14 Constant_2054" [id=14, type=Constant];
-"15 Constant_2053" [id=15, type=Constant];
-"16 Constant_2052" [id=16, type=Constant];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 3, 5, 5]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv" [label="[1, 3, 5, 5]", style=solid];
-"2 Conv" -> "3 Add" [label="[1, 3, 3, 3]", style=solid];
-"3 Add" -> "4 Relu" [label="[1, 3, 3, 3]", style=solid];
-"4 Relu" -> "5 Result" [label="[1, 3, 3, 3]", style=solid];
-"6 Constant_11" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"7 Conv/fq_weights_1" -> "2 Conv" [label="[3, 1, 1, 3, 3]", style=solid];
-"8 Constant_2060" -> "7 Conv/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"9 Constant_2059" -> "7 Conv/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"10 Constant_2058" -> "7 Conv/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"11 Constant_2057" -> "7 Conv/fq_weights_1" [label="[1, 1, 1, 1, 1]", style=solid];
-"12 Constant_9" -> "7 Conv/fq_weights_1" [label="[3, 1, 1, 3, 3]", style=solid];
-"13 Constant_2055" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_2054" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"15 Constant_2053" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"16 Constant_2052" -> "1 Input_1/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DynamicModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/DynamicModel.dot
deleted file mode 100644
index 1633fc0a5b4..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/DynamicModel.dot
+++ /dev/null
@@ -1,55 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Sub/fq_output_0" [id=4, type=FakeQuantize];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv" [id=6, type=Convolution];
-"7 Transpose" [id=7, type=Transpose];
-"8 Conv_Add" [id=8, type=Add];
-"9 Concat_8690" [id=9, type=Concat];
-"10 Relu" [id=10, type=Relu];
-"11 Result" [id=11, type=Result];
-"12 Constant_8688" [id=12, type=Constant];
-"13 Constant_8686" [id=13, type=Constant];
-"14 Constant_8684" [id=14, type=Constant];
-"15 Bias" [id=15, type=Constant];
-"16 Conv/fq_weights_1" [id=16, type=FakeQuantize];
-"17 Constant_10833" [id=17, type=Constant];
-"18 Constant_10832" [id=18, type=Constant];
-"19 Constant_10831" [id=19, type=Constant];
-"20 Constant_10830" [id=20, type=Constant];
-"21 Constant_8678" [id=21, type=Constant];
-"22 Constant_10828" [id=22, type=Constant];
-"23 Constant_10827" [id=23, type=Constant];
-"24 Constant_10826" [id=24, type=Constant];
-"25 Constant_10825" [id=25, type=Constant];
-"26 Constant_8676" [id=26, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[99, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[99, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Sub/fq_output_0" [label="[99, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[99, 3, 2, 4]", style=solid];
-"4 Sub/fq_output_0" -> "6 Conv" [label="[99, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[99, 3, 2, 4]", style=solid];
-"6 Conv" -> "8 Conv_Add" [label="[99, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_8690" [label="[99, 3, 4, 2]", style=solid];
-"8 Conv_Add" -> "10 Relu" [label="[99, 3, 4, 2]", style=solid];
-"9 Concat_8690" -> "11 Result" [label="[198, 3, 4, 2]", style=solid];
-"10 Relu" -> "9 Concat_8690" [label="[99, 3, 4, 2]", style=solid];
-"12 Constant_8688" -> "7 Transpose" [label="[4]", style=dashed];
-"13 Constant_8686" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_8684" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Bias" -> "8 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"16 Conv/fq_weights_1" -> "6 Conv" [label="[3, 3, 1, 1]", style=solid];
-"17 Constant_10833" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"18 Constant_10832" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"19 Constant_10831" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"20 Constant_10830" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"21 Constant_8678" -> "16 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"22 Constant_10828" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"23 Constant_10827" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"24 Constant_10826" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"25 Constant_10825" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"26 Constant_8676" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_F.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_F.dot
deleted file mode 100644
index f97ac8a2d68..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_F.dot
+++ /dev/null
@@ -1,81 +0,0 @@
-strict digraph {
-"0 X" [id=0, type=Parameter];
-"1 initial_hidden_state" [id=1, type=Parameter];
-"2 X/fq_output_0" [id=2, type=FakeQuantize];
-"3 initial_hidden_state/fq_output_0" [id=3, type=FakeQuantize];
-"4 GRUSequence" [id=4, type=GRUSequence];
-"5 GRUSequence/fq_output_0" [id=5, type=FakeQuantize];
-"6 MatMul" [id=6, type=MatMul];
-"7 Result" [id=7, type=Result];
-"8 MatMul/fq_weights_1" [id=8, type=FakeQuantize];
-"9 Constant_2541" [id=9, type=Constant];
-"10 Constant_2540" [id=10, type=Constant];
-"11 Constant_2539" [id=11, type=Constant];
-"12 Constant_2538" [id=12, type=Constant];
-"13 Constant_8" [id=13, type=Constant];
-"14 Constant_2526" [id=14, type=Constant];
-"15 Constant_2525" [id=15, type=Constant];
-"16 Constant_2524" [id=16, type=Constant];
-"17 Constant_2523" [id=17, type=Constant];
-"18 Constant_6" [id=18, type=Constant];
-"19 GRUSequence/fq_weights_4" [id=19, type=FakeQuantize];
-"20 Constant_2536" [id=20, type=Constant];
-"21 Constant_2535" [id=21, type=Constant];
-"22 Constant_2534" [id=22, type=Constant];
-"23 Constant_2533" [id=23, type=Constant];
-"24 Constant_5" [id=24, type=Constant];
-"25 GRUSequence/fq_weights_3" [id=25, type=FakeQuantize];
-"26 Constant_2531" [id=26, type=Constant];
-"27 Constant_2530" [id=27, type=Constant];
-"28 Constant_2529" [id=28, type=Constant];
-"29 Constant_2528" [id=29, type=Constant];
-"30 Constant_4" [id=30, type=Constant];
-"31 Constant_3" [id=31, type=Constant];
-"32 Constant_2521" [id=32, type=Constant];
-"33 Constant_2520" [id=33, type=Constant];
-"34 Constant_2519" [id=34, type=Constant];
-"35 Constant_2518" [id=35, type=Constant];
-"36 Constant_2516" [id=36, type=Constant];
-"37 Constant_2515" [id=37, type=Constant];
-"38 Constant_2514" [id=38, type=Constant];
-"39 Constant_2513" [id=39, type=Constant];
-"0 X" -> "2 X/fq_output_0" [label="[3, 2, 16]", style=solid];
-"1 initial_hidden_state" -> "3 initial_hidden_state/fq_output_0" [label="[3, 1, 128]", style=solid];
-"2 X/fq_output_0" -> "4 GRUSequence" [label="[3, 2, 16]", style=solid];
-"3 initial_hidden_state/fq_output_0" -> "4 GRUSequence" [label="[3, 1, 128]", style=solid];
-"4 GRUSequence" -> "5 GRUSequence/fq_output_0" [label="[3, 1, 2, 128]", style=solid];
-"5 GRUSequence/fq_output_0" -> "6 MatMul" [label="[3, 1, 2, 128]", style=solid];
-"6 MatMul" -> "7 Result" [label="[3, 1, 2, 3]", style=solid];
-"8 MatMul/fq_weights_1" -> "6 MatMul" [label="[3, 1, 128, 3]", style=solid];
-"9 Constant_2541" -> "8 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"10 Constant_2540" -> "8 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"11 Constant_2539" -> "8 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"12 Constant_2538" -> "8 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"13 Constant_8" -> "8 MatMul/fq_weights_1" [label="[3, 1, 128, 3]", style=solid];
-"14 Constant_2526" -> "5 GRUSequence/fq_output_0" [label="[]", style=solid];
-"15 Constant_2525" -> "5 GRUSequence/fq_output_0" [label="[]", style=solid];
-"16 Constant_2524" -> "5 GRUSequence/fq_output_0" [label="[]", style=solid];
-"17 Constant_2523" -> "5 GRUSequence/fq_output_0" [label="[]", style=solid];
-"18 Constant_6" -> "4 GRUSequence" [label="[1, 384]", style=solid];
-"19 GRUSequence/fq_weights_4" -> "4 GRUSequence" [label="[1, 384, 128]", style=solid];
-"20 Constant_2536" -> "19 GRUSequence/fq_weights_4" [label="[1, 384, 1]", style=solid];
-"21 Constant_2535" -> "19 GRUSequence/fq_weights_4" [label="[1, 384, 1]", style=solid];
-"22 Constant_2534" -> "19 GRUSequence/fq_weights_4" [label="[1, 384, 1]", style=solid];
-"23 Constant_2533" -> "19 GRUSequence/fq_weights_4" [label="[1, 384, 1]", style=solid];
-"24 Constant_5" -> "19 GRUSequence/fq_weights_4" [label="[1, 384, 128]", style=solid];
-"25 GRUSequence/fq_weights_3" -> "4 GRUSequence" [label="[1, 384, 16]", style=solid];
-"26 Constant_2531" -> "25 GRUSequence/fq_weights_3" [label="[1, 384, 1]", style=solid];
-"27 Constant_2530" -> "25 GRUSequence/fq_weights_3" [label="[1, 384, 1]", style=solid];
-"28 Constant_2529" -> "25 GRUSequence/fq_weights_3" [label="[1, 384, 1]", style=solid];
-"29 Constant_2528" -> "25 GRUSequence/fq_weights_3" [label="[1, 384, 1]", style=solid];
-"30 Constant_4" -> "25 GRUSequence/fq_weights_3" [label="[1, 384, 16]", style=solid];
-"31 Constant_3" -> "4 GRUSequence" [label="[3]", style=dashed];
-"32 Constant_2521" -> "3 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"33 Constant_2520" -> "3 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"34 Constant_2519" -> "3 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"35 Constant_2518" -> "3 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"36 Constant_2516" -> "2 X/fq_output_0" [label="[]", style=solid];
-"37 Constant_2515" -> "2 X/fq_output_0" [label="[]", style=solid];
-"38 Constant_2514" -> "2 X/fq_output_0" [label="[]", style=solid];
-"39 Constant_2513" -> "2 X/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_T.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_T.dot
deleted file mode 100644
index a9819020b25..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GRUSequenceModel_linear_before_reset_T.dot
+++ /dev/null
@@ -1,41 +0,0 @@
-strict digraph {
-"0 X" [id=0, type=Parameter];
-"1 initial_hidden_state" [id=1, type=Parameter];
-"2 GRUSequence" [id=2, type=GRUSequence];
-"3 GRUSequence/fq_output_0" [id=3, type=FakeQuantize];
-"4 MatMul" [id=4, type=MatMul];
-"5 Result" [id=5, type=Result];
-"6 MatMul/fq_weights_1" [id=6, type=FakeQuantize];
-"7 Constant_2205" [id=7, type=Constant];
-"8 Constant_2204" [id=8, type=Constant];
-"9 Constant_2203" [id=9, type=Constant];
-"10 Constant_2202" [id=10, type=Constant];
-"11 Constant_8" [id=11, type=Constant];
-"12 Constant_2200" [id=12, type=Constant];
-"13 Constant_2199" [id=13, type=Constant];
-"14 Constant_2198" [id=14, type=Constant];
-"15 Constant_2197" [id=15, type=Constant];
-"16 Constant_6" [id=16, type=Constant];
-"17 Constant_5" [id=17, type=Constant];
-"18 Constant_4" [id=18, type=Constant];
-"19 Constant_3" [id=19, type=Constant];
-"0 X" -> "2 GRUSequence" [label="[3, 2, 16]", style=solid];
-"1 initial_hidden_state" -> "2 GRUSequence" [label="[3, 1, 128]", style=solid];
-"2 GRUSequence" -> "3 GRUSequence/fq_output_0" [label="[3, 1, 2, 128]", style=solid];
-"3 GRUSequence/fq_output_0" -> "4 MatMul" [label="[3, 1, 2, 128]", style=solid];
-"4 MatMul" -> "5 Result" [label="[3, 1, 2, 3]", style=solid];
-"6 MatMul/fq_weights_1" -> "4 MatMul" [label="[3, 1, 128, 3]", style=solid];
-"7 Constant_2205" -> "6 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"8 Constant_2204" -> "6 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"9 Constant_2203" -> "6 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"10 Constant_2202" -> "6 MatMul/fq_weights_1" [label="[3, 1, 1, 3]", style=solid];
-"11 Constant_8" -> "6 MatMul/fq_weights_1" [label="[3, 1, 128, 3]", style=solid];
-"12 Constant_2200" -> "3 GRUSequence/fq_output_0" [label="[]", style=solid];
-"13 Constant_2199" -> "3 GRUSequence/fq_output_0" [label="[]", style=solid];
-"14 Constant_2198" -> "3 GRUSequence/fq_output_0" [label="[]", style=solid];
-"15 Constant_2197" -> "3 GRUSequence/fq_output_0" [label="[]", style=solid];
-"16 Constant_6" -> "2 GRUSequence" [label="[1, 512]", style=solid];
-"17 Constant_5" -> "2 GRUSequence" [label="[1, 384, 128]", style=solid];
-"18 Constant_4" -> "2 GRUSequence" [label="[1, 384, 16]", style=solid];
-"19 Constant_3" -> "2 GRUSequence" [label="[3]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GroupNormalizationModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/GroupNormalizationModel.dot
deleted file mode 100644
index 90d267ee9dd..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/GroupNormalizationModel.dot
+++ /dev/null
@@ -1,69 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv" [id=2, type=Convolution];
-"3 Conv_Add" [id=3, type=Add];
-"4 Conv_Add/fq_output_0" [id=4, type=FakeQuantize];
-"5 GroupNormalization_27318" [id=5, type=GroupNormalization];
-"6 Relu" [id=6, type=Relu];
-"7 Relu/fq_output_0" [id=7, type=FakeQuantize];
-"8 Mul" [id=8, type=Multiply];
-"9 Add" [id=9, type=Add];
-"10 Result" [id=10, type=Result];
-"11 Constant_27322" [id=11, type=Constant];
-"12 Constant_27320" [id=12, type=Constant];
-"13 Constant_29930" [id=13, type=Constant];
-"14 Constant_29929" [id=14, type=Constant];
-"15 Constant_29928" [id=15, type=Constant];
-"16 Constant_29927" [id=16, type=Constant];
-"17 Constant_27317" [id=17, type=Constant];
-"18 Constant_27316" [id=18, type=Constant];
-"19 Constant_29925" [id=19, type=Constant];
-"20 Constant_29924" [id=20, type=Constant];
-"21 Constant_29923" [id=21, type=Constant];
-"22 Constant_29922" [id=22, type=Constant];
-"23 Bias" [id=23, type=Constant];
-"24 Conv/fq_weights_1" [id=24, type=FakeQuantize];
-"25 Constant_29920" [id=25, type=Constant];
-"26 Constant_29919" [id=26, type=Constant];
-"27 Constant_29918" [id=27, type=Constant];
-"28 Constant_29917" [id=28, type=Constant];
-"29 Constant_27312" [id=29, type=Constant];
-"30 Constant_29915" [id=30, type=Constant];
-"31 Constant_29914" [id=31, type=Constant];
-"32 Constant_29913" [id=32, type=Constant];
-"33 Constant_29912" [id=33, type=Constant];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 2, 3, 4, 4]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv" [label="[1, 2, 3, 4, 4]", style=solid];
-"2 Conv" -> "3 Conv_Add" [label="[1, 4, 1, 2, 2]", style=solid];
-"3 Conv_Add" -> "4 Conv_Add/fq_output_0" [label="[1, 4, 3, 2, 2]", style=solid];
-"4 Conv_Add/fq_output_0" -> "5 GroupNormalization_27318" [label="[1, 4, 3, 2, 2]", style=solid];
-"5 GroupNormalization_27318" -> "6 Relu" [label="[1, 4, 3, 2, 2]", style=solid];
-"6 Relu" -> "7 Relu/fq_output_0" [label="[1, 4, 3, 2, 2]", style=solid];
-"7 Relu/fq_output_0" -> "8 Mul" [label="[1, 4, 3, 2, 2]", style=solid];
-"8 Mul" -> "9 Add" [label="[1, 4, 3, 2, 2]", style=solid];
-"9 Add" -> "10 Result" [label="[1, 4, 3, 2, 2]", style=solid];
-"11 Constant_27322" -> "9 Add" [label="[1, 4, 1, 1, 1]", style=solid];
-"12 Constant_27320" -> "8 Mul" [label="[1, 4, 1, 1, 1]", style=solid];
-"13 Constant_29930" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"14 Constant_29929" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"15 Constant_29928" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"16 Constant_29927" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"17 Constant_27317" -> "5 GroupNormalization_27318" [label="[4]", style=solid];
-"18 Constant_27316" -> "5 GroupNormalization_27318" [label="[4]", style=solid];
-"19 Constant_29925" -> "4 Conv_Add/fq_output_0" [label="[]", style=solid];
-"20 Constant_29924" -> "4 Conv_Add/fq_output_0" [label="[]", style=solid];
-"21 Constant_29923" -> "4 Conv_Add/fq_output_0" [label="[]", style=solid];
-"22 Constant_29922" -> "4 Conv_Add/fq_output_0" [label="[]", style=solid];
-"23 Bias" -> "3 Conv_Add" [label="[1, 1, 3, 1, 1]", style=solid];
-"24 Conv/fq_weights_1" -> "2 Conv" [label="[4, 2, 3, 3, 3]", style=solid];
-"25 Constant_29920" -> "24 Conv/fq_weights_1" [label="[4, 1, 1, 1, 1]", style=solid];
-"26 Constant_29919" -> "24 Conv/fq_weights_1" [label="[4, 1, 1, 1, 1]", style=solid];
-"27 Constant_29918" -> "24 Conv/fq_weights_1" [label="[4, 1, 1, 1, 1]", style=solid];
-"28 Constant_29917" -> "24 Conv/fq_weights_1" [label="[4, 1, 1, 1, 1]", style=solid];
-"29 Constant_27312" -> "24 Conv/fq_weights_1" [label="[4, 2, 3, 3, 3]", style=solid];
-"30 Constant_29915" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"31 Constant_29914" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"32 Constant_29913" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"33 Constant_29912" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_else.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_else.dot
deleted file mode 100644
index 10e35270838..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_else.dot
+++ /dev/null
@@ -1,51 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Sub/fq_output_0" [id=4, type=FakeQuantize];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv" [id=6, type=Convolution];
-"7 Transpose" [id=7, type=Transpose];
-"8 Conv_Add" [id=8, type=Add];
-"9 Concat_70" [id=9, type=Concat];
-"10 Relu" [id=10, type=Relu];
-"11 Result" [id=11, type=Result];
-"12 Constant_68" [id=12, type=Constant];
-"13 Constant_66" [id=13, type=Constant];
-"14 Constant_64" [id=14, type=Constant];
-"15 Bias" [id=15, type=Constant];
-"16 Conv/fq_weights_1" [id=16, type=Multiply];
-"17 Constant_12068" [id=17, type=Constant];
-"18 Convert_12170" [id=18, type=Convert];
-"19 Constant_58" [id=19, type=Constant];
-"20 Constant_9391" [id=20, type=Constant];
-"21 Constant_9390" [id=21, type=Constant];
-"22 Constant_9389" [id=22, type=Constant];
-"23 Constant_9388" [id=23, type=Constant];
-"24 Constant_56" [id=24, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Sub/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[1, 3, 2, 4]", style=solid];
-"4 Sub/fq_output_0" -> "6 Conv" [label="[1, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[1, 3, 2, 4]", style=solid];
-"6 Conv" -> "8 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_70" [label="[1, 3, 4, 2]", style=solid];
-"8 Conv_Add" -> "10 Relu" [label="[1, 3, 4, 2]", style=solid];
-"9 Concat_70" -> "11 Result" [label="[2, 3, 4, 2]", style=solid];
-"10 Relu" -> "9 Concat_70" [label="[1, 3, 4, 2]", style=solid];
-"12 Constant_68" -> "7 Transpose" [label="[4]", style=dashed];
-"13 Constant_66" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_64" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Bias" -> "8 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"16 Conv/fq_weights_1" -> "6 Conv" [label="[3, 3, 1, 1]", style=solid];
-"17 Constant_12068" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"18 Convert_12170" -> "16 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"19 Constant_58" -> "18 Convert_12170" [label="[3, 3, 1, 1]", style=dashed];
-"20 Constant_9391" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"21 Constant_9390" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"22 Constant_9389" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"23 Constant_9388" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"24 Constant_56" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_main.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_main.dot
deleted file mode 100644
index 33223cf313e..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_main.dot
+++ /dev/null
@@ -1,11 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Cond_input" [id=2, type=Parameter];
-"3 If_72" [id=3, type=If];
-"4 Result" [id=4, type=Result];
-"0 Input_1" -> "3 If_72" [label="[1, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 If_72" [label="[1, 3, 2, 4]", style=solid];
-"2 Cond_input" -> "3 If_72" [label="[]", style=dashed];
-"3 If_72" -> "4 Result" [label="[2, 3, 4, 2]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_then.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_then.dot
deleted file mode 100644
index 732b69959db..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IfModel_then.dot
+++ /dev/null
@@ -1,51 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_2" [id=1, type=Parameter];
-"2 Sub" [id=2, type=Subtract];
-"3 Add" [id=3, type=Add];
-"4 Sub/fq_output_0" [id=4, type=FakeQuantize];
-"5 Mul" [id=5, type=Multiply];
-"6 Conv" [id=6, type=Convolution];
-"7 Transpose" [id=7, type=Transpose];
-"8 Conv_Add" [id=8, type=Add];
-"9 Concat_36" [id=9, type=Concat];
-"10 Relu" [id=10, type=Relu];
-"11 Result" [id=11, type=Result];
-"12 Constant_34" [id=12, type=Constant];
-"13 Constant_32" [id=13, type=Constant];
-"14 Constant_30" [id=14, type=Constant];
-"15 Bias" [id=15, type=Constant];
-"16 Conv/fq_weights_1" [id=16, type=Multiply];
-"17 Constant_11914" [id=17, type=Constant];
-"18 Convert_12016" [id=18, type=Convert];
-"19 Constant_24" [id=19, type=Constant];
-"20 Constant_4685" [id=20, type=Constant];
-"21 Constant_4684" [id=21, type=Constant];
-"22 Constant_4683" [id=22, type=Constant];
-"23 Constant_4682" [id=23, type=Constant];
-"24 Constant_22" [id=24, type=Constant];
-"0 Input_1" -> "2 Sub" [label="[1, 3, 4, 2]", style=solid];
-"1 Input_2" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"2 Sub" -> "4 Sub/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"3 Add" -> "5 Mul" [label="[1, 3, 2, 4]", style=solid];
-"4 Sub/fq_output_0" -> "6 Conv" [label="[1, 3, 4, 2]", style=solid];
-"5 Mul" -> "7 Transpose" [label="[1, 3, 2, 4]", style=solid];
-"6 Conv" -> "8 Conv_Add" [label="[1, 3, 4, 2]", style=solid];
-"7 Transpose" -> "9 Concat_36" [label="[1, 3, 4, 2]", style=solid];
-"8 Conv_Add" -> "10 Relu" [label="[1, 3, 4, 2]", style=solid];
-"9 Concat_36" -> "11 Result" [label="[2, 3, 4, 2]", style=solid];
-"10 Relu" -> "9 Concat_36" [label="[1, 3, 4, 2]", style=solid];
-"12 Constant_34" -> "7 Transpose" [label="[4]", style=dashed];
-"13 Constant_32" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"14 Constant_30" -> "3 Add" [label="[1, 3, 1, 1]", style=solid];
-"15 Bias" -> "8 Conv_Add" [label="[1, 3, 1, 1]", style=solid];
-"16 Conv/fq_weights_1" -> "6 Conv" [label="[3, 3, 1, 1]", style=solid];
-"17 Constant_11914" -> "16 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"18 Convert_12016" -> "16 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"19 Constant_24" -> "18 Convert_12016" [label="[3, 3, 1, 1]", style=dashed];
-"20 Constant_4685" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"21 Constant_4684" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"22 Constant_4683" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"23 Constant_4682" -> "4 Sub/fq_output_0" [label="[]", style=solid];
-"24 Constant_22" -> "2 Sub" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IntegerModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/IntegerModel.dot
deleted file mode 100644
index 03cfb73b101..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/IntegerModel.dot
+++ /dev/null
@@ -1,102 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Convert_1" [id=1, type=Convert];
-"2 Gather_4/fq_input_0" [id=2, type=FakeQuantize];
-"3 Gather_1" [id=3, type=Gather];
-"4 Gather_4" [id=4, type=Gather];
-"5 Gather_2" [id=5, type=Gather];
-"6 MatMul_2" [id=6, type=MatMul];
-"7 Gather_3" [id=7, type=Gather];
-"8 MatMul_2/fq_output_0" [id=8, type=FakeQuantize];
-"9 MatMul_1" [id=9, type=MatMul];
-"10 Add_1" [id=10, type=Add];
-"11 MatMul_1/fq_output_0" [id=11, type=FakeQuantize];
-"12 Result" [id=12, type=Result];
-"13 Constant_7164" [id=13, type=Constant];
-"14 Constant_7163" [id=14, type=Constant];
-"15 Constant_7162" [id=15, type=Constant];
-"16 Constant_7161" [id=16, type=Constant];
-"17 MatMul_2/fq_weights_1" [id=17, type=FakeQuantize];
-"18 Constant_7169" [id=18, type=Constant];
-"19 Constant_7168" [id=19, type=Constant];
-"20 Constant_7167" [id=20, type=Constant];
-"21 Constant_7166" [id=21, type=Constant];
-"22 Constant_4701" [id=22, type=Constant];
-"23 Constant_4699" [id=23, type=Constant];
-"24 Constant_4698" [id=24, type=Constant];
-"25 Constant_7159" [id=25, type=Constant];
-"26 Constant_7158" [id=26, type=Constant];
-"27 Constant_7157" [id=27, type=Constant];
-"28 Constant_7156" [id=28, type=Constant];
-"29 Constant_7179" [id=29, type=Constant];
-"30 Constant_7178" [id=30, type=Constant];
-"31 Constant_7177" [id=31, type=Constant];
-"32 Constant_7176" [id=32, type=Constant];
-"33 MatMul_1/fq_weights_1" [id=33, type=FakeQuantize];
-"34 Constant_7184" [id=34, type=Constant];
-"35 Constant_7183" [id=35, type=Constant];
-"36 Constant_7182" [id=36, type=Constant];
-"37 Constant_7181" [id=37, type=Constant];
-"38 Constant_4696" [id=38, type=Constant];
-"39 Constant_4694" [id=39, type=Constant];
-"40 Constant_4693" [id=40, type=Constant];
-"41 Constant_4691" [id=41, type=Constant];
-"42 Constant_4688" [id=42, type=Constant];
-"43 Constant_4687" [id=43, type=Constant];
-"44 Gather_2/fq_weights_0" [id=44, type=FakeQuantize];
-"45 Constant_7174" [id=45, type=Constant];
-"46 Constant_7173" [id=46, type=Constant];
-"47 Constant_7172" [id=47, type=Constant];
-"48 Constant_7171" [id=48, type=Constant];
-"49 Constant_4690" [id=49, type=Constant];
-"0 Input" -> "1 Convert_1" [label="[1, 192, 1]", style=solid];
-"0 Input" -> "2 Gather_4/fq_input_0" [label="[1, 192, 1]", style=solid];
-"1 Convert_1" -> "3 Gather_1" [label="[1, 192, 1]", style=dashed];
-"2 Gather_4/fq_input_0" -> "4 Gather_4" [label="[1, 192, 1]", style=solid];
-"3 Gather_1" -> "5 Gather_2" [label="[192, 1]", style=dashed];
-"4 Gather_4" -> "6 MatMul_2" [label="[1, 192]", style=solid];
-"5 Gather_2" -> "7 Gather_3" [label="[192, 1, 160]", style=solid];
-"6 MatMul_2" -> "8 MatMul_2/fq_output_0" [label="[1, 160]", style=solid];
-"7 Gather_3" -> "9 MatMul_1" [label="[1, 160]", style=solid];
-"8 MatMul_2/fq_output_0" -> "10 Add_1" [label="[1, 160]", style=solid];
-"9 MatMul_1" -> "11 MatMul_1/fq_output_0" [label="[1, 160]", style=solid];
-"10 Add_1" -> "12 Result" [label="[1, 160]", style=solid];
-"11 MatMul_1/fq_output_0" -> "10 Add_1" [label="[1, 160]", style=solid];
-"13 Constant_7164" -> "8 MatMul_2/fq_output_0" [label="[]", style=solid];
-"14 Constant_7163" -> "8 MatMul_2/fq_output_0" [label="[]", style=solid];
-"15 Constant_7162" -> "8 MatMul_2/fq_output_0" [label="[]", style=solid];
-"16 Constant_7161" -> "8 MatMul_2/fq_output_0" [label="[]", style=solid];
-"17 MatMul_2/fq_weights_1" -> "6 MatMul_2" [label="[160, 192]", style=solid];
-"18 Constant_7169" -> "17 MatMul_2/fq_weights_1" [label="[160, 1]", style=solid];
-"19 Constant_7168" -> "17 MatMul_2/fq_weights_1" [label="[160, 1]", style=solid];
-"20 Constant_7167" -> "17 MatMul_2/fq_weights_1" [label="[160, 1]", style=solid];
-"21 Constant_7166" -> "17 MatMul_2/fq_weights_1" [label="[160, 1]", style=solid];
-"22 Constant_4701" -> "17 MatMul_2/fq_weights_1" [label="[160, 192]", style=solid];
-"23 Constant_4699" -> "4 Gather_4" [label="[]", style=dashed];
-"24 Constant_4698" -> "4 Gather_4" [label="[]", style=dashed];
-"25 Constant_7159" -> "2 Gather_4/fq_input_0" [label="[]", style=solid];
-"26 Constant_7158" -> "2 Gather_4/fq_input_0" [label="[]", style=solid];
-"27 Constant_7157" -> "2 Gather_4/fq_input_0" [label="[]", style=solid];
-"28 Constant_7156" -> "2 Gather_4/fq_input_0" [label="[]", style=solid];
-"29 Constant_7179" -> "11 MatMul_1/fq_output_0" [label="[]", style=solid];
-"30 Constant_7178" -> "11 MatMul_1/fq_output_0" [label="[]", style=solid];
-"31 Constant_7177" -> "11 MatMul_1/fq_output_0" [label="[]", style=solid];
-"32 Constant_7176" -> "11 MatMul_1/fq_output_0" [label="[]", style=solid];
-"33 MatMul_1/fq_weights_1" -> "9 MatMul_1" [label="[160, 160]", style=solid];
-"34 Constant_7184" -> "33 MatMul_1/fq_weights_1" [label="[160, 1]", style=solid];
-"35 Constant_7183" -> "33 MatMul_1/fq_weights_1" [label="[160, 1]", style=solid];
-"36 Constant_7182" -> "33 MatMul_1/fq_weights_1" [label="[160, 1]", style=solid];
-"37 Constant_7181" -> "33 MatMul_1/fq_weights_1" [label="[160, 1]", style=solid];
-"38 Constant_4696" -> "33 MatMul_1/fq_weights_1" [label="[160, 160]", style=solid];
-"39 Constant_4694" -> "7 Gather_3" [label="[]", style=dashed];
-"40 Constant_4693" -> "7 Gather_3" [label="[]", style=dashed];
-"41 Constant_4691" -> "5 Gather_2" [label="[]", style=dashed];
-"42 Constant_4688" -> "3 Gather_1" [label="[]", style=dashed];
-"43 Constant_4687" -> "3 Gather_1" [label="[]", style=dashed];
-"44 Gather_2/fq_weights_0" -> "5 Gather_2" [label="[369, 160]", style=solid];
-"45 Constant_7174" -> "44 Gather_2/fq_weights_0" [label="[]", style=solid];
-"46 Constant_7173" -> "44 Gather_2/fq_weights_0" [label="[]", style=solid];
-"47 Constant_7172" -> "44 Gather_2/fq_weights_0" [label="[]", style=solid];
-"48 Constant_7171" -> "44 Gather_2/fq_weights_0" [label="[]", style=solid];
-"49 Constant_4690" -> "44 Gather_2/fq_weights_0" [label="[369, 160]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMModel.dot
deleted file mode 100644
index d3f5a2d2558..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMModel.dot
+++ /dev/null
@@ -1,220 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 ReadValue_1" [id=1, type=ReadValue];
-"2 Input/fq_output_0" [id=2, type=FakeQuantize];
-"3 ReadValue_1/fq_output_0" [id=3, type=FakeQuantize];
-"4 Squeeze_1" [id=4, type=Squeeze];
-"5 Add" [id=5, type=Add];
-"6 MatMul_1" [id=6, type=MatMul];
-"7 Add/fq_output_0" [id=7, type=FakeQuantize];
-"8 MatMul_1/fq_output_0" [id=8, type=FakeQuantize];
-"9 MatMul_2" [id=9, type=MatMul];
-"10 Add_1" [id=10, type=Add];
-"11 MatMul_2/fq_output_0" [id=11, type=FakeQuantize];
-"12 Split_6052" [id=12, type=Split];
-"13 Sigmoid_1" [id=13, type=Sigmoid];
-"14 Sigmoid_2" [id=14, type=Sigmoid];
-"15 Sigmoid_3" [id=15, type=Sigmoid];
-"16 Tanh_1" [id=16, type=Tanh];
-"17 Sigmoid_1/fq_output_0" [id=17, type=FakeQuantize];
-"18 Sigmoid_2/fq_output_0" [id=18, type=FakeQuantize];
-"19 Sigmoid_3/fq_output_0" [id=19, type=FakeQuantize];
-"20 Tanh_1/fq_output_0" [id=20, type=FakeQuantize];
-"21 Multiply_1" [id=21, type=Multiply];
-"22 Multiply_2" [id=22, type=Multiply];
-"23 Multiply_3" [id=23, type=Multiply];
-"24 Multiply_1/fq_output_0" [id=24, type=FakeQuantize];
-"25 Multiply_2/fq_output_0" [id=25, type=FakeQuantize];
-"26 Assign_1" [id=26, type=Assign];
-"27 MatMul_3/fq_input_0" [id=27, type=FakeQuantize];
-"28 Add_2" [id=28, type=Add];
-"29 MatMul_3" [id=29, type=MatMul];
-"30 Tanh_2" [id=30, type=Tanh];
-"31 Result" [id=31, type=Result];
-"32 Tanh_2/fq_output_0" [id=32, type=FakeQuantize];
-"33 Constant_9029" [id=33, type=Constant];
-"34 Constant_9028" [id=34, type=Constant];
-"35 Constant_9027" [id=35, type=Constant];
-"36 Constant_9026" [id=36, type=Constant];
-"37 Constant_8999" [id=37, type=Constant];
-"38 Constant_8998" [id=38, type=Constant];
-"39 Constant_8997" [id=39, type=Constant];
-"40 Constant_8996" [id=40, type=Constant];
-"41 Constant_9014" [id=41, type=Constant];
-"42 Constant_9013" [id=42, type=Constant];
-"43 Constant_9012" [id=43, type=Constant];
-"44 Constant_9011" [id=44, type=Constant];
-"45 Constant_6051" [id=45, type=Constant];
-"46 Constant_8989" [id=46, type=Constant];
-"47 Constant_8988" [id=47, type=Constant];
-"48 Constant_8987" [id=48, type=Constant];
-"49 Constant_8986" [id=49, type=Constant];
-"50 MatMul_2/fq_weights_1" [id=50, type=FakeQuantize];
-"51 Constant_9039" [id=51, type=Constant];
-"52 Constant_9038" [id=52, type=Constant];
-"53 Constant_9037" [id=53, type=Constant];
-"54 Constant_9036" [id=54, type=Constant];
-"55 Constant_6048" [id=55, type=Constant];
-"56 Constant_8974" [id=56, type=Constant];
-"57 Constant_8973" [id=57, type=Constant];
-"58 Constant_8972" [id=58, type=Constant];
-"59 Constant_8971" [id=59, type=Constant];
-"60 Constant_6046" [id=60, type=Constant];
-"61 Constant_9004" [id=61, type=Constant];
-"62 Constant_9003" [id=62, type=Constant];
-"63 Constant_9002" [id=63, type=Constant];
-"64 Constant_9001" [id=64, type=Constant];
-"65 Constant_6044" [id=65, type=Constant];
-"66 Constant_8984" [id=66, type=Constant];
-"67 Constant_8983" [id=67, type=Constant];
-"68 Constant_8982" [id=68, type=Constant];
-"69 Constant_8981" [id=69, type=Constant];
-"70 MatMul_1/fq_weights_1" [id=70, type=FakeQuantize];
-"71 Constant_9034" [id=71, type=Constant];
-"72 Constant_9033" [id=72, type=Constant];
-"73 Constant_9032" [id=73, type=Constant];
-"74 Constant_9031" [id=74, type=Constant];
-"75 Constant_6042" [id=75, type=Constant];
-"76 Constant_6040" [id=76, type=Constant];
-"77 Constant_8979" [id=77, type=Constant];
-"78 Constant_8978" [id=78, type=Constant];
-"79 Constant_8977" [id=79, type=Constant];
-"80 Constant_8976" [id=80, type=Constant];
-"81 Constant_9024" [id=81, type=Constant];
-"82 Constant_9023" [id=82, type=Constant];
-"83 Constant_9022" [id=83, type=Constant];
-"84 Constant_9021" [id=84, type=Constant];
-"85 Constant_8994" [id=85, type=Constant];
-"86 Constant_8993" [id=86, type=Constant];
-"87 Constant_8992" [id=87, type=Constant];
-"88 Constant_8991" [id=88, type=Constant];
-"89 Constant_6057" [id=89, type=Constant];
-"90 Constant_9009" [id=90, type=Constant];
-"91 Constant_9008" [id=91, type=Constant];
-"92 Constant_9007" [id=92, type=Constant];
-"93 Constant_9006" [id=93, type=Constant];
-"94 Constant_9019" [id=94, type=Constant];
-"95 Constant_9018" [id=95, type=Constant];
-"96 Constant_9017" [id=96, type=Constant];
-"97 Constant_9016" [id=97, type=Constant];
-"98 MatMul_3/fq_weights_1" [id=98, type=FakeQuantize];
-"99 Constant_9044" [id=99, type=Constant];
-"100 Constant_9043" [id=100, type=Constant];
-"101 Constant_9042" [id=101, type=Constant];
-"102 Constant_9041" [id=102, type=Constant];
-"103 Constant_6064" [id=103, type=Constant];
-"104 Constant_8969" [id=104, type=Constant];
-"105 Constant_8968" [id=105, type=Constant];
-"106 Constant_8967" [id=106, type=Constant];
-"107 Constant_8966" [id=107, type=Constant];
-"0 Input" -> "2 Input/fq_output_0" [label="[1, 1, 128]", style=solid];
-"1 ReadValue_1" -> "3 ReadValue_1/fq_output_0" [label="[1, 64]", style=solid];
-"2 Input/fq_output_0" -> "4 Squeeze_1" [label="[1, 1, 128]", style=solid];
-"3 ReadValue_1/fq_output_0" -> "5 Add" [label="[1, 64]", style=solid];
-"4 Squeeze_1" -> "6 MatMul_1" [label="[1, 128]", style=solid];
-"5 Add" -> "7 Add/fq_output_0" [label="[1, 64]", style=solid];
-"6 MatMul_1" -> "8 MatMul_1/fq_output_0" [label="[1, 256]", style=solid];
-"7 Add/fq_output_0" -> "9 MatMul_2" [label="[1, 64]", style=solid];
-"8 MatMul_1/fq_output_0" -> "10 Add_1" [label="[1, 256]", style=solid];
-"9 MatMul_2" -> "11 MatMul_2/fq_output_0" [label="[1, 256]", style=solid];
-"10 Add_1" -> "12 Split_6052" [label="[1, 256]", style=solid];
-"11 MatMul_2/fq_output_0" -> "10 Add_1" [label="[1, 256]", style=solid];
-"12 Split_6052" -> "13 Sigmoid_1" [label="[1, 64]", style=solid];
-"12 Split_6052" -> "14 Sigmoid_2" [label="[1, 64]", style=solid];
-"12 Split_6052" -> "15 Sigmoid_3" [label="[1, 64]", style=solid];
-"12 Split_6052" -> "16 Tanh_1" [label="[1, 64]", style=solid];
-"13 Sigmoid_1" -> "17 Sigmoid_1/fq_output_0" [label="[1, 64]", style=solid];
-"14 Sigmoid_2" -> "18 Sigmoid_2/fq_output_0" [label="[1, 64]", style=solid];
-"15 Sigmoid_3" -> "19 Sigmoid_3/fq_output_0" [label="[1, 64]", style=solid];
-"16 Tanh_1" -> "20 Tanh_1/fq_output_0" [label="[1, 64]", style=solid];
-"17 Sigmoid_1/fq_output_0" -> "21 Multiply_1" [label="[1, 64]", style=solid];
-"18 Sigmoid_2/fq_output_0" -> "22 Multiply_2" [label="[1, 64]", style=solid];
-"19 Sigmoid_3/fq_output_0" -> "23 Multiply_3" [label="[1, 64]", style=solid];
-"20 Tanh_1/fq_output_0" -> "22 Multiply_2" [label="[1, 64]", style=solid];
-"21 Multiply_1" -> "24 Multiply_1/fq_output_0" [label="[1, 64]", style=solid];
-"22 Multiply_2" -> "25 Multiply_2/fq_output_0" [label="[1, 64]", style=solid];
-"23 Multiply_3" -> "26 Assign_1" [label="[1, 64]", style=solid];
-"23 Multiply_3" -> "27 MatMul_3/fq_input_0" [label="[1, 64]", style=solid];
-"24 Multiply_1/fq_output_0" -> "28 Add_2" [label="[1, 64]", style=solid];
-"25 Multiply_2/fq_output_0" -> "28 Add_2" [label="[1, 64]", style=solid];
-"27 MatMul_3/fq_input_0" -> "29 MatMul_3" [label="[1, 64]", style=solid];
-"28 Add_2" -> "30 Tanh_2" [label="[1, 64]", style=solid];
-"29 MatMul_3" -> "31 Result" [label="[1, 128]", style=solid];
-"30 Tanh_2" -> "32 Tanh_2/fq_output_0" [label="[1, 64]", style=solid];
-"32 Tanh_2/fq_output_0" -> "23 Multiply_3" [label="[1, 64]", style=solid];
-"33 Constant_9029" -> "32 Tanh_2/fq_output_0" [label="[]", style=solid];
-"34 Constant_9028" -> "32 Tanh_2/fq_output_0" [label="[]", style=solid];
-"35 Constant_9027" -> "32 Tanh_2/fq_output_0" [label="[]", style=solid];
-"36 Constant_9026" -> "32 Tanh_2/fq_output_0" [label="[]", style=solid];
-"37 Constant_8999" -> "25 Multiply_2/fq_output_0" [label="[]", style=solid];
-"38 Constant_8998" -> "25 Multiply_2/fq_output_0" [label="[]", style=solid];
-"39 Constant_8997" -> "25 Multiply_2/fq_output_0" [label="[]", style=solid];
-"40 Constant_8996" -> "25 Multiply_2/fq_output_0" [label="[]", style=solid];
-"41 Constant_9014" -> "18 Sigmoid_2/fq_output_0" [label="[]", style=solid];
-"42 Constant_9013" -> "18 Sigmoid_2/fq_output_0" [label="[]", style=solid];
-"43 Constant_9012" -> "18 Sigmoid_2/fq_output_0" [label="[]", style=solid];
-"44 Constant_9011" -> "18 Sigmoid_2/fq_output_0" [label="[]", style=solid];
-"45 Constant_6051" -> "12 Split_6052" [label="[]", style=dashed];
-"46 Constant_8989" -> "11 MatMul_2/fq_output_0" [label="[]", style=solid];
-"47 Constant_8988" -> "11 MatMul_2/fq_output_0" [label="[]", style=solid];
-"48 Constant_8987" -> "11 MatMul_2/fq_output_0" [label="[]", style=solid];
-"49 Constant_8986" -> "11 MatMul_2/fq_output_0" [label="[]", style=solid];
-"50 MatMul_2/fq_weights_1" -> "9 MatMul_2" [label="[256, 64]", style=solid];
-"51 Constant_9039" -> "50 MatMul_2/fq_weights_1" [label="[256, 1]", style=solid];
-"52 Constant_9038" -> "50 MatMul_2/fq_weights_1" [label="[256, 1]", style=solid];
-"53 Constant_9037" -> "50 MatMul_2/fq_weights_1" [label="[256, 1]", style=solid];
-"54 Constant_9036" -> "50 MatMul_2/fq_weights_1" [label="[256, 1]", style=solid];
-"55 Constant_6048" -> "50 MatMul_2/fq_weights_1" [label="[256, 64]", style=solid];
-"56 Constant_8974" -> "7 Add/fq_output_0" [label="[]", style=solid];
-"57 Constant_8973" -> "7 Add/fq_output_0" [label="[]", style=solid];
-"58 Constant_8972" -> "7 Add/fq_output_0" [label="[]", style=solid];
-"59 Constant_8971" -> "7 Add/fq_output_0" [label="[]", style=solid];
-"60 Constant_6046" -> "5 Add" [label="[1, 64]", style=solid];
-"61 Constant_9004" -> "3 ReadValue_1/fq_output_0" [label="[]", style=solid];
-"62 Constant_9003" -> "3 ReadValue_1/fq_output_0" [label="[]", style=solid];
-"63 Constant_9002" -> "3 ReadValue_1/fq_output_0" [label="[]", style=solid];
-"64 Constant_9001" -> "3 ReadValue_1/fq_output_0" [label="[]", style=solid];
-"65 Constant_6044" -> "1 ReadValue_1" [label="[1, 64]", style=solid];
-"66 Constant_8984" -> "8 MatMul_1/fq_output_0" [label="[]", style=solid];
-"67 Constant_8983" -> "8 MatMul_1/fq_output_0" [label="[]", style=solid];
-"68 Constant_8982" -> "8 MatMul_1/fq_output_0" [label="[]", style=solid];
-"69 Constant_8981" -> "8 MatMul_1/fq_output_0" [label="[]", style=solid];
-"70 MatMul_1/fq_weights_1" -> "6 MatMul_1" [label="[256, 128]", style=solid];
-"71 Constant_9034" -> "70 MatMul_1/fq_weights_1" [label="[256, 1]", style=solid];
-"72 Constant_9033" -> "70 MatMul_1/fq_weights_1" [label="[256, 1]", style=solid];
-"73 Constant_9032" -> "70 MatMul_1/fq_weights_1" [label="[256, 1]", style=solid];
-"74 Constant_9031" -> "70 MatMul_1/fq_weights_1" [label="[256, 1]", style=solid];
-"75 Constant_6042" -> "70 MatMul_1/fq_weights_1" [label="[256, 128]", style=solid];
-"76 Constant_6040" -> "4 Squeeze_1" [label="[]", style=dashed];
-"77 Constant_8979" -> "2 Input/fq_output_0" [label="[]", style=solid];
-"78 Constant_8978" -> "2 Input/fq_output_0" [label="[]", style=solid];
-"79 Constant_8977" -> "2 Input/fq_output_0" [label="[]", style=solid];
-"80 Constant_8976" -> "2 Input/fq_output_0" [label="[]", style=solid];
-"81 Constant_9024" -> "20 Tanh_1/fq_output_0" [label="[]", style=solid];
-"82 Constant_9023" -> "20 Tanh_1/fq_output_0" [label="[]", style=solid];
-"83 Constant_9022" -> "20 Tanh_1/fq_output_0" [label="[]", style=solid];
-"84 Constant_9021" -> "20 Tanh_1/fq_output_0" [label="[]", style=solid];
-"85 Constant_8994" -> "24 Multiply_1/fq_output_0" [label="[]", style=solid];
-"86 Constant_8993" -> "24 Multiply_1/fq_output_0" [label="[]", style=solid];
-"87 Constant_8992" -> "24 Multiply_1/fq_output_0" [label="[]", style=solid];
-"88 Constant_8991" -> "24 Multiply_1/fq_output_0" [label="[]", style=solid];
-"89 Constant_6057" -> "21 Multiply_1" [label="[1, 64]", style=solid];
-"90 Constant_9009" -> "17 Sigmoid_1/fq_output_0" [label="[]", style=solid];
-"91 Constant_9008" -> "17 Sigmoid_1/fq_output_0" [label="[]", style=solid];
-"92 Constant_9007" -> "17 Sigmoid_1/fq_output_0" [label="[]", style=solid];
-"93 Constant_9006" -> "17 Sigmoid_1/fq_output_0" [label="[]", style=solid];
-"94 Constant_9019" -> "19 Sigmoid_3/fq_output_0" [label="[]", style=solid];
-"95 Constant_9018" -> "19 Sigmoid_3/fq_output_0" [label="[]", style=solid];
-"96 Constant_9017" -> "19 Sigmoid_3/fq_output_0" [label="[]", style=solid];
-"97 Constant_9016" -> "19 Sigmoid_3/fq_output_0" [label="[]", style=solid];
-"98 MatMul_3/fq_weights_1" -> "29 MatMul_3" [label="[128, 64]", style=solid];
-"99 Constant_9044" -> "98 MatMul_3/fq_weights_1" [label="[128, 1]", style=solid];
-"100 Constant_9043" -> "98 MatMul_3/fq_weights_1" [label="[128, 1]", style=solid];
-"101 Constant_9042" -> "98 MatMul_3/fq_weights_1" [label="[128, 1]", style=solid];
-"102 Constant_9041" -> "98 MatMul_3/fq_weights_1" [label="[128, 1]", style=solid];
-"103 Constant_6064" -> "98 MatMul_3/fq_weights_1" [label="[128, 64]", style=solid];
-"104 Constant_8969" -> "27 MatMul_3/fq_input_0" [label="[]", style=solid];
-"105 Constant_8968" -> "27 MatMul_3/fq_input_0" [label="[]", style=solid];
-"106 Constant_8967" -> "27 MatMul_3/fq_input_0" [label="[]", style=solid];
-"107 Constant_8966" -> "27 MatMul_3/fq_input_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMSequenceModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMSequenceModel.dot
deleted file mode 100644
index 3167389ce2d..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LSTMSequenceModel.dot
+++ /dev/null
@@ -1,93 +0,0 @@
-strict digraph {
-"0 X" [id=0, type=Parameter];
-"1 initial_hidden_state" [id=1, type=Parameter];
-"2 initial_cell_state" [id=2, type=Parameter];
-"3 X/fq_output_0" [id=3, type=FakeQuantize];
-"4 initial_hidden_state/fq_output_0" [id=4, type=FakeQuantize];
-"5 initial_cell_state/fq_output_0" [id=5, type=FakeQuantize];
-"6 LSTMSequence_7" [id=6, type=LSTMSequence];
-"7 LSTMSequence_7/fq_output_0" [id=7, type=FakeQuantize];
-"8 MatMul" [id=8, type=MatMul];
-"9 Result" [id=9, type=Result];
-"10 MatMul/fq_weights_1" [id=10, type=FakeQuantize];
-"11 Constant_2122" [id=11, type=Constant];
-"12 Constant_2121" [id=12, type=Constant];
-"13 Constant_2120" [id=13, type=Constant];
-"14 Constant_2119" [id=14, type=Constant];
-"15 Constant_8" [id=15, type=Constant];
-"16 Constant_2092" [id=16, type=Constant];
-"17 Constant_2091" [id=17, type=Constant];
-"18 Constant_2090" [id=18, type=Constant];
-"19 Constant_2089" [id=19, type=Constant];
-"20 Constant_6" [id=20, type=Constant];
-"21 LSTMSequence_7/fq_weights_5" [id=21, type=FakeQuantize];
-"22 Constant_2117" [id=22, type=Constant];
-"23 Constant_2116" [id=23, type=Constant];
-"24 Constant_2115" [id=24, type=Constant];
-"25 Constant_2114" [id=25, type=Constant];
-"26 Constant_5" [id=26, type=Constant];
-"27 LSTMSequence_7/fq_weights_4" [id=27, type=FakeQuantize];
-"28 Constant_2112" [id=28, type=Constant];
-"29 Constant_2111" [id=29, type=Constant];
-"30 Constant_2110" [id=30, type=Constant];
-"31 Constant_2109" [id=31, type=Constant];
-"32 Constant_4" [id=32, type=Constant];
-"33 Constant_3" [id=33, type=Constant];
-"34 Constant_2102" [id=34, type=Constant];
-"35 Constant_2101" [id=35, type=Constant];
-"36 Constant_2100" [id=36, type=Constant];
-"37 Constant_2099" [id=37, type=Constant];
-"38 Constant_2107" [id=38, type=Constant];
-"39 Constant_2106" [id=39, type=Constant];
-"40 Constant_2105" [id=40, type=Constant];
-"41 Constant_2104" [id=41, type=Constant];
-"42 Constant_2097" [id=42, type=Constant];
-"43 Constant_2096" [id=43, type=Constant];
-"44 Constant_2095" [id=44, type=Constant];
-"45 Constant_2094" [id=45, type=Constant];
-"0 X" -> "3 X/fq_output_0" [label="[1, 2, 16]", style=solid];
-"1 initial_hidden_state" -> "4 initial_hidden_state/fq_output_0" [label="[1, 1, 128]", style=solid];
-"2 initial_cell_state" -> "5 initial_cell_state/fq_output_0" [label="[1, 1, 128]", style=solid];
-"3 X/fq_output_0" -> "6 LSTMSequence_7" [label="[1, 2, 16]", style=solid];
-"4 initial_hidden_state/fq_output_0" -> "6 LSTMSequence_7" [label="[1, 1, 128]", style=solid];
-"5 initial_cell_state/fq_output_0" -> "6 LSTMSequence_7" [label="[1, 1, 128]", style=solid];
-"6 LSTMSequence_7" -> "7 LSTMSequence_7/fq_output_0" [label="[1, 1, 2, 128]", style=solid];
-"7 LSTMSequence_7/fq_output_0" -> "8 MatMul" [label="[1, 1, 2, 128]", style=solid];
-"8 MatMul" -> "9 Result" [label="[1, 1, 2, 3]", style=solid];
-"10 MatMul/fq_weights_1" -> "8 MatMul" [label="[1, 1, 128, 3]", style=solid];
-"11 Constant_2122" -> "10 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"12 Constant_2121" -> "10 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"13 Constant_2120" -> "10 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"14 Constant_2119" -> "10 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"15 Constant_8" -> "10 MatMul/fq_weights_1" [label="[1, 1, 128, 3]", style=solid];
-"16 Constant_2092" -> "7 LSTMSequence_7/fq_output_0" [label="[]", style=solid];
-"17 Constant_2091" -> "7 LSTMSequence_7/fq_output_0" [label="[]", style=solid];
-"18 Constant_2090" -> "7 LSTMSequence_7/fq_output_0" [label="[]", style=solid];
-"19 Constant_2089" -> "7 LSTMSequence_7/fq_output_0" [label="[]", style=solid];
-"20 Constant_6" -> "6 LSTMSequence_7" [label="[1, 512]", style=solid];
-"21 LSTMSequence_7/fq_weights_5" -> "6 LSTMSequence_7" [label="[1, 512, 128]", style=solid];
-"22 Constant_2117" -> "21 LSTMSequence_7/fq_weights_5" [label="[1, 1, 1]", style=solid];
-"23 Constant_2116" -> "21 LSTMSequence_7/fq_weights_5" [label="[1, 1, 1]", style=solid];
-"24 Constant_2115" -> "21 LSTMSequence_7/fq_weights_5" [label="[1, 1, 1]", style=solid];
-"25 Constant_2114" -> "21 LSTMSequence_7/fq_weights_5" [label="[1, 1, 1]", style=solid];
-"26 Constant_5" -> "21 LSTMSequence_7/fq_weights_5" [label="[1, 512, 128]", style=solid];
-"27 LSTMSequence_7/fq_weights_4" -> "6 LSTMSequence_7" [label="[1, 512, 16]", style=solid];
-"28 Constant_2112" -> "27 LSTMSequence_7/fq_weights_4" [label="[1, 1, 1]", style=solid];
-"29 Constant_2111" -> "27 LSTMSequence_7/fq_weights_4" [label="[1, 1, 1]", style=solid];
-"30 Constant_2110" -> "27 LSTMSequence_7/fq_weights_4" [label="[1, 1, 1]", style=solid];
-"31 Constant_2109" -> "27 LSTMSequence_7/fq_weights_4" [label="[1, 1, 1]", style=solid];
-"32 Constant_4" -> "27 LSTMSequence_7/fq_weights_4" [label="[1, 512, 16]", style=solid];
-"33 Constant_3" -> "6 LSTMSequence_7" [label="[1]", style=dashed];
-"34 Constant_2102" -> "5 initial_cell_state/fq_output_0" [label="[]", style=solid];
-"35 Constant_2101" -> "5 initial_cell_state/fq_output_0" [label="[]", style=solid];
-"36 Constant_2100" -> "5 initial_cell_state/fq_output_0" [label="[]", style=solid];
-"37 Constant_2099" -> "5 initial_cell_state/fq_output_0" [label="[]", style=solid];
-"38 Constant_2107" -> "4 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"39 Constant_2106" -> "4 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"40 Constant_2105" -> "4 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"41 Constant_2104" -> "4 initial_hidden_state/fq_output_0" [label="[]", style=solid];
-"42 Constant_2097" -> "3 X/fq_output_0" [label="[]", style=solid];
-"43 Constant_2096" -> "3 X/fq_output_0" [label="[]", style=solid];
-"44 Constant_2095" -> "3 X/fq_output_0" [label="[]", style=solid];
-"45 Constant_2094" -> "3 X/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LinearModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/LinearModel.dot
deleted file mode 100644
index 0812509444f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/LinearModel.dot
+++ /dev/null
@@ -1,39 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Reshape" [id=2, type=Reshape];
-"3 Add" [id=3, type=Add];
-"4 MatMul" [id=4, type=MatMul];
-"5 Result_Add" [id=5, type=Result];
-"6 Result_MatMul" [id=6, type=Result];
-"7 Constant_10" [id=7, type=Constant];
-"8 Constant_1" [id=8, type=Constant];
-"9 Constant_2174" [id=9, type=Constant];
-"10 Constant_2173" [id=10, type=Constant];
-"11 Constant_2172" [id=11, type=Constant];
-"12 Constant_2171" [id=12, type=Constant];
-"13 MatMul/fq_weights_1" [id=13, type=FakeQuantize];
-"14 Constant_2179" [id=14, type=Constant];
-"15 Constant_2178" [id=15, type=Constant];
-"16 Constant_2177" [id=16, type=Constant];
-"17 Constant_2176" [id=17, type=Constant];
-"18 Constant_8" [id=18, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"1 Input/fq_output_0" -> "2 Reshape" [label="[1, 3, 4, 2]", style=solid];
-"2 Reshape" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"2 Reshape" -> "4 MatMul" [label="[1, 3, 2, 4]", style=solid];
-"3 Add" -> "5 Result_Add" [label="[1, 3, 2, 4]", style=solid];
-"4 MatMul" -> "6 Result_MatMul" [label="[1, 3, 2, 5]", style=solid];
-"7 Constant_10" -> "3 Add" [label="[1, 3, 2, 4]", style=solid];
-"8 Constant_1" -> "2 Reshape" [label="[4]", style=dashed];
-"9 Constant_2174" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"10 Constant_2173" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"11 Constant_2172" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"12 Constant_2171" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"13 MatMul/fq_weights_1" -> "4 MatMul" [label="[1, 3, 4, 5]", style=solid];
-"14 Constant_2179" -> "13 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"15 Constant_2178" -> "13 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"16 Constant_2177" -> "13 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"17 Constant_2176" -> "13 MatMul/fq_weights_1" [label="[1, 1, 1, 1]", style=solid];
-"18 Constant_8" -> "13 MatMul/fq_weights_1" [label="[1, 3, 4, 5]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatMul2DModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatMul2DModel.dot
deleted file mode 100644
index d91b4017f69..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatMul2DModel.dot
+++ /dev/null
@@ -1,33 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 MatMul" [id=2, type=MatMul];
-"3 Add" [id=3, type=Add];
-"4 Result" [id=4, type=Result];
-"5 Constant_4429" [id=5, type=Constant];
-"6 MatMul/fq_weights_1" [id=6, type=FakeQuantize];
-"7 Constant_6480" [id=7, type=Constant];
-"8 Constant_6479" [id=8, type=Constant];
-"9 Constant_6478" [id=9, type=Constant];
-"10 Constant_6477" [id=10, type=Constant];
-"11 Constant_4427" [id=11, type=Constant];
-"12 Constant_6475" [id=12, type=Constant];
-"13 Constant_6474" [id=13, type=Constant];
-"14 Constant_6473" [id=14, type=Constant];
-"15 Constant_6472" [id=15, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[3, 5]", style=solid];
-"1 Input/fq_output_0" -> "2 MatMul" [label="[3, 5]", style=solid];
-"2 MatMul" -> "3 Add" [label="[3, 2]", style=solid];
-"3 Add" -> "4 Result" [label="[3, 2]", style=solid];
-"5 Constant_4429" -> "3 Add" [label="[1, 2]", style=solid];
-"6 MatMul/fq_weights_1" -> "2 MatMul" [label="[5, 2]", style=solid];
-"7 Constant_6480" -> "6 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"8 Constant_6479" -> "6 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"9 Constant_6478" -> "6 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"10 Constant_6477" -> "6 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"11 Constant_4427" -> "6 MatMul/fq_weights_1" [label="[5, 2]", style=solid];
-"12 Constant_6475" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"13 Constant_6474" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"14 Constant_6473" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"15 Constant_6472" -> "1 Input/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatmulSoftmaxMatmulBlock.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatmulSoftmaxMatmulBlock.dot
deleted file mode 100644
index 76e0ecd3ac6..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/MatmulSoftmaxMatmulBlock.dot
+++ /dev/null
@@ -1,38 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 MatMul_1/fq_input_0" [id=1, type=FakeQuantize];
-"2 Squeeze_1" [id=2, type=Squeeze];
-"3 MatMul_1" [id=3, type=MatMul];
-"4 MatMul_2" [id=4, type=MatMul];
-"5 Softmax_1" [id=5, type=Softmax];
-"6 Result" [id=6, type=Result];
-"7 Constant_2" [id=7, type=Constant];
-"8 MatMul_1/fq_weights_1" [id=8, type=FakeQuantize];
-"9 Constant_2199" [id=9, type=Constant];
-"10 Constant_2198" [id=10, type=Constant];
-"11 Constant_2197" [id=11, type=Constant];
-"12 Constant_2196" [id=12, type=Constant];
-"13 Constant_4" [id=13, type=Constant];
-"14 Constant_2194" [id=14, type=Constant];
-"15 Constant_2193" [id=15, type=Constant];
-"16 Constant_2192" [id=16, type=Constant];
-"17 Constant_2191" [id=17, type=Constant];
-"0 Input" -> "1 MatMul_1/fq_input_0" [label="[1, 1, 1]", style=solid];
-"0 Input" -> "2 Squeeze_1" [label="[1, 1, 1]", style=solid];
-"1 MatMul_1/fq_input_0" -> "3 MatMul_1" [label="[1, 1, 1]", style=solid];
-"2 Squeeze_1" -> "4 MatMul_2" [label="[1, 1]", style=solid];
-"3 MatMul_1" -> "5 Softmax_1" [label="[1, 1, 1]", style=solid];
-"4 MatMul_2" -> "6 Result" [label="[1, 1, 1]", style=solid];
-"5 Softmax_1" -> "4 MatMul_2" [label="[1, 1, 1]", style=solid];
-"7 Constant_2" -> "2 Squeeze_1" [label="[]", style=dashed];
-"8 MatMul_1/fq_weights_1" -> "3 MatMul_1" [label="[1, 1]", style=solid];
-"9 Constant_2199" -> "8 MatMul_1/fq_weights_1" [label="[1, 1]", style=solid];
-"10 Constant_2198" -> "8 MatMul_1/fq_weights_1" [label="[1, 1]", style=solid];
-"11 Constant_2197" -> "8 MatMul_1/fq_weights_1" [label="[1, 1]", style=solid];
-"12 Constant_2196" -> "8 MatMul_1/fq_weights_1" [label="[1, 1]", style=solid];
-"13 Constant_4" -> "8 MatMul_1/fq_weights_1" [label="[1, 1]", style=solid];
-"14 Constant_2194" -> "1 MatMul_1/fq_input_0" [label="[]", style=solid];
-"15 Constant_2193" -> "1 MatMul_1/fq_input_0" [label="[]", style=solid];
-"16 Constant_2192" -> "1 MatMul_1/fq_input_0" [label="[]", style=solid];
-"17 Constant_2191" -> "1 MatMul_1/fq_input_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ScaleShiftReluModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/ScaleShiftReluModel.dot
deleted file mode 100644
index 6044c82c814..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ScaleShiftReluModel.dot
+++ /dev/null
@@ -1,73 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 MatMul" [id=2, type=MatMul];
-"3 MatMul/fq_output_0" [id=3, type=FakeQuantize];
-"4 Mul" [id=4, type=Multiply];
-"5 Add" [id=5, type=Add];
-"6 Relu" [id=6, type=Relu];
-"7 Relu/fq_output_0" [id=7, type=FakeQuantize];
-"8 MatMul2" [id=8, type=MatMul];
-"9 Result" [id=9, type=Result];
-"10 MatMul2/fq_weights_1" [id=10, type=FakeQuantize];
-"11 Constant_2156" [id=11, type=Constant];
-"12 Constant_2155" [id=12, type=Constant];
-"13 Constant_2154" [id=13, type=Constant];
-"14 Constant_2153" [id=14, type=Constant];
-"15 Constant_8" [id=15, type=Constant];
-"16 Constant_2146" [id=16, type=Constant];
-"17 Constant_2145" [id=17, type=Constant];
-"18 Constant_2144" [id=18, type=Constant];
-"19 Constant_2143" [id=19, type=Constant];
-"20 Constant_5" [id=20, type=Constant];
-"21 Constant_3" [id=21, type=Constant];
-"22 Constant_2141" [id=22, type=Constant];
-"23 Constant_2140" [id=23, type=Constant];
-"24 Constant_2139" [id=24, type=Constant];
-"25 Constant_2138" [id=25, type=Constant];
-"26 MatMul/fq_weights_1" [id=26, type=FakeQuantize];
-"27 Constant_2151" [id=27, type=Constant];
-"28 Constant_2150" [id=28, type=Constant];
-"29 Constant_2149" [id=29, type=Constant];
-"30 Constant_2148" [id=30, type=Constant];
-"31 Constant_1" [id=31, type=Constant];
-"32 Constant_2136" [id=32, type=Constant];
-"33 Constant_2135" [id=33, type=Constant];
-"34 Constant_2134" [id=34, type=Constant];
-"35 Constant_2133" [id=35, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[3, 5]", style=solid];
-"1 Input/fq_output_0" -> "2 MatMul" [label="[3, 5]", style=solid];
-"2 MatMul" -> "3 MatMul/fq_output_0" [label="[3, 2]", style=solid];
-"3 MatMul/fq_output_0" -> "4 Mul" [label="[3, 2]", style=solid];
-"4 Mul" -> "5 Add" [label="[3, 2]", style=solid];
-"5 Add" -> "6 Relu" [label="[3, 2]", style=solid];
-"6 Relu" -> "7 Relu/fq_output_0" [label="[3, 2]", style=solid];
-"7 Relu/fq_output_0" -> "8 MatMul2" [label="[3, 2]", style=solid];
-"8 MatMul2" -> "9 Result" [label="[3, 4]", style=solid];
-"10 MatMul2/fq_weights_1" -> "8 MatMul2" [label="[2, 4]", style=solid];
-"11 Constant_2156" -> "10 MatMul2/fq_weights_1" [label="[2, 1]", style=solid];
-"12 Constant_2155" -> "10 MatMul2/fq_weights_1" [label="[2, 1]", style=solid];
-"13 Constant_2154" -> "10 MatMul2/fq_weights_1" [label="[2, 1]", style=solid];
-"14 Constant_2153" -> "10 MatMul2/fq_weights_1" [label="[2, 1]", style=solid];
-"15 Constant_8" -> "10 MatMul2/fq_weights_1" [label="[2, 4]", style=solid];
-"16 Constant_2146" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"17 Constant_2145" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"18 Constant_2144" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"19 Constant_2143" -> "7 Relu/fq_output_0" [label="[]", style=solid];
-"20 Constant_5" -> "5 Add" [label="[1, 2]", style=solid];
-"21 Constant_3" -> "4 Mul" [label="[1, 2]", style=solid];
-"22 Constant_2141" -> "3 MatMul/fq_output_0" [label="[]", style=solid];
-"23 Constant_2140" -> "3 MatMul/fq_output_0" [label="[]", style=solid];
-"24 Constant_2139" -> "3 MatMul/fq_output_0" [label="[]", style=solid];
-"25 Constant_2138" -> "3 MatMul/fq_output_0" [label="[]", style=solid];
-"26 MatMul/fq_weights_1" -> "2 MatMul" [label="[5, 2]", style=solid];
-"27 Constant_2151" -> "26 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"28 Constant_2150" -> "26 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"29 Constant_2149" -> "26 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"30 Constant_2148" -> "26 MatMul/fq_weights_1" [label="[5, 1]", style=solid];
-"31 Constant_1" -> "26 MatMul/fq_weights_1" [label="[5, 2]", style=solid];
-"32 Constant_2136" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"33 Constant_2135" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"34 Constant_2134" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"35 Constant_2133" -> "1 Input/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/SeBlockModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/SeBlockModel.dot
deleted file mode 100644
index 2553a125010..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/SeBlockModel.dot
+++ /dev/null
@@ -1,104 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv0" [id=2, type=Convolution];
-"3 Add0" [id=3, type=Add];
-"4 Add0/fq_output_0" [id=4, type=FakeQuantize];
-"5 Mul" [id=5, type=Multiply];
-"6 ReduceMean_31402" [id=6, type=ReduceMean];
-"7 Mul/fq_output_0" [id=7, type=FakeQuantize];
-"8 Conv" [id=8, type=Convolution];
-"9 MatMul" [id=9, type=MatMul];
-"10 Add" [id=10, type=Add];
-"11 Result" [id=11, type=Result];
-"12 Relu" [id=12, type=Relu];
-"13 Conv2" [id=13, type=Convolution];
-"14 Add2" [id=14, type=Add];
-"15 Sigmoid" [id=15, type=Sigmoid];
-"16 Sigmoid/fq_output_0" [id=16, type=FakeQuantize];
-"17 MatMul/fq_weights_1" [id=17, type=FakeQuantize];
-"18 Constant_33914" [id=18, type=Constant];
-"19 Constant_33913" [id=19, type=Constant];
-"20 Constant_33912" [id=20, type=Constant];
-"21 Constant_33911" [id=21, type=Constant];
-"22 Constant_31414" [id=22, type=Constant];
-"23 Constant_33909" [id=23, type=Constant];
-"24 Constant_33908" [id=24, type=Constant];
-"25 Constant_33907" [id=25, type=Constant];
-"26 Constant_33906" [id=26, type=Constant];
-"27 Constant_33904" [id=27, type=Constant];
-"28 Constant_33903" [id=28, type=Constant];
-"29 Constant_33902" [id=29, type=Constant];
-"30 Constant_33901" [id=30, type=Constant];
-"31 Constant_31410" [id=31, type=Constant];
-"32 Constant_31408" [id=32, type=Constant];
-"33 Constant_31405" [id=33, type=Constant];
-"34 Constant_31403" [id=34, type=Constant];
-"35 Constant_31401" [id=35, type=Constant];
-"36 Constant_33899" [id=36, type=Constant];
-"37 Constant_33898" [id=37, type=Constant];
-"38 Constant_33897" [id=38, type=Constant];
-"39 Constant_33896" [id=39, type=Constant];
-"40 Constant_31399" [id=40, type=Constant];
-"41 Conv0/fq_weights_1" [id=41, type=FakeQuantize];
-"42 Constant_33894" [id=42, type=Constant];
-"43 Constant_33893" [id=43, type=Constant];
-"44 Constant_33892" [id=44, type=Constant];
-"45 Constant_33891" [id=45, type=Constant];
-"46 Constant_31397" [id=46, type=Constant];
-"47 Constant_33889" [id=47, type=Constant];
-"48 Constant_33888" [id=48, type=Constant];
-"49 Constant_33887" [id=49, type=Constant];
-"50 Constant_33886" [id=50, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[1, 3, 5, 6]", style=solid];
-"1 Input/fq_output_0" -> "2 Conv0" [label="[1, 3, 5, 6]", style=solid];
-"2 Conv0" -> "3 Add0" [label="[1, 3, 5, 6]", style=solid];
-"3 Add0" -> "4 Add0/fq_output_0" [label="[1, 3, 5, 6]", style=solid];
-"4 Add0/fq_output_0" -> "5 Mul" [label="[1, 3, 5, 6]", style=solid];
-"4 Add0/fq_output_0" -> "6 ReduceMean_31402" [label="[1, 3, 5, 6]", style=solid];
-"5 Mul" -> "7 Mul/fq_output_0" [label="[1, 3, 5, 6]", style=solid];
-"6 ReduceMean_31402" -> "8 Conv" [label="[1, 3, 1, 1]", style=solid];
-"7 Mul/fq_output_0" -> "9 MatMul" [label="[1, 3, 5, 6]", style=solid];
-"8 Conv" -> "10 Add" [label="[1, 5, 1, 1]", style=solid];
-"9 MatMul" -> "11 Result" [label="[1, 3, 5, 5]", style=solid];
-"10 Add" -> "12 Relu" [label="[1, 5, 1, 1]", style=solid];
-"12 Relu" -> "13 Conv2" [label="[1, 5, 1, 1]", style=solid];
-"13 Conv2" -> "14 Add2" [label="[1, 3, 1, 1]", style=solid];
-"14 Add2" -> "15 Sigmoid" [label="[1, 3, 1, 1]", style=solid];
-"15 Sigmoid" -> "16 Sigmoid/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"16 Sigmoid/fq_output_0" -> "5 Mul" [label="[1, 3, 1, 1]", style=solid];
-"17 MatMul/fq_weights_1" -> "9 MatMul" [label="[6, 5]", style=solid];
-"18 Constant_33914" -> "17 MatMul/fq_weights_1" [label="[1, 5]", style=solid];
-"19 Constant_33913" -> "17 MatMul/fq_weights_1" [label="[1, 5]", style=solid];
-"20 Constant_33912" -> "17 MatMul/fq_weights_1" [label="[1, 5]", style=solid];
-"21 Constant_33911" -> "17 MatMul/fq_weights_1" [label="[1, 5]", style=solid];
-"22 Constant_31414" -> "17 MatMul/fq_weights_1" [label="[6, 5]", style=solid];
-"23 Constant_33909" -> "7 Mul/fq_output_0" [label="[]", style=solid];
-"24 Constant_33908" -> "7 Mul/fq_output_0" [label="[]", style=solid];
-"25 Constant_33907" -> "7 Mul/fq_output_0" [label="[]", style=solid];
-"26 Constant_33906" -> "7 Mul/fq_output_0" [label="[]", style=solid];
-"27 Constant_33904" -> "16 Sigmoid/fq_output_0" [label="[]", style=solid];
-"28 Constant_33903" -> "16 Sigmoid/fq_output_0" [label="[]", style=solid];
-"29 Constant_33902" -> "16 Sigmoid/fq_output_0" [label="[]", style=solid];
-"30 Constant_33901" -> "16 Sigmoid/fq_output_0" [label="[]", style=solid];
-"31 Constant_31410" -> "14 Add2" [label="[1, 3, 1, 1]", style=solid];
-"32 Constant_31408" -> "13 Conv2" [label="[3, 5, 1, 1]", style=solid];
-"33 Constant_31405" -> "10 Add" [label="[1, 5, 1, 1]", style=solid];
-"34 Constant_31403" -> "8 Conv" [label="[5, 3, 1, 1]", style=solid];
-"35 Constant_31401" -> "6 ReduceMean_31402" [label="[2]", style=dashed];
-"36 Constant_33899" -> "4 Add0/fq_output_0" [label="[]", style=solid];
-"37 Constant_33898" -> "4 Add0/fq_output_0" [label="[]", style=solid];
-"38 Constant_33897" -> "4 Add0/fq_output_0" [label="[]", style=solid];
-"39 Constant_33896" -> "4 Add0/fq_output_0" [label="[]", style=solid];
-"40 Constant_31399" -> "3 Add0" [label="[1, 3, 1, 1]", style=solid];
-"41 Conv0/fq_weights_1" -> "2 Conv0" [label="[3, 3, 1, 1]", style=solid];
-"42 Constant_33894" -> "41 Conv0/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"43 Constant_33893" -> "41 Conv0/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"44 Constant_33892" -> "41 Conv0/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"45 Constant_33891" -> "41 Conv0/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"46 Constant_31397" -> "41 Conv0/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"47 Constant_33889" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"48 Constant_33888" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"49 Constant_33887" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"50 Constant_33886" -> "1 Input/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ShapeOfModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/ShapeOfModel.dot
deleted file mode 100644
index 036af485468..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/ShapeOfModel.dot
+++ /dev/null
@@ -1,123 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv_1" [id=2, type=Convolution];
-"3 Conv_Add_1" [id=3, type=Add];
-"4 Conv_Add_1/fq_output_0" [id=4, type=FakeQuantize];
-"5 Reshape_1" [id=5, type=Reshape];
-"6 ShapeOf_1" [id=6, type=ShapeOf];
-"7 Transpose" [id=7, type=Transpose];
-"8 Gather_96538" [id=8, type=Gather];
-"9 Conv_2" [id=9, type=Convolution];
-"10 Concat_96541" [id=10, type=Concat];
-"11 Conv_Add_2" [id=11, type=Add];
-"12 Conv_Add_2/fq_output_0" [id=12, type=FakeQuantize];
-"13 Reshape_2" [id=13, type=Reshape];
-"14 ShapeOf_2" [id=14, type=ShapeOf];
-"15 Conv_3" [id=15, type=Convolution];
-"16 Convert_1" [id=16, type=Convert];
-"17 Conv_Add_3" [id=17, type=Add];
-"18 Multiply" [id=18, type=Multiply];
-"19 Result" [id=19, type=Result];
-"20 Convert_2" [id=20, type=Convert];
-"21 Bias_3" [id=21, type=Constant];
-"22 Conv_3/fq_weights_1" [id=22, type=FakeQuantize];
-"23 Constant_98766" [id=23, type=Constant];
-"24 Constant_98765" [id=24, type=Constant];
-"25 Constant_98764" [id=25, type=Constant];
-"26 Constant_98763" [id=26, type=Constant];
-"27 Constant_96567" [id=27, type=Constant];
-"28 Constant_96553" [id=28, type=Constant];
-"29 Constant_98746" [id=29, type=Constant];
-"30 Constant_98745" [id=30, type=Constant];
-"31 Constant_98744" [id=31, type=Constant];
-"32 Constant_98743" [id=32, type=Constant];
-"33 Bias_2" [id=33, type=Constant];
-"34 Conv_2/fq_weights_1" [id=34, type=FakeQuantize];
-"35 Constant_98761" [id=35, type=Constant];
-"36 Constant_98760" [id=36, type=Constant];
-"37 Constant_98759" [id=37, type=Constant];
-"38 Constant_98758" [id=38, type=Constant];
-"39 Constant_96547" [id=39, type=Constant];
-"40 Constant_96545" [id=40, type=Constant];
-"41 Constant_96537" [id=41, type=Constant];
-"42 Constant_96536" [id=42, type=Constant];
-"43 Constant_98741" [id=43, type=Constant];
-"44 Constant_98740" [id=44, type=Constant];
-"45 Constant_98739" [id=45, type=Constant];
-"46 Constant_98738" [id=46, type=Constant];
-"47 Bias_1" [id=47, type=Constant];
-"48 Conv_1/fq_weights_1" [id=48, type=FakeQuantize];
-"49 Constant_98756" [id=49, type=Constant];
-"50 Constant_98755" [id=50, type=Constant];
-"51 Constant_98754" [id=51, type=Constant];
-"52 Constant_98753" [id=52, type=Constant];
-"53 Constant_96531" [id=53, type=Constant];
-"54 Constant_98751" [id=54, type=Constant];
-"55 Constant_98750" [id=55, type=Constant];
-"56 Constant_98749" [id=56, type=Constant];
-"57 Constant_98748" [id=57, type=Constant];
-"58 Constant_96540" [id=58, type=Constant];
-"59 Constant_96539" [id=59, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"1 Input/fq_output_0" -> "2 Conv_1" [label="[1, 3, 4, 2]", style=solid];
-"2 Conv_1" -> "3 Conv_Add_1" [label="[1, 3, 4, 2]", style=solid];
-"3 Conv_Add_1" -> "4 Conv_Add_1/fq_output_0" [label="[1, 3, 4, 2]", style=solid];
-"4 Conv_Add_1/fq_output_0" -> "5 Reshape_1" [label="[1, 3, 4, 2]", style=solid];
-"4 Conv_Add_1/fq_output_0" -> "6 ShapeOf_1" [label="[1, 3, 4, 2]", style=solid];
-"5 Reshape_1" -> "7 Transpose" [label="[1, 3, 4, 2]", style=solid];
-"6 ShapeOf_1" -> "8 Gather_96538" [label="[4]", style=dashed];
-"7 Transpose" -> "9 Conv_2" [label="[1, 3, 2, 4]", style=solid];
-"8 Gather_96538" -> "10 Concat_96541" [label="[2]", style=dashed];
-"9 Conv_2" -> "11 Conv_Add_2" [label="[1, 3, 2, 4]", style=solid];
-"10 Concat_96541" -> "5 Reshape_1" [label="[4]", style=dashed];
-"11 Conv_Add_2" -> "12 Conv_Add_2/fq_output_0" [label="[1, 3, 2, 4]", style=solid];
-"12 Conv_Add_2/fq_output_0" -> "13 Reshape_2" [label="[1, 3, 2, 4]", style=solid];
-"12 Conv_Add_2/fq_output_0" -> "14 ShapeOf_2" [label="[1, 3, 2, 4]", style=solid];
-"13 Reshape_2" -> "15 Conv_3" [label="[1, 3, 2, 4]", style=solid];
-"14 ShapeOf_2" -> "16 Convert_1" [label="[4]", style=dashed];
-"15 Conv_3" -> "17 Conv_Add_3" [label="[1, 3, 2, 4]", style=solid];
-"16 Convert_1" -> "18 Multiply" [label="[4]", style=solid];
-"17 Conv_Add_3" -> "19 Result" [label="[1, 3, 2, 4]", style=solid];
-"18 Multiply" -> "20 Convert_2" [label="[4]", style=solid];
-"20 Convert_2" -> "13 Reshape_2" [label="[4]", style=dashed];
-"21 Bias_3" -> "17 Conv_Add_3" [label="[1, 3, 1, 1]", style=solid];
-"22 Conv_3/fq_weights_1" -> "15 Conv_3" [label="[3, 3, 1, 1]", style=solid];
-"23 Constant_98766" -> "22 Conv_3/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"24 Constant_98765" -> "22 Conv_3/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"25 Constant_98764" -> "22 Conv_3/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"26 Constant_98763" -> "22 Conv_3/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"27 Constant_96567" -> "22 Conv_3/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"28 Constant_96553" -> "18 Multiply" [label="[4]", style=solid];
-"29 Constant_98746" -> "12 Conv_Add_2/fq_output_0" [label="[]", style=solid];
-"30 Constant_98745" -> "12 Conv_Add_2/fq_output_0" [label="[]", style=solid];
-"31 Constant_98744" -> "12 Conv_Add_2/fq_output_0" [label="[]", style=solid];
-"32 Constant_98743" -> "12 Conv_Add_2/fq_output_0" [label="[]", style=solid];
-"33 Bias_2" -> "11 Conv_Add_2" [label="[1, 3, 1, 1]", style=solid];
-"34 Conv_2/fq_weights_1" -> "9 Conv_2" [label="[3, 3, 1, 1]", style=solid];
-"35 Constant_98761" -> "34 Conv_2/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"36 Constant_98760" -> "34 Conv_2/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"37 Constant_98759" -> "34 Conv_2/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"38 Constant_98758" -> "34 Conv_2/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"39 Constant_96547" -> "34 Conv_2/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"40 Constant_96545" -> "7 Transpose" [label="[4]", style=dashed];
-"41 Constant_96537" -> "8 Gather_96538" [label="[]", style=dashed];
-"42 Constant_96536" -> "8 Gather_96538" [label="[2]", style=dashed];
-"43 Constant_98741" -> "4 Conv_Add_1/fq_output_0" [label="[]", style=solid];
-"44 Constant_98740" -> "4 Conv_Add_1/fq_output_0" [label="[]", style=solid];
-"45 Constant_98739" -> "4 Conv_Add_1/fq_output_0" [label="[]", style=solid];
-"46 Constant_98738" -> "4 Conv_Add_1/fq_output_0" [label="[]", style=solid];
-"47 Bias_1" -> "3 Conv_Add_1" [label="[1, 3, 1, 1]", style=solid];
-"48 Conv_1/fq_weights_1" -> "2 Conv_1" [label="[3, 3, 1, 1]", style=solid];
-"49 Constant_98756" -> "48 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"50 Constant_98755" -> "48 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"51 Constant_98754" -> "48 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"52 Constant_98753" -> "48 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"53 Constant_96531" -> "48 Conv_1/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"54 Constant_98751" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"55 Constant_98750" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"56 Constant_98749" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"57 Constant_98748" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"58 Constant_96540" -> "10 Concat_96541" [label="[1]", style=dashed];
-"59 Constant_96539" -> "10 Concat_96541" [label="[1]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/SharedConvModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/SharedConvModel.dot
deleted file mode 100644
index 7d5cf4429e2..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/SharedConvModel.dot
+++ /dev/null
@@ -1,34 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv_1" [id=2, type=Convolution];
-"3 Conv_2" [id=3, type=Convolution];
-"4 Result_1" [id=4, type=Result];
-"5 Result_2" [id=5, type=Result];
-"6 Conv_1/fq_weights_1" [id=6, type=FakeQuantize];
-"7 Constant_2070" [id=7, type=Constant];
-"8 Constant_2069" [id=8, type=Constant];
-"9 Constant_2068" [id=9, type=Constant];
-"10 Constant_2067" [id=10, type=Constant];
-"11 Shared_conv_w" [id=11, type=Constant];
-"12 Constant_2065" [id=12, type=Constant];
-"13 Constant_2064" [id=13, type=Constant];
-"14 Constant_2063" [id=14, type=Constant];
-"15 Constant_2062" [id=15, type=Constant];
-"0 Input" -> "1 Input/fq_output_0" [label="[1, 3, 3, 3]", style=solid];
-"1 Input/fq_output_0" -> "2 Conv_1" [label="[1, 3, 3, 3]", style=solid];
-"1 Input/fq_output_0" -> "3 Conv_2" [label="[1, 3, 3, 3]", style=solid];
-"2 Conv_1" -> "4 Result_1" [label="[1, 3, 3, 3]", style=solid];
-"3 Conv_2" -> "5 Result_2" [label="[1, 3, 3, 3]", style=solid];
-"6 Conv_1/fq_weights_1" -> "2 Conv_1" [label="[3, 3, 1, 1]", style=solid];
-"6 Conv_1/fq_weights_1" -> "3 Conv_2" [label="[3, 3, 1, 1]", style=solid];
-"7 Constant_2070" -> "6 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"8 Constant_2069" -> "6 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"9 Constant_2068" -> "6 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"10 Constant_2067" -> "6 Conv_1/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"11 Shared_conv_w" -> "6 Conv_1/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"12 Constant_2065" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"13 Constant_2064" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"14 Constant_2063" -> "1 Input/fq_output_0" [label="[]", style=solid];
-"15 Constant_2062" -> "1 Input/fq_output_0" [label="[]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/UnifiedEmbeddingModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/UnifiedEmbeddingModel.dot
deleted file mode 100644
index 24cd2d4545e..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/UnifiedEmbeddingModel.dot
+++ /dev/null
@@ -1,78 +0,0 @@
-strict digraph {
-"0 Input" [id=0, type=Parameter];
-"1 Convert_1" [id=1, type=Convert];
-"2 MatMul_1/fq_input_0" [id=2, type=FakeQuantize];
-"3 Gather_1" [id=3, type=Gather];
-"4 MatMul_1" [id=4, type=MatMul];
-"5 Concat_12" [id=5, type=Concat];
-"6 MatMul_1/fq_output_0" [id=6, type=FakeQuantize];
-"7 MatMul_2" [id=7, type=MatMul];
-"8 Reshape_1" [id=8, type=Reshape];
-"9 Result" [id=9, type=Result];
-"10 MatMul_2/fq_weights_1" [id=10, type=FakeQuantize];
-"11 Constant_2323" [id=11, type=Constant];
-"12 Constant_2322" [id=12, type=Constant];
-"13 Constant_2321" [id=13, type=Constant];
-"14 Constant_2320" [id=14, type=Constant];
-"15 matmul_2_data" [id=15, type=Constant];
-"16 Constant_8" [id=16, type=Constant];
-"17 Constant_2303" [id=17, type=Constant];
-"18 Constant_2302" [id=18, type=Constant];
-"19 Constant_2301" [id=19, type=Constant];
-"20 Constant_2300" [id=20, type=Constant];
-"21 MatMul_1/fq_weights_1" [id=21, type=FakeQuantize];
-"22 Constant_2318" [id=22, type=Constant];
-"23 Constant_2317" [id=23, type=Constant];
-"24 Constant_2316" [id=24, type=Constant];
-"25 Constant_2315" [id=25, type=Constant];
-"26 matmul_1_data" [id=26, type=Constant];
-"27 Constant_2313" [id=27, type=Constant];
-"28 Constant_2312" [id=28, type=Constant];
-"29 Constant_2311" [id=29, type=Constant];
-"30 Constant_2310" [id=30, type=Constant];
-"31 Constant_4" [id=31, type=Constant];
-"32 Gather_1/fq_weights_0" [id=32, type=FakeQuantize];
-"33 Constant_2308" [id=33, type=Constant];
-"34 Constant_2307" [id=34, type=Constant];
-"35 Constant_2306" [id=35, type=Constant];
-"36 Constant_2305" [id=36, type=Constant];
-"37 gather_1_data" [id=37, type=Constant];
-"0 Input" -> "1 Convert_1" [label="[1, 3]", style=solid];
-"0 Input" -> "2 MatMul_1/fq_input_0" [label="[1, 3]", style=solid];
-"1 Convert_1" -> "3 Gather_1" [label="[1, 3]", style=dashed];
-"2 MatMul_1/fq_input_0" -> "4 MatMul_1" [label="[1, 3]", style=solid];
-"3 Gather_1" -> "5 Concat_12" [label="[1, 3, 5]", style=solid];
-"4 MatMul_1" -> "6 MatMul_1/fq_output_0" [label="[3, 1, 5]", style=solid];
-"5 Concat_12" -> "7 MatMul_2" [label="[1, 6, 5]", style=solid];
-"6 MatMul_1/fq_output_0" -> "8 Reshape_1" [label="[3, 1, 5]", style=solid];
-"7 MatMul_2" -> "9 Result" [label="[1, 6, 1]", style=solid];
-"8 Reshape_1" -> "5 Concat_12" [label="[1, 3, 5]", style=solid];
-"10 MatMul_2/fq_weights_1" -> "7 MatMul_2" [label="[1, 5]", style=solid];
-"11 Constant_2323" -> "10 MatMul_2/fq_weights_1" [label="[1, 1]", style=solid];
-"12 Constant_2322" -> "10 MatMul_2/fq_weights_1" [label="[1, 1]", style=solid];
-"13 Constant_2321" -> "10 MatMul_2/fq_weights_1" [label="[1, 1]", style=solid];
-"14 Constant_2320" -> "10 MatMul_2/fq_weights_1" [label="[1, 1]", style=solid];
-"15 matmul_2_data" -> "10 MatMul_2/fq_weights_1" [label="[1, 5]", style=solid];
-"16 Constant_8" -> "8 Reshape_1" [label="[3]", style=dashed];
-"17 Constant_2303" -> "6 MatMul_1/fq_output_0" [label="[]", style=solid];
-"18 Constant_2302" -> "6 MatMul_1/fq_output_0" [label="[]", style=solid];
-"19 Constant_2301" -> "6 MatMul_1/fq_output_0" [label="[]", style=solid];
-"20 Constant_2300" -> "6 MatMul_1/fq_output_0" [label="[]", style=solid];
-"21 MatMul_1/fq_weights_1" -> "4 MatMul_1" [label="[3, 3, 5]", style=solid];
-"22 Constant_2318" -> "21 MatMul_1/fq_weights_1" [label="[3, 1, 5]", style=solid];
-"23 Constant_2317" -> "21 MatMul_1/fq_weights_1" [label="[3, 1, 5]", style=solid];
-"24 Constant_2316" -> "21 MatMul_1/fq_weights_1" [label="[3, 1, 5]", style=solid];
-"25 Constant_2315" -> "21 MatMul_1/fq_weights_1" [label="[3, 1, 5]", style=solid];
-"26 matmul_1_data" -> "21 MatMul_1/fq_weights_1" [label="[3, 3, 5]", style=solid];
-"27 Constant_2313" -> "2 MatMul_1/fq_input_0" [label="[]", style=solid];
-"28 Constant_2312" -> "2 MatMul_1/fq_input_0" [label="[]", style=solid];
-"29 Constant_2311" -> "2 MatMul_1/fq_input_0" [label="[]", style=solid];
-"30 Constant_2310" -> "2 MatMul_1/fq_input_0" [label="[]", style=solid];
-"31 Constant_4" -> "3 Gather_1" [label="[]", style=dashed];
-"32 Gather_1/fq_weights_0" -> "3 Gather_1" [label="[4, 5]", style=solid];
-"33 Constant_2308" -> "32 Gather_1/fq_weights_0" [label="[]", style=solid];
-"34 Constant_2307" -> "32 Gather_1/fq_weights_0" [label="[]", style=solid];
-"35 Constant_2306" -> "32 Gather_1/fq_weights_0" [label="[]", style=solid];
-"36 Constant_2305" -> "32 Gather_1/fq_weights_0" [label="[]", style=solid];
-"37 gather_1_data" -> "32 Gather_1/fq_weights_0" [label="[4, 5]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/WeightsModel.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/WeightsModel.dot
deleted file mode 100644
index c61a2ce4397..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/WeightsModel.dot
+++ /dev/null
@@ -1,122 +0,0 @@
-strict digraph {
-"0 Input_1" [id=0, type=Parameter];
-"1 Input_1/fq_output_0" [id=1, type=FakeQuantize];
-"2 Conv" [id=2, type=Convolution];
-"3 Conv/fq_output_0" [id=3, type=FakeQuantize];
-"4 Conv_backprop" [id=4, type=ConvolutionBackpropData];
-"5 Conv_backprop/fq_output_0" [id=5, type=FakeQuantize];
-"6 MatMul_1" [id=6, type=MatMul];
-"7 MatMul_1/fq_output_0" [id=7, type=FakeQuantize];
-"8 MatMul" [id=8, type=MatMul];
-"9 MatMul_0" [id=9, type=MatMul];
-"10 Add_15" [id=10, type=Add];
-"11 MatMul_0/fq_output_0" [id=11, type=FakeQuantize];
-"12 Result" [id=12, type=Result];
-"13 Constant_2959" [id=13, type=Constant];
-"14 Constant_2958" [id=14, type=Constant];
-"15 Constant_2957" [id=15, type=Constant];
-"16 Constant_2956" [id=16, type=Constant];
-"17 MatMul_1/fq_weights_1" [id=17, type=FakeQuantize];
-"18 Constant_2964" [id=18, type=Constant];
-"19 Constant_2963" [id=19, type=Constant];
-"20 Constant_2962" [id=20, type=Constant];
-"21 Constant_2961" [id=21, type=Constant];
-"22 weights_1" [id=22, type=Constant];
-"23 Constant_2949" [id=23, type=Constant];
-"24 Constant_2948" [id=24, type=Constant];
-"25 Constant_2947" [id=25, type=Constant];
-"26 Constant_2946" [id=26, type=Constant];
-"27 Constant_5" [id=27, type=Constant];
-"28 Conv_backprop/fq_weights_1" [id=28, type=FakeQuantize];
-"29 Constant_2954" [id=29, type=Constant];
-"30 Constant_2953" [id=30, type=Constant];
-"31 Constant_2952" [id=31, type=Constant];
-"32 Constant_2951" [id=32, type=Constant];
-"33 Constant_4" [id=33, type=Constant];
-"34 Constant_2939" [id=34, type=Constant];
-"35 Constant_2938" [id=35, type=Constant];
-"36 Constant_2937" [id=36, type=Constant];
-"37 Constant_2936" [id=37, type=Constant];
-"38 Conv/fq_weights_1" [id=38, type=FakeQuantize];
-"39 Constant_2944" [id=39, type=Constant];
-"40 Constant_2943" [id=40, type=Constant];
-"41 Constant_2942" [id=41, type=Constant];
-"42 Constant_2941" [id=42, type=Constant];
-"43 Constant_2" [id=43, type=Constant];
-"44 Constant_2934" [id=44, type=Constant];
-"45 Constant_2933" [id=45, type=Constant];
-"46 Constant_2932" [id=46, type=Constant];
-"47 Constant_2931" [id=47, type=Constant];
-"48 Constant_2969" [id=48, type=Constant];
-"49 Constant_2968" [id=49, type=Constant];
-"50 Constant_2967" [id=50, type=Constant];
-"51 Constant_2966" [id=51, type=Constant];
-"52 MatMul_0/fq_weights_0" [id=52, type=FakeQuantize];
-"53 Constant_2974" [id=53, type=Constant];
-"54 Constant_2973" [id=54, type=Constant];
-"55 Constant_2972" [id=55, type=Constant];
-"56 Constant_2971" [id=56, type=Constant];
-"57 weights_0" [id=57, type=Constant];
-"58 MatMul_const" [id=58, type=MatMul];
-"0 Input_1" -> "1 Input_1/fq_output_0" [label="[1, 3, 5, 5]", style=solid];
-"1 Input_1/fq_output_0" -> "2 Conv" [label="[1, 3, 5, 5]", style=solid];
-"2 Conv" -> "3 Conv/fq_output_0" [label="[1, 3, 5, 5]", style=solid];
-"3 Conv/fq_output_0" -> "4 Conv_backprop" [label="[1, 3, 5, 5]", style=solid];
-"4 Conv_backprop" -> "5 Conv_backprop/fq_output_0" [label="[1, 3, 1, 1]", style=solid];
-"5 Conv_backprop/fq_output_0" -> "6 MatMul_1" [label="[1, 3, 1, 1]", style=solid];
-"6 MatMul_1" -> "7 MatMul_1/fq_output_0" [label="[1, 3, 1, 4]", style=solid];
-"7 MatMul_1/fq_output_0" -> "8 MatMul" [label="[1, 3, 1, 4]", style=solid];
-"7 MatMul_1/fq_output_0" -> "9 MatMul_0" [label="[1, 3, 1, 4]", style=solid];
-"8 MatMul" -> "10 Add_15" [label="[1, 3, 1, 1]", style=solid];
-"9 MatMul_0" -> "11 MatMul_0/fq_output_0" [label="[1, 3, 1, 4]", style=solid];
-"10 Add_15" -> "12 Result" [label="[1, 3, 4, 1]", style=solid];
-"11 MatMul_0/fq_output_0" -> "8 MatMul" [label="[1, 3, 1, 4]", style=solid];
-"13 Constant_2959" -> "7 MatMul_1/fq_output_0" [label="[]", style=solid];
-"14 Constant_2958" -> "7 MatMul_1/fq_output_0" [label="[]", style=solid];
-"15 Constant_2957" -> "7 MatMul_1/fq_output_0" [label="[]", style=solid];
-"16 Constant_2956" -> "7 MatMul_1/fq_output_0" [label="[]", style=solid];
-"17 MatMul_1/fq_weights_1" -> "6 MatMul_1" [label="[1, 4]", style=solid];
-"18 Constant_2964" -> "17 MatMul_1/fq_weights_1" [label="[1, 4]", style=solid];
-"19 Constant_2963" -> "17 MatMul_1/fq_weights_1" [label="[1, 4]", style=solid];
-"20 Constant_2962" -> "17 MatMul_1/fq_weights_1" [label="[1, 4]", style=solid];
-"21 Constant_2961" -> "17 MatMul_1/fq_weights_1" [label="[1, 4]", style=solid];
-"22 weights_1" -> "17 MatMul_1/fq_weights_1" [label="[1, 4]", style=solid];
-"22 weights_1" -> "58 MatMul_const" [label="[1, 4]", style=solid];
-"23 Constant_2949" -> "5 Conv_backprop/fq_output_0" [label="[]", style=solid];
-"24 Constant_2948" -> "5 Conv_backprop/fq_output_0" [label="[]", style=solid];
-"25 Constant_2947" -> "5 Conv_backprop/fq_output_0" [label="[]", style=solid];
-"26 Constant_2946" -> "5 Conv_backprop/fq_output_0" [label="[]", style=solid];
-"27 Constant_5" -> "4 Conv_backprop" [label="[2]", style=dashed];
-"28 Conv_backprop/fq_weights_1" -> "4 Conv_backprop" [label="[3, 3, 1, 1]", style=solid];
-"29 Constant_2954" -> "28 Conv_backprop/fq_weights_1" [label="[1, 3, 1, 1]", style=solid];
-"30 Constant_2953" -> "28 Conv_backprop/fq_weights_1" [label="[1, 3, 1, 1]", style=solid];
-"31 Constant_2952" -> "28 Conv_backprop/fq_weights_1" [label="[1, 3, 1, 1]", style=solid];
-"32 Constant_2951" -> "28 Conv_backprop/fq_weights_1" [label="[1, 3, 1, 1]", style=solid];
-"33 Constant_4" -> "28 Conv_backprop/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"34 Constant_2939" -> "3 Conv/fq_output_0" [label="[]", style=solid];
-"35 Constant_2938" -> "3 Conv/fq_output_0" [label="[]", style=solid];
-"36 Constant_2937" -> "3 Conv/fq_output_0" [label="[]", style=solid];
-"37 Constant_2936" -> "3 Conv/fq_output_0" [label="[]", style=solid];
-"38 Conv/fq_weights_1" -> "2 Conv" [label="[3, 3, 1, 1]", style=solid];
-"39 Constant_2944" -> "38 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"40 Constant_2943" -> "38 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"41 Constant_2942" -> "38 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"42 Constant_2941" -> "38 Conv/fq_weights_1" [label="[3, 1, 1, 1]", style=solid];
-"43 Constant_2" -> "38 Conv/fq_weights_1" [label="[3, 3, 1, 1]", style=solid];
-"44 Constant_2934" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"45 Constant_2933" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"46 Constant_2932" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"47 Constant_2931" -> "1 Input_1/fq_output_0" [label="[]", style=solid];
-"48 Constant_2969" -> "11 MatMul_0/fq_output_0" [label="[]", style=solid];
-"49 Constant_2968" -> "11 MatMul_0/fq_output_0" [label="[]", style=solid];
-"50 Constant_2967" -> "11 MatMul_0/fq_output_0" [label="[]", style=solid];
-"51 Constant_2966" -> "11 MatMul_0/fq_output_0" [label="[]", style=solid];
-"52 MatMul_0/fq_weights_0" -> "9 MatMul_0" [label="[1, 1]", style=solid];
-"53 Constant_2974" -> "52 MatMul_0/fq_weights_0" [label="[1, 1]", style=solid];
-"54 Constant_2973" -> "52 MatMul_0/fq_weights_0" [label="[1, 1]", style=solid];
-"55 Constant_2972" -> "52 MatMul_0/fq_weights_0" [label="[1, 1]", style=solid];
-"56 Constant_2971" -> "52 MatMul_0/fq_weights_0" [label="[1, 1]", style=solid];
-"57 weights_0" -> "52 MatMul_0/fq_weights_0" [label="[1, 1]", style=solid];
-"57 weights_0" -> "58 MatMul_const" [label="[1, 1]", style=solid];
-"58 MatMul_const" -> "10 Add_15" [label="[4, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v2-pytorch_performance.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v2-pytorch_performance.dot
deleted file mode 100644
index bff8b3058aa..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v2-pytorch_performance.dot
+++ /dev/null
@@ -1,1715 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_5095" [id=1, type=Multiply];
-"2 Divide_1885" [id=2, type=Add];
-"3 Divide_1885/fq_output_0" [id=3, type=FakeQuantize];
-"4 /features/features.0/features.0.0/Conv/WithoutBiases" [id=4, type=Convolution];
-"5 /features/features.0/features.0.0/Conv" [id=5, type=Add];
-"6 /features/features.0/features.0.2/Clip" [id=6, type=Clamp];
-"7 /features/features.0/features.0.2/Clip/fq_output_0" [id=7, type=FakeQuantize];
-"8 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=8, type=GroupConvolution];
-"9 /features/features.1/conv/conv.0/conv.0.0/Conv" [id=9, type=Add];
-"10 /features/features.1/conv/conv.0/conv.0.2/Clip" [id=10, type=Clamp];
-"11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=11, type=FakeQuantize];
-"12 /features/features.1/conv/conv.1/Conv/WithoutBiases" [id=12, type=Convolution];
-"13 /features/features.1/conv/conv.1/Conv" [id=13, type=Add];
-"14 /features/features.1/conv/conv.1/Conv/fq_output_0" [id=14, type=FakeQuantize];
-"15 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=15, type=Convolution];
-"16 /features/features.2/conv/conv.0/conv.0.0/Conv" [id=16, type=Add];
-"17 /features/features.2/conv/conv.0/conv.0.2/Clip" [id=17, type=Clamp];
-"18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=18, type=FakeQuantize];
-"19 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=19, type=GroupConvolution];
-"20 /features/features.2/conv/conv.1/conv.1.0/Conv" [id=20, type=Add];
-"21 /features/features.2/conv/conv.1/conv.1.2/Clip" [id=21, type=Clamp];
-"22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=22, type=FakeQuantize];
-"23 /features/features.2/conv/conv.2/Conv/WithoutBiases" [id=23, type=Convolution];
-"24 /features/features.2/conv/conv.2/Conv" [id=24, type=Add];
-"25 /features/features.2/conv/conv.2/Conv/fq_output_0" [id=25, type=FakeQuantize];
-"26 /features/features.3/Add" [id=26, type=Add];
-"27 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=27, type=Convolution];
-"28 /features/features.3/Add/fq_output_0" [id=28, type=FakeQuantize];
-"29 /features/features.3/conv/conv.0/conv.0.0/Conv" [id=29, type=Add];
-"30 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=30, type=Convolution];
-"31 /features/features.3/conv/conv.0/conv.0.2/Clip" [id=31, type=Clamp];
-"32 /features/features.4/conv/conv.0/conv.0.0/Conv" [id=32, type=Add];
-"33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=33, type=FakeQuantize];
-"34 /features/features.4/conv/conv.0/conv.0.2/Clip" [id=34, type=Clamp];
-"35 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=35, type=GroupConvolution];
-"36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=36, type=FakeQuantize];
-"37 /features/features.3/conv/conv.1/conv.1.0/Conv" [id=37, type=Add];
-"38 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=38, type=GroupConvolution];
-"39 /features/features.3/conv/conv.1/conv.1.2/Clip" [id=39, type=Clamp];
-"40 /features/features.4/conv/conv.1/conv.1.0/Conv" [id=40, type=Add];
-"41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=41, type=FakeQuantize];
-"42 /features/features.4/conv/conv.1/conv.1.2/Clip" [id=42, type=Clamp];
-"43 /features/features.3/conv/conv.2/Conv/WithoutBiases" [id=43, type=Convolution];
-"44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=44, type=FakeQuantize];
-"45 /features/features.3/conv/conv.2/Conv" [id=45, type=Add];
-"46 /features/features.4/conv/conv.2/Conv/WithoutBiases" [id=46, type=Convolution];
-"47 /features/features.3/conv/conv.2/Conv/fq_output_0" [id=47, type=FakeQuantize];
-"48 /features/features.4/conv/conv.2/Conv" [id=48, type=Add];
-"49 /features/features.4/conv/conv.2/Conv/fq_output_0" [id=49, type=FakeQuantize];
-"50 /features/features.5/Add" [id=50, type=Add];
-"51 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=51, type=Convolution];
-"52 /features/features.5/Add/fq_output_0" [id=52, type=FakeQuantize];
-"53 /features/features.5/conv/conv.0/conv.0.0/Conv" [id=53, type=Add];
-"54 /features/features.6/Add" [id=54, type=Add];
-"55 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=55, type=Convolution];
-"56 /features/features.5/conv/conv.0/conv.0.2/Clip" [id=56, type=Clamp];
-"57 /features/features.6/Add/fq_output_0" [id=57, type=FakeQuantize];
-"58 /features/features.6/conv/conv.0/conv.0.0/Conv" [id=58, type=Add];
-"59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=59, type=FakeQuantize];
-"60 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=60, type=Convolution];
-"61 /features/features.6/conv/conv.0/conv.0.2/Clip" [id=61, type=Clamp];
-"62 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=62, type=GroupConvolution];
-"63 /features/features.7/conv/conv.0/conv.0.0/Conv" [id=63, type=Add];
-"64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=64, type=FakeQuantize];
-"65 /features/features.5/conv/conv.1/conv.1.0/Conv" [id=65, type=Add];
-"66 /features/features.7/conv/conv.0/conv.0.2/Clip" [id=66, type=Clamp];
-"67 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=67, type=GroupConvolution];
-"68 /features/features.5/conv/conv.1/conv.1.2/Clip" [id=68, type=Clamp];
-"69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=69, type=FakeQuantize];
-"70 /features/features.6/conv/conv.1/conv.1.0/Conv" [id=70, type=Add];
-"71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=71, type=FakeQuantize];
-"72 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=72, type=GroupConvolution];
-"73 /features/features.6/conv/conv.1/conv.1.2/Clip" [id=73, type=Clamp];
-"74 /features/features.5/conv/conv.2/Conv/WithoutBiases" [id=74, type=Convolution];
-"75 /features/features.7/conv/conv.1/conv.1.0/Conv" [id=75, type=Add];
-"76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=76, type=FakeQuantize];
-"77 /features/features.5/conv/conv.2/Conv" [id=77, type=Add];
-"78 /features/features.7/conv/conv.1/conv.1.2/Clip" [id=78, type=Clamp];
-"79 /features/features.6/conv/conv.2/Conv/WithoutBiases" [id=79, type=Convolution];
-"80 /features/features.5/conv/conv.2/Conv/fq_output_0" [id=80, type=FakeQuantize];
-"81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=81, type=FakeQuantize];
-"82 /features/features.6/conv/conv.2/Conv" [id=82, type=Add];
-"83 /features/features.7/conv/conv.2/Conv/WithoutBiases" [id=83, type=Convolution];
-"84 /features/features.6/conv/conv.2/Conv/fq_output_0" [id=84, type=FakeQuantize];
-"85 /features/features.7/conv/conv.2/Conv" [id=85, type=Add];
-"86 /features/features.7/conv/conv.2/Conv/fq_output_0" [id=86, type=FakeQuantize];
-"87 /features/features.8/Add" [id=87, type=Add];
-"88 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=88, type=Convolution];
-"89 /features/features.8/Add/fq_output_0" [id=89, type=FakeQuantize];
-"90 /features/features.8/conv/conv.0/conv.0.0/Conv" [id=90, type=Add];
-"91 /features/features.9/Add" [id=91, type=Add];
-"92 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=92, type=Convolution];
-"93 /features/features.8/conv/conv.0/conv.0.2/Clip" [id=93, type=Clamp];
-"94 /features/features.9/Add/fq_output_0" [id=94, type=FakeQuantize];
-"95 /features/features.9/conv/conv.0/conv.0.0/Conv" [id=95, type=Add];
-"96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=96, type=FakeQuantize];
-"97 /features/features.10/Add" [id=97, type=Add];
-"98 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=98, type=Convolution];
-"99 /features/features.9/conv/conv.0/conv.0.2/Clip" [id=99, type=Clamp];
-"100 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=100, type=GroupConvolution];
-"101 /features/features.10/Add/fq_output_0" [id=101, type=FakeQuantize];
-"102 /features/features.10/conv/conv.0/conv.0.0/Conv" [id=102, type=Add];
-"103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=103, type=FakeQuantize];
-"104 /features/features.8/conv/conv.1/conv.1.0/Conv" [id=104, type=Add];
-"105 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=105, type=Convolution];
-"106 /features/features.10/conv/conv.0/conv.0.2/Clip" [id=106, type=Clamp];
-"107 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=107, type=GroupConvolution];
-"108 /features/features.8/conv/conv.1/conv.1.2/Clip" [id=108, type=Clamp];
-"109 /features/features.11/conv/conv.0/conv.0.0/Conv" [id=109, type=Add];
-"110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=110, type=FakeQuantize];
-"111 /features/features.9/conv/conv.1/conv.1.0/Conv" [id=111, type=Add];
-"112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=112, type=FakeQuantize];
-"113 /features/features.11/conv/conv.0/conv.0.2/Clip" [id=113, type=Clamp];
-"114 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=114, type=GroupConvolution];
-"115 /features/features.9/conv/conv.1/conv.1.2/Clip" [id=115, type=Clamp];
-"116 /features/features.8/conv/conv.2/Conv/WithoutBiases" [id=116, type=Convolution];
-"117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=117, type=FakeQuantize];
-"118 /features/features.10/conv/conv.1/conv.1.0/Conv" [id=118, type=Add];
-"119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=119, type=FakeQuantize];
-"120 /features/features.8/conv/conv.2/Conv" [id=120, type=Add];
-"121 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=121, type=GroupConvolution];
-"122 /features/features.10/conv/conv.1/conv.1.2/Clip" [id=122, type=Clamp];
-"123 /features/features.9/conv/conv.2/Conv/WithoutBiases" [id=123, type=Convolution];
-"124 /features/features.8/conv/conv.2/Conv/fq_output_0" [id=124, type=FakeQuantize];
-"125 /features/features.11/conv/conv.1/conv.1.0/Conv" [id=125, type=Add];
-"126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=126, type=FakeQuantize];
-"127 /features/features.9/conv/conv.2/Conv" [id=127, type=Add];
-"128 /features/features.11/conv/conv.1/conv.1.2/Clip" [id=128, type=Clamp];
-"129 /features/features.10/conv/conv.2/Conv/WithoutBiases" [id=129, type=Convolution];
-"130 /features/features.9/conv/conv.2/Conv/fq_output_0" [id=130, type=FakeQuantize];
-"131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=131, type=FakeQuantize];
-"132 /features/features.10/conv/conv.2/Conv" [id=132, type=Add];
-"133 /features/features.11/conv/conv.2/Conv/WithoutBiases" [id=133, type=Convolution];
-"134 /features/features.10/conv/conv.2/Conv/fq_output_0" [id=134, type=FakeQuantize];
-"135 /features/features.11/conv/conv.2/Conv" [id=135, type=Add];
-"136 /features/features.11/conv/conv.2/Conv/fq_output_0" [id=136, type=FakeQuantize];
-"137 /features/features.12/Add" [id=137, type=Add];
-"138 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=138, type=Convolution];
-"139 /features/features.12/Add/fq_output_0" [id=139, type=FakeQuantize];
-"140 /features/features.12/conv/conv.0/conv.0.0/Conv" [id=140, type=Add];
-"141 /features/features.13/Add" [id=141, type=Add];
-"142 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=142, type=Convolution];
-"143 /features/features.12/conv/conv.0/conv.0.2/Clip" [id=143, type=Clamp];
-"144 /features/features.13/Add/fq_output_0" [id=144, type=FakeQuantize];
-"145 /features/features.13/conv/conv.0/conv.0.0/Conv" [id=145, type=Add];
-"146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=146, type=FakeQuantize];
-"147 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=147, type=Convolution];
-"148 /features/features.13/conv/conv.0/conv.0.2/Clip" [id=148, type=Clamp];
-"149 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=149, type=GroupConvolution];
-"150 /features/features.14/conv/conv.0/conv.0.0/Conv" [id=150, type=Add];
-"151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=151, type=FakeQuantize];
-"152 /features/features.12/conv/conv.1/conv.1.0/Conv" [id=152, type=Add];
-"153 /features/features.14/conv/conv.0/conv.0.2/Clip" [id=153, type=Clamp];
-"154 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=154, type=GroupConvolution];
-"155 /features/features.12/conv/conv.1/conv.1.2/Clip" [id=155, type=Clamp];
-"156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=156, type=FakeQuantize];
-"157 /features/features.13/conv/conv.1/conv.1.0/Conv" [id=157, type=Add];
-"158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=158, type=FakeQuantize];
-"159 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=159, type=GroupConvolution];
-"160 /features/features.13/conv/conv.1/conv.1.2/Clip" [id=160, type=Clamp];
-"161 /features/features.12/conv/conv.2/Conv/WithoutBiases" [id=161, type=Convolution];
-"162 /features/features.14/conv/conv.1/conv.1.0/Conv" [id=162, type=Add];
-"163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=163, type=FakeQuantize];
-"164 /features/features.12/conv/conv.2/Conv" [id=164, type=Add];
-"165 /features/features.14/conv/conv.1/conv.1.2/Clip" [id=165, type=Clamp];
-"166 /features/features.13/conv/conv.2/Conv/WithoutBiases" [id=166, type=Convolution];
-"167 /features/features.12/conv/conv.2/Conv/fq_output_0" [id=167, type=FakeQuantize];
-"168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=168, type=FakeQuantize];
-"169 /features/features.13/conv/conv.2/Conv" [id=169, type=Add];
-"170 /features/features.14/conv/conv.2/Conv/WithoutBiases" [id=170, type=Convolution];
-"171 /features/features.13/conv/conv.2/Conv/fq_output_0" [id=171, type=FakeQuantize];
-"172 /features/features.14/conv/conv.2/Conv" [id=172, type=Add];
-"173 /features/features.14/conv/conv.2/Conv/fq_output_0" [id=173, type=FakeQuantize];
-"174 /features/features.15/Add" [id=174, type=Add];
-"175 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=175, type=Convolution];
-"176 /features/features.15/Add/fq_output_0" [id=176, type=FakeQuantize];
-"177 /features/features.15/conv/conv.0/conv.0.0/Conv" [id=177, type=Add];
-"178 /features/features.16/Add" [id=178, type=Add];
-"179 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=179, type=Convolution];
-"180 /features/features.15/conv/conv.0/conv.0.2/Clip" [id=180, type=Clamp];
-"181 /features/features.16/Add/fq_output_0" [id=181, type=FakeQuantize];
-"182 /features/features.16/conv/conv.0/conv.0.0/Conv" [id=182, type=Add];
-"183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=183, type=FakeQuantize];
-"184 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [id=184, type=Convolution];
-"185 /features/features.16/conv/conv.0/conv.0.2/Clip" [id=185, type=Clamp];
-"186 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=186, type=GroupConvolution];
-"187 /features/features.17/conv/conv.0/conv.0.0/Conv" [id=187, type=Add];
-"188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=188, type=FakeQuantize];
-"189 /features/features.15/conv/conv.1/conv.1.0/Conv" [id=189, type=Add];
-"190 /features/features.17/conv/conv.0/conv.0.2/Clip" [id=190, type=Clamp];
-"191 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=191, type=GroupConvolution];
-"192 /features/features.15/conv/conv.1/conv.1.2/Clip" [id=192, type=Clamp];
-"193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [id=193, type=FakeQuantize];
-"194 /features/features.16/conv/conv.1/conv.1.0/Conv" [id=194, type=Add];
-"195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=195, type=FakeQuantize];
-"196 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [id=196, type=GroupConvolution];
-"197 /features/features.16/conv/conv.1/conv.1.2/Clip" [id=197, type=Clamp];
-"198 /features/features.15/conv/conv.2/Conv/WithoutBiases" [id=198, type=Convolution];
-"199 /features/features.17/conv/conv.1/conv.1.0/Conv" [id=199, type=Add];
-"200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=200, type=FakeQuantize];
-"201 /features/features.15/conv/conv.2/Conv" [id=201, type=Add];
-"202 /features/features.17/conv/conv.1/conv.1.2/Clip" [id=202, type=Clamp];
-"203 /features/features.16/conv/conv.2/Conv/WithoutBiases" [id=203, type=Convolution];
-"204 /features/features.15/conv/conv.2/Conv/fq_output_0" [id=204, type=FakeQuantize];
-"205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [id=205, type=FakeQuantize];
-"206 /features/features.16/conv/conv.2/Conv" [id=206, type=Add];
-"207 /features/features.17/conv/conv.2/Conv/WithoutBiases" [id=207, type=Convolution];
-"208 /features/features.16/conv/conv.2/Conv/fq_output_0" [id=208, type=FakeQuantize];
-"209 /features/features.17/conv/conv.2/Conv" [id=209, type=Add];
-"210 /features/features.17/conv/conv.2/Conv/fq_output_0" [id=210, type=FakeQuantize];
-"211 /features/features.18/features.18.0/Conv/WithoutBiases" [id=211, type=Convolution];
-"212 /features/features.18/features.18.0/Conv" [id=212, type=Add];
-"213 /features/features.18/features.18.2/Clip" [id=213, type=Clamp];
-"214 /features/features.18/features.18.2/Clip/fq_output_0" [id=214, type=FakeQuantize];
-"215 /GlobalAveragePool" [id=215, type=ReduceMean];
-"216 /GlobalAveragePool/fq_output_0" [id=216, type=FakeQuantize];
-"217 /Flatten" [id=217, type=Reshape];
-"218 /classifier/classifier.1/Gemm/WithoutBiases" [id=218, type=MatMul];
-"219 prob" [id=219, type=Add];
-"220 prob/sink_port_0" [id=220, type=Result];
-"221 Constant_5169" [id=221, type=Constant];
-"222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [id=222, type=FakeQuantize];
-"223 Constant_41658" [id=223, type=Constant];
-"224 Constant_41657" [id=224, type=Constant];
-"225 Constant_41656" [id=225, type=Constant];
-"226 Constant_41655" [id=226, type=Constant];
-"227 classifier.1.weight" [id=227, type=Constant];
-"228 Constant_1864" [id=228, type=Constant];
-"229 Constant_41653" [id=229, type=Constant];
-"230 Constant_41652" [id=230, type=Constant];
-"231 Constant_41651" [id=231, type=Constant];
-"232 Constant_41650" [id=232, type=Constant];
-"233 Range_1860" [id=233, type=Constant];
-"234 Constant_41648" [id=234, type=Constant];
-"235 Constant_41647" [id=235, type=Constant];
-"236 Constant_41646" [id=236, type=Constant];
-"237 Constant_41645" [id=237, type=Constant];
-"238 Reshape_1846" [id=238, type=Constant];
-"239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [id=239, type=FakeQuantize];
-"240 Constant_41643" [id=240, type=Constant];
-"241 Constant_41642" [id=241, type=Constant];
-"242 Constant_41641" [id=242, type=Constant];
-"243 Constant_41640" [id=243, type=Constant];
-"244 onnx^^Conv_691" [id=244, label="244 onnx::Conv_691", type=Constant];
-"245 Constant_41638" [id=245, type=Constant];
-"246 Constant_41637" [id=246, type=Constant];
-"247 Constant_41636" [id=247, type=Constant];
-"248 Constant_41635" [id=248, type=Constant];
-"249 Reshape_1831" [id=249, type=Constant];
-"250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=250, type=FakeQuantize];
-"251 Constant_41633" [id=251, type=Constant];
-"252 Constant_41632" [id=252, type=Constant];
-"253 Constant_41631" [id=253, type=Constant];
-"254 Constant_41630" [id=254, type=Constant];
-"255 onnx^^Conv_688" [id=255, label="255 onnx::Conv_688", type=Constant];
-"256 Constant_41628" [id=256, type=Constant];
-"257 Constant_41627" [id=257, type=Constant];
-"258 Constant_41626" [id=258, type=Constant];
-"259 Constant_41625" [id=259, type=Constant];
-"260 Reshape_1812" [id=260, type=Constant];
-"261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=261, type=FakeQuantize];
-"262 Constant_41623" [id=262, type=Constant];
-"263 Constant_41622" [id=263, type=Constant];
-"264 Constant_41621" [id=264, type=Constant];
-"265 Constant_41620" [id=265, type=Constant];
-"266 Reshape_1760" [id=266, type=Constant];
-"267 Constant_41618" [id=267, type=Constant];
-"268 Constant_41617" [id=268, type=Constant];
-"269 Constant_41616" [id=269, type=Constant];
-"270 Constant_41615" [id=270, type=Constant];
-"271 Reshape_1745" [id=271, type=Constant];
-"272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=272, type=FakeQuantize];
-"273 Constant_41613" [id=273, type=Constant];
-"274 Constant_41612" [id=274, type=Constant];
-"275 Constant_41611" [id=275, type=Constant];
-"276 Constant_41610" [id=276, type=Constant];
-"277 onnx^^Conv_682" [id=277, label="277 onnx::Conv_682", type=Constant];
-"278 Constant_41608" [id=278, type=Constant];
-"279 Constant_41607" [id=279, type=Constant];
-"280 Constant_41606" [id=280, type=Constant];
-"281 Constant_41605" [id=281, type=Constant];
-"282 Constant_41603" [id=282, type=Constant];
-"283 Constant_41602" [id=283, type=Constant];
-"284 Constant_41601" [id=284, type=Constant];
-"285 Constant_41600" [id=285, type=Constant];
-"286 Reshape_1729" [id=286, type=Constant];
-"287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=287, type=FakeQuantize];
-"288 Constant_41598" [id=288, type=Constant];
-"289 Constant_41597" [id=289, type=Constant];
-"290 Constant_41596" [id=290, type=Constant];
-"291 Constant_41595" [id=291, type=Constant];
-"292 onnx^^Conv_679" [id=292, label="292 onnx::Conv_679", type=Constant];
-"293 Constant_41593" [id=293, type=Constant];
-"294 Constant_41592" [id=294, type=Constant];
-"295 Constant_41591" [id=295, type=Constant];
-"296 Constant_41590" [id=296, type=Constant];
-"297 Reshape_1710" [id=297, type=Constant];
-"298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=298, type=FakeQuantize];
-"299 Constant_41588" [id=299, type=Constant];
-"300 Constant_41587" [id=300, type=Constant];
-"301 Constant_41586" [id=301, type=Constant];
-"302 Constant_41585" [id=302, type=Constant];
-"303 Reshape_1658" [id=303, type=Constant];
-"304 Constant_41583" [id=304, type=Constant];
-"305 Constant_41582" [id=305, type=Constant];
-"306 Constant_41581" [id=306, type=Constant];
-"307 Constant_41580" [id=307, type=Constant];
-"308 Reshape_1643" [id=308, type=Constant];
-"309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=309, type=FakeQuantize];
-"310 Constant_41578" [id=310, type=Constant];
-"311 Constant_41577" [id=311, type=Constant];
-"312 Constant_41576" [id=312, type=Constant];
-"313 Constant_41575" [id=313, type=Constant];
-"314 onnx^^Conv_673" [id=314, label="314 onnx::Conv_673", type=Constant];
-"315 Constant_41573" [id=315, type=Constant];
-"316 Constant_41572" [id=316, type=Constant];
-"317 Constant_41571" [id=317, type=Constant];
-"318 Constant_41570" [id=318, type=Constant];
-"319 Constant_41568" [id=319, type=Constant];
-"320 Constant_41567" [id=320, type=Constant];
-"321 Constant_41566" [id=321, type=Constant];
-"322 Constant_41565" [id=322, type=Constant];
-"323 Reshape_1627" [id=323, type=Constant];
-"324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=324, type=FakeQuantize];
-"325 Constant_41563" [id=325, type=Constant];
-"326 Constant_41562" [id=326, type=Constant];
-"327 Constant_41561" [id=327, type=Constant];
-"328 Constant_41560" [id=328, type=Constant];
-"329 onnx^^Conv_670" [id=329, label="329 onnx::Conv_670", type=Constant];
-"330 Constant_41558" [id=330, type=Constant];
-"331 Constant_41557" [id=331, type=Constant];
-"332 Constant_41556" [id=332, type=Constant];
-"333 Constant_41555" [id=333, type=Constant];
-"334 Reshape_1608" [id=334, type=Constant];
-"335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=335, type=FakeQuantize];
-"336 Constant_41553" [id=336, type=Constant];
-"337 Constant_41552" [id=337, type=Constant];
-"338 Constant_41551" [id=338, type=Constant];
-"339 Constant_41550" [id=339, type=Constant];
-"340 Reshape_1556" [id=340, type=Constant];
-"341 Constant_41548" [id=341, type=Constant];
-"342 Constant_41547" [id=342, type=Constant];
-"343 Constant_41546" [id=343, type=Constant];
-"344 Constant_41545" [id=344, type=Constant];
-"345 Reshape_1541" [id=345, type=Constant];
-"346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=346, type=FakeQuantize];
-"347 Constant_41543" [id=347, type=Constant];
-"348 Constant_41542" [id=348, type=Constant];
-"349 Constant_41541" [id=349, type=Constant];
-"350 Constant_41540" [id=350, type=Constant];
-"351 onnx^^Conv_664" [id=351, label="351 onnx::Conv_664", type=Constant];
-"352 Constant_41538" [id=352, type=Constant];
-"353 Constant_41537" [id=353, type=Constant];
-"354 Constant_41536" [id=354, type=Constant];
-"355 Constant_41535" [id=355, type=Constant];
-"356 Reshape_1526" [id=356, type=Constant];
-"357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=357, type=FakeQuantize];
-"358 Constant_41533" [id=358, type=Constant];
-"359 Constant_41532" [id=359, type=Constant];
-"360 Constant_41531" [id=360, type=Constant];
-"361 Constant_41530" [id=361, type=Constant];
-"362 onnx^^Conv_661" [id=362, label="362 onnx::Conv_661", type=Constant];
-"363 Constant_41528" [id=363, type=Constant];
-"364 Constant_41527" [id=364, type=Constant];
-"365 Constant_41526" [id=365, type=Constant];
-"366 Constant_41525" [id=366, type=Constant];
-"367 Reshape_1507" [id=367, type=Constant];
-"368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=368, type=FakeQuantize];
-"369 Constant_41523" [id=369, type=Constant];
-"370 Constant_41522" [id=370, type=Constant];
-"371 Constant_41521" [id=371, type=Constant];
-"372 Constant_41520" [id=372, type=Constant];
-"373 Reshape_1455" [id=373, type=Constant];
-"374 Constant_41518" [id=374, type=Constant];
-"375 Constant_41517" [id=375, type=Constant];
-"376 Constant_41516" [id=376, type=Constant];
-"377 Constant_41515" [id=377, type=Constant];
-"378 Reshape_1440" [id=378, type=Constant];
-"379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=379, type=FakeQuantize];
-"380 Constant_41513" [id=380, type=Constant];
-"381 Constant_41512" [id=381, type=Constant];
-"382 Constant_41511" [id=382, type=Constant];
-"383 Constant_41510" [id=383, type=Constant];
-"384 onnx^^Conv_655" [id=384, label="384 onnx::Conv_655", type=Constant];
-"385 Constant_41508" [id=385, type=Constant];
-"386 Constant_41507" [id=386, type=Constant];
-"387 Constant_41506" [id=387, type=Constant];
-"388 Constant_41505" [id=388, type=Constant];
-"389 Constant_41503" [id=389, type=Constant];
-"390 Constant_41502" [id=390, type=Constant];
-"391 Constant_41501" [id=391, type=Constant];
-"392 Constant_41500" [id=392, type=Constant];
-"393 Reshape_1424" [id=393, type=Constant];
-"394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=394, type=FakeQuantize];
-"395 Constant_41498" [id=395, type=Constant];
-"396 Constant_41497" [id=396, type=Constant];
-"397 Constant_41496" [id=397, type=Constant];
-"398 Constant_41495" [id=398, type=Constant];
-"399 onnx^^Conv_652" [id=399, label="399 onnx::Conv_652", type=Constant];
-"400 Constant_41493" [id=400, type=Constant];
-"401 Constant_41492" [id=401, type=Constant];
-"402 Constant_41491" [id=402, type=Constant];
-"403 Constant_41490" [id=403, type=Constant];
-"404 Reshape_1405" [id=404, type=Constant];
-"405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=405, type=FakeQuantize];
-"406 Constant_41488" [id=406, type=Constant];
-"407 Constant_41487" [id=407, type=Constant];
-"408 Constant_41486" [id=408, type=Constant];
-"409 Constant_41485" [id=409, type=Constant];
-"410 Reshape_1353" [id=410, type=Constant];
-"411 Constant_41483" [id=411, type=Constant];
-"412 Constant_41482" [id=412, type=Constant];
-"413 Constant_41481" [id=413, type=Constant];
-"414 Constant_41480" [id=414, type=Constant];
-"415 Reshape_1338" [id=415, type=Constant];
-"416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=416, type=FakeQuantize];
-"417 Constant_41478" [id=417, type=Constant];
-"418 Constant_41477" [id=418, type=Constant];
-"419 Constant_41476" [id=419, type=Constant];
-"420 Constant_41475" [id=420, type=Constant];
-"421 onnx^^Conv_646" [id=421, label="421 onnx::Conv_646", type=Constant];
-"422 Constant_41473" [id=422, type=Constant];
-"423 Constant_41472" [id=423, type=Constant];
-"424 Constant_41471" [id=424, type=Constant];
-"425 Constant_41470" [id=425, type=Constant];
-"426 Constant_41468" [id=426, type=Constant];
-"427 Constant_41467" [id=427, type=Constant];
-"428 Constant_41466" [id=428, type=Constant];
-"429 Constant_41465" [id=429, type=Constant];
-"430 Reshape_1322" [id=430, type=Constant];
-"431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=431, type=FakeQuantize];
-"432 Constant_41463" [id=432, type=Constant];
-"433 Constant_41462" [id=433, type=Constant];
-"434 Constant_41461" [id=434, type=Constant];
-"435 Constant_41460" [id=435, type=Constant];
-"436 onnx^^Conv_643" [id=436, label="436 onnx::Conv_643", type=Constant];
-"437 Constant_41458" [id=437, type=Constant];
-"438 Constant_41457" [id=438, type=Constant];
-"439 Constant_41456" [id=439, type=Constant];
-"440 Constant_41455" [id=440, type=Constant];
-"441 Reshape_1303" [id=441, type=Constant];
-"442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=442, type=FakeQuantize];
-"443 Constant_41453" [id=443, type=Constant];
-"444 Constant_41452" [id=444, type=Constant];
-"445 Constant_41451" [id=445, type=Constant];
-"446 Constant_41450" [id=446, type=Constant];
-"447 Reshape_1251" [id=447, type=Constant];
-"448 Constant_41448" [id=448, type=Constant];
-"449 Constant_41447" [id=449, type=Constant];
-"450 Constant_41446" [id=450, type=Constant];
-"451 Constant_41445" [id=451, type=Constant];
-"452 Reshape_1236" [id=452, type=Constant];
-"453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=453, type=FakeQuantize];
-"454 Constant_41443" [id=454, type=Constant];
-"455 Constant_41442" [id=455, type=Constant];
-"456 Constant_41441" [id=456, type=Constant];
-"457 Constant_41440" [id=457, type=Constant];
-"458 onnx^^Conv_637" [id=458, label="458 onnx::Conv_637", type=Constant];
-"459 Constant_41438" [id=459, type=Constant];
-"460 Constant_41437" [id=460, type=Constant];
-"461 Constant_41436" [id=461, type=Constant];
-"462 Constant_41435" [id=462, type=Constant];
-"463 Reshape_1221" [id=463, type=Constant];
-"464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=464, type=FakeQuantize];
-"465 Constant_41433" [id=465, type=Constant];
-"466 Constant_41432" [id=466, type=Constant];
-"467 Constant_41431" [id=467, type=Constant];
-"468 Constant_41430" [id=468, type=Constant];
-"469 onnx^^Conv_634" [id=469, label="469 onnx::Conv_634", type=Constant];
-"470 Constant_41428" [id=470, type=Constant];
-"471 Constant_41427" [id=471, type=Constant];
-"472 Constant_41426" [id=472, type=Constant];
-"473 Constant_41425" [id=473, type=Constant];
-"474 Reshape_1202" [id=474, type=Constant];
-"475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=475, type=FakeQuantize];
-"476 Constant_41423" [id=476, type=Constant];
-"477 Constant_41422" [id=477, type=Constant];
-"478 Constant_41421" [id=478, type=Constant];
-"479 Constant_41420" [id=479, type=Constant];
-"480 Reshape_1150" [id=480, type=Constant];
-"481 Constant_41418" [id=481, type=Constant];
-"482 Constant_41417" [id=482, type=Constant];
-"483 Constant_41416" [id=483, type=Constant];
-"484 Constant_41415" [id=484, type=Constant];
-"485 Reshape_1135" [id=485, type=Constant];
-"486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=486, type=FakeQuantize];
-"487 Constant_41413" [id=487, type=Constant];
-"488 Constant_41412" [id=488, type=Constant];
-"489 Constant_41411" [id=489, type=Constant];
-"490 Constant_41410" [id=490, type=Constant];
-"491 onnx^^Conv_628" [id=491, label="491 onnx::Conv_628", type=Constant];
-"492 Constant_41408" [id=492, type=Constant];
-"493 Constant_41407" [id=493, type=Constant];
-"494 Constant_41406" [id=494, type=Constant];
-"495 Constant_41405" [id=495, type=Constant];
-"496 Constant_41403" [id=496, type=Constant];
-"497 Constant_41402" [id=497, type=Constant];
-"498 Constant_41401" [id=498, type=Constant];
-"499 Constant_41400" [id=499, type=Constant];
-"500 Reshape_1119" [id=500, type=Constant];
-"501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=501, type=FakeQuantize];
-"502 Constant_41398" [id=502, type=Constant];
-"503 Constant_41397" [id=503, type=Constant];
-"504 Constant_41396" [id=504, type=Constant];
-"505 Constant_41395" [id=505, type=Constant];
-"506 onnx^^Conv_625" [id=506, label="506 onnx::Conv_625", type=Constant];
-"507 Constant_41393" [id=507, type=Constant];
-"508 Constant_41392" [id=508, type=Constant];
-"509 Constant_41391" [id=509, type=Constant];
-"510 Constant_41390" [id=510, type=Constant];
-"511 Reshape_1100" [id=511, type=Constant];
-"512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=512, type=FakeQuantize];
-"513 Constant_41388" [id=513, type=Constant];
-"514 Constant_41387" [id=514, type=Constant];
-"515 Constant_41386" [id=515, type=Constant];
-"516 Constant_41385" [id=516, type=Constant];
-"517 Reshape_1048" [id=517, type=Constant];
-"518 Constant_41383" [id=518, type=Constant];
-"519 Constant_41382" [id=519, type=Constant];
-"520 Constant_41381" [id=520, type=Constant];
-"521 Constant_41380" [id=521, type=Constant];
-"522 Reshape_1033" [id=522, type=Constant];
-"523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=523, type=FakeQuantize];
-"524 Constant_41378" [id=524, type=Constant];
-"525 Constant_41377" [id=525, type=Constant];
-"526 Constant_41376" [id=526, type=Constant];
-"527 Constant_41375" [id=527, type=Constant];
-"528 onnx^^Conv_619" [id=528, label="528 onnx::Conv_619", type=Constant];
-"529 Constant_41373" [id=529, type=Constant];
-"530 Constant_41372" [id=530, type=Constant];
-"531 Constant_41371" [id=531, type=Constant];
-"532 Constant_41370" [id=532, type=Constant];
-"533 Constant_41368" [id=533, type=Constant];
-"534 Constant_41367" [id=534, type=Constant];
-"535 Constant_41366" [id=535, type=Constant];
-"536 Constant_41365" [id=536, type=Constant];
-"537 Reshape_1017" [id=537, type=Constant];
-"538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=538, type=FakeQuantize];
-"539 Constant_41363" [id=539, type=Constant];
-"540 Constant_41362" [id=540, type=Constant];
-"541 Constant_41361" [id=541, type=Constant];
-"542 Constant_41360" [id=542, type=Constant];
-"543 onnx^^Conv_616" [id=543, label="543 onnx::Conv_616", type=Constant];
-"544 Constant_41358" [id=544, type=Constant];
-"545 Constant_41357" [id=545, type=Constant];
-"546 Constant_41356" [id=546, type=Constant];
-"547 Constant_41355" [id=547, type=Constant];
-"548 Reshape_998" [id=548, type=Constant];
-"549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=549, type=FakeQuantize];
-"550 Constant_41353" [id=550, type=Constant];
-"551 Constant_41352" [id=551, type=Constant];
-"552 Constant_41351" [id=552, type=Constant];
-"553 Constant_41350" [id=553, type=Constant];
-"554 Reshape_946" [id=554, type=Constant];
-"555 Constant_41348" [id=555, type=Constant];
-"556 Constant_41347" [id=556, type=Constant];
-"557 Constant_41346" [id=557, type=Constant];
-"558 Constant_41345" [id=558, type=Constant];
-"559 Reshape_931" [id=559, type=Constant];
-"560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=560, type=FakeQuantize];
-"561 Constant_41343" [id=561, type=Constant];
-"562 Constant_41342" [id=562, type=Constant];
-"563 Constant_41341" [id=563, type=Constant];
-"564 Constant_41340" [id=564, type=Constant];
-"565 onnx^^Conv_610" [id=565, label="565 onnx::Conv_610", type=Constant];
-"566 Constant_41338" [id=566, type=Constant];
-"567 Constant_41337" [id=567, type=Constant];
-"568 Constant_41336" [id=568, type=Constant];
-"569 Constant_41335" [id=569, type=Constant];
-"570 Constant_41333" [id=570, type=Constant];
-"571 Constant_41332" [id=571, type=Constant];
-"572 Constant_41331" [id=572, type=Constant];
-"573 Constant_41330" [id=573, type=Constant];
-"574 Reshape_915" [id=574, type=Constant];
-"575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=575, type=FakeQuantize];
-"576 Constant_41328" [id=576, type=Constant];
-"577 Constant_41327" [id=577, type=Constant];
-"578 Constant_41326" [id=578, type=Constant];
-"579 Constant_41325" [id=579, type=Constant];
-"580 onnx^^Conv_607" [id=580, label="580 onnx::Conv_607", type=Constant];
-"581 Constant_41323" [id=581, type=Constant];
-"582 Constant_41322" [id=582, type=Constant];
-"583 Constant_41321" [id=583, type=Constant];
-"584 Constant_41320" [id=584, type=Constant];
-"585 Reshape_896" [id=585, type=Constant];
-"586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=586, type=FakeQuantize];
-"587 Constant_41318" [id=587, type=Constant];
-"588 Constant_41317" [id=588, type=Constant];
-"589 Constant_41316" [id=589, type=Constant];
-"590 Constant_41315" [id=590, type=Constant];
-"591 Reshape_844" [id=591, type=Constant];
-"592 Constant_41313" [id=592, type=Constant];
-"593 Constant_41312" [id=593, type=Constant];
-"594 Constant_41311" [id=594, type=Constant];
-"595 Constant_41310" [id=595, type=Constant];
-"596 Reshape_829" [id=596, type=Constant];
-"597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=597, type=FakeQuantize];
-"598 Constant_41308" [id=598, type=Constant];
-"599 Constant_41307" [id=599, type=Constant];
-"600 Constant_41306" [id=600, type=Constant];
-"601 Constant_41305" [id=601, type=Constant];
-"602 onnx^^Conv_601" [id=602, label="602 onnx::Conv_601", type=Constant];
-"603 Constant_41303" [id=603, type=Constant];
-"604 Constant_41302" [id=604, type=Constant];
-"605 Constant_41301" [id=605, type=Constant];
-"606 Constant_41300" [id=606, type=Constant];
-"607 Reshape_814" [id=607, type=Constant];
-"608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=608, type=FakeQuantize];
-"609 Constant_41298" [id=609, type=Constant];
-"610 Constant_41297" [id=610, type=Constant];
-"611 Constant_41296" [id=611, type=Constant];
-"612 Constant_41295" [id=612, type=Constant];
-"613 onnx^^Conv_598" [id=613, label="613 onnx::Conv_598", type=Constant];
-"614 Constant_41293" [id=614, type=Constant];
-"615 Constant_41292" [id=615, type=Constant];
-"616 Constant_41291" [id=616, type=Constant];
-"617 Constant_41290" [id=617, type=Constant];
-"618 Reshape_795" [id=618, type=Constant];
-"619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=619, type=FakeQuantize];
-"620 Constant_41288" [id=620, type=Constant];
-"621 Constant_41287" [id=621, type=Constant];
-"622 Constant_41286" [id=622, type=Constant];
-"623 Constant_41285" [id=623, type=Constant];
-"624 Reshape_743" [id=624, type=Constant];
-"625 Constant_41283" [id=625, type=Constant];
-"626 Constant_41282" [id=626, type=Constant];
-"627 Constant_41281" [id=627, type=Constant];
-"628 Constant_41280" [id=628, type=Constant];
-"629 Reshape_728" [id=629, type=Constant];
-"630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=630, type=FakeQuantize];
-"631 Constant_41278" [id=631, type=Constant];
-"632 Constant_41277" [id=632, type=Constant];
-"633 Constant_41276" [id=633, type=Constant];
-"634 Constant_41275" [id=634, type=Constant];
-"635 onnx^^Conv_592" [id=635, label="635 onnx::Conv_592", type=Constant];
-"636 Constant_41273" [id=636, type=Constant];
-"637 Constant_41272" [id=637, type=Constant];
-"638 Constant_41271" [id=638, type=Constant];
-"639 Constant_41270" [id=639, type=Constant];
-"640 Constant_41268" [id=640, type=Constant];
-"641 Constant_41267" [id=641, type=Constant];
-"642 Constant_41266" [id=642, type=Constant];
-"643 Constant_41265" [id=643, type=Constant];
-"644 Reshape_712" [id=644, type=Constant];
-"645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=645, type=FakeQuantize];
-"646 Constant_41263" [id=646, type=Constant];
-"647 Constant_41262" [id=647, type=Constant];
-"648 Constant_41261" [id=648, type=Constant];
-"649 Constant_41260" [id=649, type=Constant];
-"650 onnx^^Conv_589" [id=650, label="650 onnx::Conv_589", type=Constant];
-"651 Constant_41258" [id=651, type=Constant];
-"652 Constant_41257" [id=652, type=Constant];
-"653 Constant_41256" [id=653, type=Constant];
-"654 Constant_41255" [id=654, type=Constant];
-"655 Reshape_693" [id=655, type=Constant];
-"656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=656, type=FakeQuantize];
-"657 Constant_41253" [id=657, type=Constant];
-"658 Constant_41252" [id=658, type=Constant];
-"659 Constant_41251" [id=659, type=Constant];
-"660 Constant_41250" [id=660, type=Constant];
-"661 Reshape_641" [id=661, type=Constant];
-"662 Constant_41248" [id=662, type=Constant];
-"663 Constant_41247" [id=663, type=Constant];
-"664 Constant_41246" [id=664, type=Constant];
-"665 Constant_41245" [id=665, type=Constant];
-"666 Reshape_626" [id=666, type=Constant];
-"667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=667, type=FakeQuantize];
-"668 Constant_41243" [id=668, type=Constant];
-"669 Constant_41242" [id=669, type=Constant];
-"670 Constant_41241" [id=670, type=Constant];
-"671 Constant_41240" [id=671, type=Constant];
-"672 onnx^^Conv_583" [id=672, label="672 onnx::Conv_583", type=Constant];
-"673 Constant_41238" [id=673, type=Constant];
-"674 Constant_41237" [id=674, type=Constant];
-"675 Constant_41236" [id=675, type=Constant];
-"676 Constant_41235" [id=676, type=Constant];
-"677 Constant_41233" [id=677, type=Constant];
-"678 Constant_41232" [id=678, type=Constant];
-"679 Constant_41231" [id=679, type=Constant];
-"680 Constant_41230" [id=680, type=Constant];
-"681 Reshape_610" [id=681, type=Constant];
-"682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=682, type=FakeQuantize];
-"683 Constant_41228" [id=683, type=Constant];
-"684 Constant_41227" [id=684, type=Constant];
-"685 Constant_41226" [id=685, type=Constant];
-"686 Constant_41225" [id=686, type=Constant];
-"687 onnx^^Conv_580" [id=687, label="687 onnx::Conv_580", type=Constant];
-"688 Constant_41223" [id=688, type=Constant];
-"689 Constant_41222" [id=689, type=Constant];
-"690 Constant_41221" [id=690, type=Constant];
-"691 Constant_41220" [id=691, type=Constant];
-"692 Reshape_591" [id=692, type=Constant];
-"693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=693, type=FakeQuantize];
-"694 Constant_41218" [id=694, type=Constant];
-"695 Constant_41217" [id=695, type=Constant];
-"696 Constant_41216" [id=696, type=Constant];
-"697 Constant_41215" [id=697, type=Constant];
-"698 Reshape_539" [id=698, type=Constant];
-"699 Constant_41213" [id=699, type=Constant];
-"700 Constant_41212" [id=700, type=Constant];
-"701 Constant_41211" [id=701, type=Constant];
-"702 Constant_41210" [id=702, type=Constant];
-"703 Reshape_524" [id=703, type=Constant];
-"704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=704, type=FakeQuantize];
-"705 Constant_41208" [id=705, type=Constant];
-"706 Constant_41207" [id=706, type=Constant];
-"707 Constant_41206" [id=707, type=Constant];
-"708 Constant_41205" [id=708, type=Constant];
-"709 onnx^^Conv_574" [id=709, label="709 onnx::Conv_574", type=Constant];
-"710 Constant_41203" [id=710, type=Constant];
-"711 Constant_41202" [id=711, type=Constant];
-"712 Constant_41201" [id=712, type=Constant];
-"713 Constant_41200" [id=713, type=Constant];
-"714 Reshape_509" [id=714, type=Constant];
-"715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=715, type=FakeQuantize];
-"716 Constant_41198" [id=716, type=Constant];
-"717 Constant_41197" [id=717, type=Constant];
-"718 Constant_41196" [id=718, type=Constant];
-"719 Constant_41195" [id=719, type=Constant];
-"720 onnx^^Conv_571" [id=720, label="720 onnx::Conv_571", type=Constant];
-"721 Constant_41193" [id=721, type=Constant];
-"722 Constant_41192" [id=722, type=Constant];
-"723 Constant_41191" [id=723, type=Constant];
-"724 Constant_41190" [id=724, type=Constant];
-"725 Reshape_490" [id=725, type=Constant];
-"726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=726, type=FakeQuantize];
-"727 Constant_41188" [id=727, type=Constant];
-"728 Constant_41187" [id=728, type=Constant];
-"729 Constant_41186" [id=729, type=Constant];
-"730 Constant_41185" [id=730, type=Constant];
-"731 Reshape_438" [id=731, type=Constant];
-"732 Constant_41183" [id=732, type=Constant];
-"733 Constant_41182" [id=733, type=Constant];
-"734 Constant_41181" [id=734, type=Constant];
-"735 Constant_41180" [id=735, type=Constant];
-"736 Reshape_423" [id=736, type=Constant];
-"737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=737, type=FakeQuantize];
-"738 Constant_41178" [id=738, type=Constant];
-"739 Constant_41177" [id=739, type=Constant];
-"740 Constant_41176" [id=740, type=Constant];
-"741 Constant_41175" [id=741, type=Constant];
-"742 onnx^^Conv_565" [id=742, label="742 onnx::Conv_565", type=Constant];
-"743 Constant_41173" [id=743, type=Constant];
-"744 Constant_41172" [id=744, type=Constant];
-"745 Constant_41171" [id=745, type=Constant];
-"746 Constant_41170" [id=746, type=Constant];
-"747 Constant_41168" [id=747, type=Constant];
-"748 Constant_41167" [id=748, type=Constant];
-"749 Constant_41166" [id=749, type=Constant];
-"750 Constant_41165" [id=750, type=Constant];
-"751 Reshape_407" [id=751, type=Constant];
-"752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=752, type=FakeQuantize];
-"753 Constant_41163" [id=753, type=Constant];
-"754 Constant_41162" [id=754, type=Constant];
-"755 Constant_41161" [id=755, type=Constant];
-"756 Constant_41160" [id=756, type=Constant];
-"757 onnx^^Conv_562" [id=757, label="757 onnx::Conv_562", type=Constant];
-"758 Constant_41158" [id=758, type=Constant];
-"759 Constant_41157" [id=759, type=Constant];
-"760 Constant_41156" [id=760, type=Constant];
-"761 Constant_41155" [id=761, type=Constant];
-"762 Reshape_388" [id=762, type=Constant];
-"763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=763, type=FakeQuantize];
-"764 Constant_41153" [id=764, type=Constant];
-"765 Constant_41152" [id=765, type=Constant];
-"766 Constant_41151" [id=766, type=Constant];
-"767 Constant_41150" [id=767, type=Constant];
-"768 Reshape_336" [id=768, type=Constant];
-"769 Constant_41148" [id=769, type=Constant];
-"770 Constant_41147" [id=770, type=Constant];
-"771 Constant_41146" [id=771, type=Constant];
-"772 Constant_41145" [id=772, type=Constant];
-"773 Reshape_321" [id=773, type=Constant];
-"774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=774, type=FakeQuantize];
-"775 Constant_41143" [id=775, type=Constant];
-"776 Constant_41142" [id=776, type=Constant];
-"777 Constant_41141" [id=777, type=Constant];
-"778 Constant_41140" [id=778, type=Constant];
-"779 onnx^^Conv_556" [id=779, label="779 onnx::Conv_556", type=Constant];
-"780 Constant_41138" [id=780, type=Constant];
-"781 Constant_41137" [id=781, type=Constant];
-"782 Constant_41136" [id=782, type=Constant];
-"783 Constant_41135" [id=783, type=Constant];
-"784 Reshape_306" [id=784, type=Constant];
-"785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [id=785, type=FakeQuantize];
-"786 Constant_41133" [id=786, type=Constant];
-"787 Constant_41132" [id=787, type=Constant];
-"788 Constant_41131" [id=788, type=Constant];
-"789 Constant_41130" [id=789, type=Constant];
-"790 onnx^^Conv_553" [id=790, label="790 onnx::Conv_553", type=Constant];
-"791 Constant_41128" [id=791, type=Constant];
-"792 Constant_41127" [id=792, type=Constant];
-"793 Constant_41126" [id=793, type=Constant];
-"794 Constant_41125" [id=794, type=Constant];
-"795 Reshape_287" [id=795, type=Constant];
-"796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [id=796, type=FakeQuantize];
-"797 Constant_41123" [id=797, type=Constant];
-"798 Constant_41122" [id=798, type=Constant];
-"799 Constant_41121" [id=799, type=Constant];
-"800 Constant_41120" [id=800, type=Constant];
-"801 Reshape_235" [id=801, type=Constant];
-"802 Constant_41118" [id=802, type=Constant];
-"803 Constant_41117" [id=803, type=Constant];
-"804 Constant_41116" [id=804, type=Constant];
-"805 Constant_41115" [id=805, type=Constant];
-"806 Reshape_220" [id=806, type=Constant];
-"807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=807, type=FakeQuantize];
-"808 Constant_41113" [id=808, type=Constant];
-"809 Constant_41112" [id=809, type=Constant];
-"810 Constant_41111" [id=810, type=Constant];
-"811 Constant_41110" [id=811, type=Constant];
-"812 onnx^^Conv_547" [id=812, label="812 onnx::Conv_547", type=Constant];
-"813 Constant_41108" [id=813, type=Constant];
-"814 Constant_41107" [id=814, type=Constant];
-"815 Constant_41106" [id=815, type=Constant];
-"816 Constant_41105" [id=816, type=Constant];
-"817 Reshape_205" [id=817, type=Constant];
-"818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [id=818, type=FakeQuantize];
-"819 Constant_41103" [id=819, type=Constant];
-"820 Constant_41102" [id=820, type=Constant];
-"821 Constant_41101" [id=821, type=Constant];
-"822 Constant_41100" [id=822, type=Constant];
-"823 onnx^^Conv_544" [id=823, label="823 onnx::Conv_544", type=Constant];
-"824 Constant_41098" [id=824, type=Constant];
-"825 Constant_41097" [id=825, type=Constant];
-"826 Constant_41096" [id=826, type=Constant];
-"827 Constant_41095" [id=827, type=Constant];
-"828 Reshape_186" [id=828, type=Constant];
-"829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [id=829, type=FakeQuantize];
-"830 Constant_41093" [id=830, type=Constant];
-"831 Constant_41092" [id=831, type=Constant];
-"832 Constant_41091" [id=832, type=Constant];
-"833 Constant_41090" [id=833, type=Constant];
-"834 Reshape_134" [id=834, type=Constant];
-"835 Constant_41088" [id=835, type=Constant];
-"836 Constant_41087" [id=836, type=Constant];
-"837 Constant_41086" [id=837, type=Constant];
-"838 Constant_41085" [id=838, type=Constant];
-"839 Reshape_119" [id=839, type=Constant];
-"840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [id=840, type=FakeQuantize];
-"841 Constant_41083" [id=841, type=Constant];
-"842 Constant_41082" [id=842, type=Constant];
-"843 Constant_41081" [id=843, type=Constant];
-"844 Constant_41080" [id=844, type=Constant];
-"845 Gather_5168" [id=845, type=Constant];
-"846 Constant_41078" [id=846, type=Constant];
-"847 Constant_41077" [id=847, type=Constant];
-"848 Constant_41076" [id=848, type=Constant];
-"849 Constant_41075" [id=849, type=Constant];
-"850 Gather_5165" [id=850, type=Constant];
-"851 Gather_5162" [id=851, type=Constant];
-"0 data" -> "1 Multiply_5095" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_5095" -> "2 Divide_1885" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_1885" -> "3 Divide_1885/fq_output_0" [label="[1, 3, 224, 224]", style=solid];
-"3 Divide_1885/fq_output_0" -> "4 /features/features.0/features.0.0/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"4 /features/features.0/features.0.0/Conv/WithoutBiases" -> "5 /features/features.0/features.0.0/Conv" [label="[1, 32, 112, 112]", style=solid];
-"5 /features/features.0/features.0.0/Conv" -> "6 /features/features.0/features.0.2/Clip" [label="[1, 32, 112, 112]", style=solid];
-"6 /features/features.0/features.0.2/Clip" -> "7 /features/features.0/features.0.2/Clip/fq_output_0" [label="[1, 32, 112, 112]", style=solid];
-"7 /features/features.0/features.0.2/Clip/fq_output_0" -> "8 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 112, 112]", style=solid];
-"8 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "9 /features/features.1/conv/conv.0/conv.0.0/Conv" [label="[1, 32, 112, 112]", style=solid];
-"9 /features/features.1/conv/conv.0/conv.0.0/Conv" -> "10 /features/features.1/conv/conv.0/conv.0.2/Clip" [label="[1, 32, 112, 112]", style=solid];
-"10 /features/features.1/conv/conv.0/conv.0.2/Clip" -> "11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 32, 112, 112]", style=solid];
-"11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "12 /features/features.1/conv/conv.1/Conv/WithoutBiases" [label="[1, 32, 112, 112]", style=solid];
-"12 /features/features.1/conv/conv.1/Conv/WithoutBiases" -> "13 /features/features.1/conv/conv.1/Conv" [label="[1, 16, 112, 112]", style=solid];
-"13 /features/features.1/conv/conv.1/Conv" -> "14 /features/features.1/conv/conv.1/Conv/fq_output_0" [label="[1, 16, 112, 112]", style=solid];
-"14 /features/features.1/conv/conv.1/Conv/fq_output_0" -> "15 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 16, 112, 112]", style=solid];
-"15 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "16 /features/features.2/conv/conv.0/conv.0.0/Conv" [label="[1, 96, 112, 112]", style=solid];
-"16 /features/features.2/conv/conv.0/conv.0.0/Conv" -> "17 /features/features.2/conv/conv.0/conv.0.2/Clip" [label="[1, 96, 112, 112]", style=solid];
-"17 /features/features.2/conv/conv.0/conv.0.2/Clip" -> "18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 96, 112, 112]", style=solid];
-"18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "19 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 96, 112, 112]", style=solid];
-"19 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "20 /features/features.2/conv/conv.1/conv.1.0/Conv" [label="[1, 96, 56, 56]", style=solid];
-"20 /features/features.2/conv/conv.1/conv.1.0/Conv" -> "21 /features/features.2/conv/conv.1/conv.1.2/Clip" [label="[1, 96, 56, 56]", style=solid];
-"21 /features/features.2/conv/conv.1/conv.1.2/Clip" -> "22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 96, 56, 56]", style=solid];
-"22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "23 /features/features.2/conv/conv.2/Conv/WithoutBiases" [label="[1, 96, 56, 56]", style=solid];
-"23 /features/features.2/conv/conv.2/Conv/WithoutBiases" -> "24 /features/features.2/conv/conv.2/Conv" [label="[1, 24, 56, 56]", style=solid];
-"24 /features/features.2/conv/conv.2/Conv" -> "25 /features/features.2/conv/conv.2/Conv/fq_output_0" [label="[1, 24, 56, 56]", style=solid];
-"25 /features/features.2/conv/conv.2/Conv/fq_output_0" -> "26 /features/features.3/Add" [label="[1, 24, 56, 56]", style=solid];
-"25 /features/features.2/conv/conv.2/Conv/fq_output_0" -> "27 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 24, 56, 56]", style=solid];
-"26 /features/features.3/Add" -> "28 /features/features.3/Add/fq_output_0" [label="[1, 24, 56, 56]", style=solid];
-"27 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "29 /features/features.3/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"28 /features/features.3/Add/fq_output_0" -> "30 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 24, 56, 56]", style=solid];
-"29 /features/features.3/conv/conv.0/conv.0.0/Conv" -> "31 /features/features.3/conv/conv.0/conv.0.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"30 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "32 /features/features.4/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"31 /features/features.3/conv/conv.0/conv.0.2/Clip" -> "33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 56, 56]", style=solid];
-"32 /features/features.4/conv/conv.0/conv.0.0/Conv" -> "34 /features/features.4/conv/conv.0/conv.0.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "35 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"34 /features/features.4/conv/conv.0/conv.0.2/Clip" -> "36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 56, 56]", style=solid];
-"35 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "37 /features/features.3/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 56, 56]", style=solid];
-"36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "38 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"37 /features/features.3/conv/conv.1/conv.1.0/Conv" -> "39 /features/features.3/conv/conv.1/conv.1.2/Clip" [label="[1, 144, 56, 56]", style=solid];
-"38 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "40 /features/features.4/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 28, 28]", style=solid];
-"39 /features/features.3/conv/conv.1/conv.1.2/Clip" -> "41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 144, 56, 56]", style=solid];
-"40 /features/features.4/conv/conv.1/conv.1.0/Conv" -> "42 /features/features.4/conv/conv.1/conv.1.2/Clip" [label="[1, 144, 28, 28]", style=solid];
-"41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "43 /features/features.3/conv/conv.2/Conv/WithoutBiases" [label="[1, 144, 56, 56]", style=solid];
-"42 /features/features.4/conv/conv.1/conv.1.2/Clip" -> "44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 144, 28, 28]", style=solid];
-"43 /features/features.3/conv/conv.2/Conv/WithoutBiases" -> "45 /features/features.3/conv/conv.2/Conv" [label="[1, 24, 56, 56]", style=solid];
-"44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "46 /features/features.4/conv/conv.2/Conv/WithoutBiases" [label="[1, 144, 28, 28]", style=solid];
-"45 /features/features.3/conv/conv.2/Conv" -> "47 /features/features.3/conv/conv.2/Conv/fq_output_0" [label="[1, 24, 56, 56]", style=solid];
-"46 /features/features.4/conv/conv.2/Conv/WithoutBiases" -> "48 /features/features.4/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"47 /features/features.3/conv/conv.2/Conv/fq_output_0" -> "26 /features/features.3/Add" [label="[1, 24, 56, 56]", style=solid];
-"48 /features/features.4/conv/conv.2/Conv" -> "49 /features/features.4/conv/conv.2/Conv/fq_output_0" [label="[1, 32, 28, 28]", style=solid];
-"49 /features/features.4/conv/conv.2/Conv/fq_output_0" -> "50 /features/features.5/Add" [label="[1, 32, 28, 28]", style=solid];
-"49 /features/features.4/conv/conv.2/Conv/fq_output_0" -> "51 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"50 /features/features.5/Add" -> "52 /features/features.5/Add/fq_output_0" [label="[1, 32, 28, 28]", style=solid];
-"51 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "53 /features/features.5/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"52 /features/features.5/Add/fq_output_0" -> "54 /features/features.6/Add" [label="[1, 32, 28, 28]", style=solid];
-"52 /features/features.5/Add/fq_output_0" -> "55 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"53 /features/features.5/conv/conv.0/conv.0.0/Conv" -> "56 /features/features.5/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"54 /features/features.6/Add" -> "57 /features/features.6/Add/fq_output_0" [label="[1, 32, 28, 28]", style=solid];
-"55 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "58 /features/features.6/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"56 /features/features.5/conv/conv.0/conv.0.2/Clip" -> "59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 28, 28]", style=solid];
-"57 /features/features.6/Add/fq_output_0" -> "60 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 32, 28, 28]", style=solid];
-"58 /features/features.6/conv/conv.0/conv.0.0/Conv" -> "61 /features/features.6/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "62 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"60 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "63 /features/features.7/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"61 /features/features.6/conv/conv.0/conv.0.2/Clip" -> "64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 28, 28]", style=solid];
-"62 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "65 /features/features.5/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"63 /features/features.7/conv/conv.0/conv.0.0/Conv" -> "66 /features/features.7/conv/conv.0/conv.0.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "67 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"65 /features/features.5/conv/conv.1/conv.1.0/Conv" -> "68 /features/features.5/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"66 /features/features.7/conv/conv.0/conv.0.2/Clip" -> "69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 28, 28]", style=solid];
-"67 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "70 /features/features.6/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 28, 28]", style=solid];
-"68 /features/features.5/conv/conv.1/conv.1.2/Clip" -> "71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 192, 28, 28]", style=solid];
-"69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "72 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"70 /features/features.6/conv/conv.1/conv.1.0/Conv" -> "73 /features/features.6/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 28, 28]", style=solid];
-"71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "74 /features/features.5/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"72 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "75 /features/features.7/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 14, 14]", style=solid];
-"73 /features/features.6/conv/conv.1/conv.1.2/Clip" -> "76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 192, 28, 28]", style=solid];
-"74 /features/features.5/conv/conv.2/Conv/WithoutBiases" -> "77 /features/features.5/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"75 /features/features.7/conv/conv.1/conv.1.0/Conv" -> "78 /features/features.7/conv/conv.1/conv.1.2/Clip" [label="[1, 192, 14, 14]", style=solid];
-"76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "79 /features/features.6/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 28, 28]", style=solid];
-"77 /features/features.5/conv/conv.2/Conv" -> "80 /features/features.5/conv/conv.2/Conv/fq_output_0" [label="[1, 32, 28, 28]", style=solid];
-"78 /features/features.7/conv/conv.1/conv.1.2/Clip" -> "81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 192, 14, 14]", style=solid];
-"79 /features/features.6/conv/conv.2/Conv/WithoutBiases" -> "82 /features/features.6/conv/conv.2/Conv" [label="[1, 32, 28, 28]", style=solid];
-"80 /features/features.5/conv/conv.2/Conv/fq_output_0" -> "50 /features/features.5/Add" [label="[1, 32, 28, 28]", style=solid];
-"81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "83 /features/features.7/conv/conv.2/Conv/WithoutBiases" [label="[1, 192, 14, 14]", style=solid];
-"82 /features/features.6/conv/conv.2/Conv" -> "84 /features/features.6/conv/conv.2/Conv/fq_output_0" [label="[1, 32, 28, 28]", style=solid];
-"83 /features/features.7/conv/conv.2/Conv/WithoutBiases" -> "85 /features/features.7/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"84 /features/features.6/conv/conv.2/Conv/fq_output_0" -> "54 /features/features.6/Add" [label="[1, 32, 28, 28]", style=solid];
-"85 /features/features.7/conv/conv.2/Conv" -> "86 /features/features.7/conv/conv.2/Conv/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"86 /features/features.7/conv/conv.2/Conv/fq_output_0" -> "87 /features/features.8/Add" [label="[1, 64, 14, 14]", style=solid];
-"86 /features/features.7/conv/conv.2/Conv/fq_output_0" -> "88 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"87 /features/features.8/Add" -> "89 /features/features.8/Add/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"88 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "90 /features/features.8/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"89 /features/features.8/Add/fq_output_0" -> "91 /features/features.9/Add" [label="[1, 64, 14, 14]", style=solid];
-"89 /features/features.8/Add/fq_output_0" -> "92 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"90 /features/features.8/conv/conv.0/conv.0.0/Conv" -> "93 /features/features.8/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"91 /features/features.9/Add" -> "94 /features/features.9/Add/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"92 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "95 /features/features.9/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"93 /features/features.8/conv/conv.0/conv.0.2/Clip" -> "96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"94 /features/features.9/Add/fq_output_0" -> "97 /features/features.10/Add" [label="[1, 64, 14, 14]", style=solid];
-"94 /features/features.9/Add/fq_output_0" -> "98 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"95 /features/features.9/conv/conv.0/conv.0.0/Conv" -> "99 /features/features.9/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "100 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"97 /features/features.10/Add" -> "101 /features/features.10/Add/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"98 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "102 /features/features.10/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"99 /features/features.9/conv/conv.0/conv.0.2/Clip" -> "103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"100 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "104 /features/features.8/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"101 /features/features.10/Add/fq_output_0" -> "105 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 64, 14, 14]", style=solid];
-"102 /features/features.10/conv/conv.0/conv.0.0/Conv" -> "106 /features/features.10/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "107 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"104 /features/features.8/conv/conv.1/conv.1.0/Conv" -> "108 /features/features.8/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"105 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "109 /features/features.11/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"106 /features/features.10/conv/conv.0/conv.0.2/Clip" -> "110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"107 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "111 /features/features.9/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"108 /features/features.8/conv/conv.1/conv.1.2/Clip" -> "112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"109 /features/features.11/conv/conv.0/conv.0.0/Conv" -> "113 /features/features.11/conv/conv.0/conv.0.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "114 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"111 /features/features.9/conv/conv.1/conv.1.0/Conv" -> "115 /features/features.9/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "116 /features/features.8/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"113 /features/features.11/conv/conv.0/conv.0.2/Clip" -> "117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"114 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "118 /features/features.10/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"115 /features/features.9/conv/conv.1/conv.1.2/Clip" -> "119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"116 /features/features.8/conv/conv.2/Conv/WithoutBiases" -> "120 /features/features.8/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "121 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"118 /features/features.10/conv/conv.1/conv.1.0/Conv" -> "122 /features/features.10/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "123 /features/features.9/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"120 /features/features.8/conv/conv.2/Conv" -> "124 /features/features.8/conv/conv.2/Conv/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"121 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "125 /features/features.11/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 14, 14]", style=solid];
-"122 /features/features.10/conv/conv.1/conv.1.2/Clip" -> "126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"123 /features/features.9/conv/conv.2/Conv/WithoutBiases" -> "127 /features/features.9/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"124 /features/features.8/conv/conv.2/Conv/fq_output_0" -> "87 /features/features.8/Add" [label="[1, 64, 14, 14]", style=solid];
-"125 /features/features.11/conv/conv.1/conv.1.0/Conv" -> "128 /features/features.11/conv/conv.1/conv.1.2/Clip" [label="[1, 384, 14, 14]", style=solid];
-"126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "129 /features/features.10/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"127 /features/features.9/conv/conv.2/Conv" -> "130 /features/features.9/conv/conv.2/Conv/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"128 /features/features.11/conv/conv.1/conv.1.2/Clip" -> "131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 384, 14, 14]", style=solid];
-"129 /features/features.10/conv/conv.2/Conv/WithoutBiases" -> "132 /features/features.10/conv/conv.2/Conv" [label="[1, 64, 14, 14]", style=solid];
-"130 /features/features.9/conv/conv.2/Conv/fq_output_0" -> "91 /features/features.9/Add" [label="[1, 64, 14, 14]", style=solid];
-"131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "133 /features/features.11/conv/conv.2/Conv/WithoutBiases" [label="[1, 384, 14, 14]", style=solid];
-"132 /features/features.10/conv/conv.2/Conv" -> "134 /features/features.10/conv/conv.2/Conv/fq_output_0" [label="[1, 64, 14, 14]", style=solid];
-"133 /features/features.11/conv/conv.2/Conv/WithoutBiases" -> "135 /features/features.11/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"134 /features/features.10/conv/conv.2/Conv/fq_output_0" -> "97 /features/features.10/Add" [label="[1, 64, 14, 14]", style=solid];
-"135 /features/features.11/conv/conv.2/Conv" -> "136 /features/features.11/conv/conv.2/Conv/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"136 /features/features.11/conv/conv.2/Conv/fq_output_0" -> "137 /features/features.12/Add" [label="[1, 96, 14, 14]", style=solid];
-"136 /features/features.11/conv/conv.2/Conv/fq_output_0" -> "138 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"137 /features/features.12/Add" -> "139 /features/features.12/Add/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"138 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "140 /features/features.12/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"139 /features/features.12/Add/fq_output_0" -> "141 /features/features.13/Add" [label="[1, 96, 14, 14]", style=solid];
-"139 /features/features.12/Add/fq_output_0" -> "142 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"140 /features/features.12/conv/conv.0/conv.0.0/Conv" -> "143 /features/features.12/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"141 /features/features.13/Add" -> "144 /features/features.13/Add/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"142 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "145 /features/features.13/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"143 /features/features.12/conv/conv.0/conv.0.2/Clip" -> "146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 14, 14]", style=solid];
-"144 /features/features.13/Add/fq_output_0" -> "147 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 96, 14, 14]", style=solid];
-"145 /features/features.13/conv/conv.0/conv.0.0/Conv" -> "148 /features/features.13/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "149 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"147 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "150 /features/features.14/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"148 /features/features.13/conv/conv.0/conv.0.2/Clip" -> "151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 14, 14]", style=solid];
-"149 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "152 /features/features.12/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"150 /features/features.14/conv/conv.0/conv.0.0/Conv" -> "153 /features/features.14/conv/conv.0/conv.0.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "154 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"152 /features/features.12/conv/conv.1/conv.1.0/Conv" -> "155 /features/features.12/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"153 /features/features.14/conv/conv.0/conv.0.2/Clip" -> "156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 14, 14]", style=solid];
-"154 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "157 /features/features.13/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 14, 14]", style=solid];
-"155 /features/features.12/conv/conv.1/conv.1.2/Clip" -> "158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 576, 14, 14]", style=solid];
-"156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "159 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"157 /features/features.13/conv/conv.1/conv.1.0/Conv" -> "160 /features/features.13/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 14, 14]", style=solid];
-"158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "161 /features/features.12/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"159 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "162 /features/features.14/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 7, 7]", style=solid];
-"160 /features/features.13/conv/conv.1/conv.1.2/Clip" -> "163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 576, 14, 14]", style=solid];
-"161 /features/features.12/conv/conv.2/Conv/WithoutBiases" -> "164 /features/features.12/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"162 /features/features.14/conv/conv.1/conv.1.0/Conv" -> "165 /features/features.14/conv/conv.1/conv.1.2/Clip" [label="[1, 576, 7, 7]", style=solid];
-"163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "166 /features/features.13/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 14, 14]", style=solid];
-"164 /features/features.12/conv/conv.2/Conv" -> "167 /features/features.12/conv/conv.2/Conv/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"165 /features/features.14/conv/conv.1/conv.1.2/Clip" -> "168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"166 /features/features.13/conv/conv.2/Conv/WithoutBiases" -> "169 /features/features.13/conv/conv.2/Conv" [label="[1, 96, 14, 14]", style=solid];
-"167 /features/features.12/conv/conv.2/Conv/fq_output_0" -> "137 /features/features.12/Add" [label="[1, 96, 14, 14]", style=solid];
-"168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "170 /features/features.14/conv/conv.2/Conv/WithoutBiases" [label="[1, 576, 7, 7]", style=solid];
-"169 /features/features.13/conv/conv.2/Conv" -> "171 /features/features.13/conv/conv.2/Conv/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"170 /features/features.14/conv/conv.2/Conv/WithoutBiases" -> "172 /features/features.14/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"171 /features/features.13/conv/conv.2/Conv/fq_output_0" -> "141 /features/features.13/Add" [label="[1, 96, 14, 14]", style=solid];
-"172 /features/features.14/conv/conv.2/Conv" -> "173 /features/features.14/conv/conv.2/Conv/fq_output_0" [label="[1, 160, 7, 7]", style=solid];
-"173 /features/features.14/conv/conv.2/Conv/fq_output_0" -> "174 /features/features.15/Add" [label="[1, 160, 7, 7]", style=solid];
-"173 /features/features.14/conv/conv.2/Conv/fq_output_0" -> "175 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"174 /features/features.15/Add" -> "176 /features/features.15/Add/fq_output_0" [label="[1, 160, 7, 7]", style=solid];
-"175 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "177 /features/features.15/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"176 /features/features.15/Add/fq_output_0" -> "178 /features/features.16/Add" [label="[1, 160, 7, 7]", style=solid];
-"176 /features/features.15/Add/fq_output_0" -> "179 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"177 /features/features.15/conv/conv.0/conv.0.0/Conv" -> "180 /features/features.15/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"178 /features/features.16/Add" -> "181 /features/features.16/Add/fq_output_0" [label="[1, 160, 7, 7]", style=solid];
-"179 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "182 /features/features.16/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"180 /features/features.15/conv/conv.0/conv.0.2/Clip" -> "183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"181 /features/features.16/Add/fq_output_0" -> "184 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[1, 160, 7, 7]", style=solid];
-"182 /features/features.16/conv/conv.0/conv.0.0/Conv" -> "185 /features/features.16/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "186 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"184 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" -> "187 /features/features.17/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"185 /features/features.16/conv/conv.0/conv.0.2/Clip" -> "188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"186 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "189 /features/features.15/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"187 /features/features.17/conv/conv.0/conv.0.0/Conv" -> "190 /features/features.17/conv/conv.0/conv.0.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "191 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"189 /features/features.15/conv/conv.1/conv.1.0/Conv" -> "192 /features/features.15/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"190 /features/features.17/conv/conv.0/conv.0.2/Clip" -> "193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"191 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "194 /features/features.16/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"192 /features/features.15/conv/conv.1/conv.1.2/Clip" -> "195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" -> "196 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"194 /features/features.16/conv/conv.1/conv.1.0/Conv" -> "197 /features/features.16/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "198 /features/features.15/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"196 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" -> "199 /features/features.17/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 7, 7]", style=solid];
-"197 /features/features.16/conv/conv.1/conv.1.2/Clip" -> "200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"198 /features/features.15/conv/conv.2/Conv/WithoutBiases" -> "201 /features/features.15/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"199 /features/features.17/conv/conv.1/conv.1.0/Conv" -> "202 /features/features.17/conv/conv.1/conv.1.2/Clip" [label="[1, 960, 7, 7]", style=solid];
-"200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "203 /features/features.16/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"201 /features/features.15/conv/conv.2/Conv" -> "204 /features/features.15/conv/conv.2/Conv/fq_output_0" [label="[1, 160, 7, 7]", style=solid];
-"202 /features/features.17/conv/conv.1/conv.1.2/Clip" -> "205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[1, 960, 7, 7]", style=solid];
-"203 /features/features.16/conv/conv.2/Conv/WithoutBiases" -> "206 /features/features.16/conv/conv.2/Conv" [label="[1, 160, 7, 7]", style=solid];
-"204 /features/features.15/conv/conv.2/Conv/fq_output_0" -> "174 /features/features.15/Add" [label="[1, 160, 7, 7]", style=solid];
-"205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" -> "207 /features/features.17/conv/conv.2/Conv/WithoutBiases" [label="[1, 960, 7, 7]", style=solid];
-"206 /features/features.16/conv/conv.2/Conv" -> "208 /features/features.16/conv/conv.2/Conv/fq_output_0" [label="[1, 160, 7, 7]", style=solid];
-"207 /features/features.17/conv/conv.2/Conv/WithoutBiases" -> "209 /features/features.17/conv/conv.2/Conv" [label="[1, 320, 7, 7]", style=solid];
-"208 /features/features.16/conv/conv.2/Conv/fq_output_0" -> "178 /features/features.16/Add" [label="[1, 160, 7, 7]", style=solid];
-"209 /features/features.17/conv/conv.2/Conv" -> "210 /features/features.17/conv/conv.2/Conv/fq_output_0" [label="[1, 320, 7, 7]", style=solid];
-"210 /features/features.17/conv/conv.2/Conv/fq_output_0" -> "211 /features/features.18/features.18.0/Conv/WithoutBiases" [label="[1, 320, 7, 7]", style=solid];
-"211 /features/features.18/features.18.0/Conv/WithoutBiases" -> "212 /features/features.18/features.18.0/Conv" [label="[1, 1280, 7, 7]", style=solid];
-"212 /features/features.18/features.18.0/Conv" -> "213 /features/features.18/features.18.2/Clip" [label="[1, 1280, 7, 7]", style=solid];
-"213 /features/features.18/features.18.2/Clip" -> "214 /features/features.18/features.18.2/Clip/fq_output_0" [label="[1, 1280, 7, 7]", style=solid];
-"214 /features/features.18/features.18.2/Clip/fq_output_0" -> "215 /GlobalAveragePool" [label="[1, 1280, 7, 7]", style=solid];
-"215 /GlobalAveragePool" -> "216 /GlobalAveragePool/fq_output_0" [label="[1, 1280, 1, 1]", style=solid];
-"216 /GlobalAveragePool/fq_output_0" -> "217 /Flatten" [label="[1, 1280, 1, 1]", style=solid];
-"217 /Flatten" -> "218 /classifier/classifier.1/Gemm/WithoutBiases" [label="[1, 1280]", style=solid];
-"218 /classifier/classifier.1/Gemm/WithoutBiases" -> "219 prob" [label="[1, 1000]", style=solid];
-"219 prob" -> "220 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"221 Constant_5169" -> "219 prob" [label="[1, 1000]", style=solid];
-"222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" -> "218 /classifier/classifier.1/Gemm/WithoutBiases" [label="[1000, 1280]", style=solid];
-"223 Constant_41658" -> "222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"224 Constant_41657" -> "222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"225 Constant_41656" -> "222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"226 Constant_41655" -> "222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"227 classifier.1.weight" -> "222 /classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1280]", style=solid];
-"228 Constant_1864" -> "217 /Flatten" [label="[2]", style=dashed];
-"229 Constant_41653" -> "216 /GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"230 Constant_41652" -> "216 /GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"231 Constant_41651" -> "216 /GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"232 Constant_41650" -> "216 /GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"233 Range_1860" -> "215 /GlobalAveragePool" [label="[2]", style=dashed];
-"234 Constant_41648" -> "214 /features/features.18/features.18.2/Clip/fq_output_0" [label="[]", style=solid];
-"235 Constant_41647" -> "214 /features/features.18/features.18.2/Clip/fq_output_0" [label="[]", style=solid];
-"236 Constant_41646" -> "214 /features/features.18/features.18.2/Clip/fq_output_0" [label="[]", style=solid];
-"237 Constant_41645" -> "214 /features/features.18/features.18.2/Clip/fq_output_0" [label="[]", style=solid];
-"238 Reshape_1846" -> "212 /features/features.18/features.18.0/Conv" [label="[1, 1280, 1, 1]", style=solid];
-"239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" -> "211 /features/features.18/features.18.0/Conv/WithoutBiases" [label="[1280, 320, 1, 1]", style=solid];
-"240 Constant_41643" -> "239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [label="[1280, 1, 1, 1]", style=solid];
-"241 Constant_41642" -> "239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [label="[1280, 1, 1, 1]", style=solid];
-"242 Constant_41641" -> "239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [label="[1280, 1, 1, 1]", style=solid];
-"243 Constant_41640" -> "239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [label="[1280, 1, 1, 1]", style=solid];
-"244 onnx^^Conv_691" -> "239 /features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1" [label="[1280, 320, 1, 1]", style=solid];
-"245 Constant_41638" -> "210 /features/features.17/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"246 Constant_41637" -> "210 /features/features.17/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"247 Constant_41636" -> "210 /features/features.17/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"248 Constant_41635" -> "210 /features/features.17/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"249 Reshape_1831" -> "209 /features/features.17/conv/conv.2/Conv" [label="[1, 320, 1, 1]", style=solid];
-"250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "207 /features/features.17/conv/conv.2/Conv/WithoutBiases" [label="[320, 960, 1, 1]", style=solid];
-"251 Constant_41633" -> "250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[320, 1, 1, 1]", style=solid];
-"252 Constant_41632" -> "250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[320, 1, 1, 1]", style=solid];
-"253 Constant_41631" -> "250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[320, 1, 1, 1]", style=solid];
-"254 Constant_41630" -> "250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[320, 1, 1, 1]", style=solid];
-"255 onnx^^Conv_688" -> "250 /features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[320, 960, 1, 1]", style=solid];
-"256 Constant_41628" -> "205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"257 Constant_41627" -> "205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"258 Constant_41626" -> "205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"259 Constant_41625" -> "205 /features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"260 Reshape_1812" -> "199 /features/features.17/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "196 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"262 Constant_41623" -> "261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"263 Constant_41622" -> "261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"264 Constant_41621" -> "261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"265 Constant_41620" -> "261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"266 Reshape_1760" -> "261 /features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 3, 3]", style=solid];
-"267 Constant_41618" -> "193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"268 Constant_41617" -> "193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"269 Constant_41616" -> "193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"270 Constant_41615" -> "193 /features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"271 Reshape_1745" -> "187 /features/features.17/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "184 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"273 Constant_41613" -> "272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"274 Constant_41612" -> "272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"275 Constant_41611" -> "272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"276 Constant_41610" -> "272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"277 onnx^^Conv_682" -> "272 /features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 160, 1, 1]", style=solid];
-"278 Constant_41608" -> "181 /features/features.16/Add/fq_output_0" [label="[]", style=solid];
-"279 Constant_41607" -> "181 /features/features.16/Add/fq_output_0" [label="[]", style=solid];
-"280 Constant_41606" -> "181 /features/features.16/Add/fq_output_0" [label="[]", style=solid];
-"281 Constant_41605" -> "181 /features/features.16/Add/fq_output_0" [label="[]", style=solid];
-"282 Constant_41603" -> "208 /features/features.16/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"283 Constant_41602" -> "208 /features/features.16/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"284 Constant_41601" -> "208 /features/features.16/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"285 Constant_41600" -> "208 /features/features.16/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"286 Reshape_1729" -> "206 /features/features.16/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "203 /features/features.16/conv/conv.2/Conv/WithoutBiases" [label="[160, 960, 1, 1]", style=solid];
-"288 Constant_41598" -> "287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"289 Constant_41597" -> "287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"290 Constant_41596" -> "287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"291 Constant_41595" -> "287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"292 onnx^^Conv_679" -> "287 /features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 960, 1, 1]", style=solid];
-"293 Constant_41593" -> "200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"294 Constant_41592" -> "200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"295 Constant_41591" -> "200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"296 Constant_41590" -> "200 /features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"297 Reshape_1710" -> "194 /features/features.16/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "191 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"299 Constant_41588" -> "298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"300 Constant_41587" -> "298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"301 Constant_41586" -> "298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"302 Constant_41585" -> "298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"303 Reshape_1658" -> "298 /features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 3, 3]", style=solid];
-"304 Constant_41583" -> "188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"305 Constant_41582" -> "188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"306 Constant_41581" -> "188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"307 Constant_41580" -> "188 /features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"308 Reshape_1643" -> "182 /features/features.16/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "179 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"310 Constant_41578" -> "309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"311 Constant_41577" -> "309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"312 Constant_41576" -> "309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"313 Constant_41575" -> "309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"314 onnx^^Conv_673" -> "309 /features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 160, 1, 1]", style=solid];
-"315 Constant_41573" -> "176 /features/features.15/Add/fq_output_0" [label="[]", style=solid];
-"316 Constant_41572" -> "176 /features/features.15/Add/fq_output_0" [label="[]", style=solid];
-"317 Constant_41571" -> "176 /features/features.15/Add/fq_output_0" [label="[]", style=solid];
-"318 Constant_41570" -> "176 /features/features.15/Add/fq_output_0" [label="[]", style=solid];
-"319 Constant_41568" -> "204 /features/features.15/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"320 Constant_41567" -> "204 /features/features.15/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"321 Constant_41566" -> "204 /features/features.15/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"322 Constant_41565" -> "204 /features/features.15/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"323 Reshape_1627" -> "201 /features/features.15/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "198 /features/features.15/conv/conv.2/Conv/WithoutBiases" [label="[160, 960, 1, 1]", style=solid];
-"325 Constant_41563" -> "324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"326 Constant_41562" -> "324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"327 Constant_41561" -> "324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"328 Constant_41560" -> "324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"329 onnx^^Conv_670" -> "324 /features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 960, 1, 1]", style=solid];
-"330 Constant_41558" -> "195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"331 Constant_41557" -> "195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"332 Constant_41556" -> "195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"333 Constant_41555" -> "195 /features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"334 Reshape_1608" -> "189 /features/features.15/conv/conv.1/conv.1.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "186 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[960, 1, 1, 3, 3]", style=solid];
-"336 Constant_41553" -> "335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"337 Constant_41552" -> "335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"338 Constant_41551" -> "335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"339 Constant_41550" -> "335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1, 1]", style=solid];
-"340 Reshape_1556" -> "335 /features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 3, 3]", style=solid];
-"341 Constant_41548" -> "183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"342 Constant_41547" -> "183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"343 Constant_41546" -> "183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"344 Constant_41545" -> "183 /features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 960, 1, 1]", style=solid];
-"345 Reshape_1541" -> "177 /features/features.15/conv/conv.0/conv.0.0/Conv" [label="[1, 960, 1, 1]", style=solid];
-"346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "175 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[960, 160, 1, 1]", style=solid];
-"347 Constant_41543" -> "346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"348 Constant_41542" -> "346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"349 Constant_41541" -> "346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"350 Constant_41540" -> "346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 1, 1, 1]", style=solid];
-"351 onnx^^Conv_664" -> "346 /features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[960, 160, 1, 1]", style=solid];
-"352 Constant_41538" -> "173 /features/features.14/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"353 Constant_41537" -> "173 /features/features.14/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"354 Constant_41536" -> "173 /features/features.14/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"355 Constant_41535" -> "173 /features/features.14/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"356 Reshape_1526" -> "172 /features/features.14/conv/conv.2/Conv" [label="[1, 160, 1, 1]", style=solid];
-"357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "170 /features/features.14/conv/conv.2/Conv/WithoutBiases" [label="[160, 576, 1, 1]", style=solid];
-"358 Constant_41533" -> "357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"359 Constant_41532" -> "357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"360 Constant_41531" -> "357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"361 Constant_41530" -> "357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 1, 1, 1]", style=solid];
-"362 onnx^^Conv_661" -> "357 /features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[160, 576, 1, 1]", style=solid];
-"363 Constant_41528" -> "168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"364 Constant_41527" -> "168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"365 Constant_41526" -> "168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"366 Constant_41525" -> "168 /features/features.14/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"367 Reshape_1507" -> "162 /features/features.14/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "159 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"369 Constant_41523" -> "368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"370 Constant_41522" -> "368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"371 Constant_41521" -> "368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"372 Constant_41520" -> "368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"373 Reshape_1455" -> "368 /features/features.14/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 3, 3]", style=solid];
-"374 Constant_41518" -> "156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"375 Constant_41517" -> "156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"376 Constant_41516" -> "156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"377 Constant_41515" -> "156 /features/features.14/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"378 Reshape_1440" -> "150 /features/features.14/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "147 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"380 Constant_41513" -> "379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"381 Constant_41512" -> "379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"382 Constant_41511" -> "379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"383 Constant_41510" -> "379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"384 onnx^^Conv_655" -> "379 /features/features.14/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"385 Constant_41508" -> "144 /features/features.13/Add/fq_output_0" [label="[]", style=solid];
-"386 Constant_41507" -> "144 /features/features.13/Add/fq_output_0" [label="[]", style=solid];
-"387 Constant_41506" -> "144 /features/features.13/Add/fq_output_0" [label="[]", style=solid];
-"388 Constant_41505" -> "144 /features/features.13/Add/fq_output_0" [label="[]", style=solid];
-"389 Constant_41503" -> "171 /features/features.13/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"390 Constant_41502" -> "171 /features/features.13/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"391 Constant_41501" -> "171 /features/features.13/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"392 Constant_41500" -> "171 /features/features.13/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"393 Reshape_1424" -> "169 /features/features.13/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "166 /features/features.13/conv/conv.2/Conv/WithoutBiases" [label="[96, 576, 1, 1]", style=solid];
-"395 Constant_41498" -> "394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"396 Constant_41497" -> "394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"397 Constant_41496" -> "394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"398 Constant_41495" -> "394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"399 onnx^^Conv_652" -> "394 /features/features.13/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 576, 1, 1]", style=solid];
-"400 Constant_41493" -> "163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"401 Constant_41492" -> "163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"402 Constant_41491" -> "163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"403 Constant_41490" -> "163 /features/features.13/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"404 Reshape_1405" -> "157 /features/features.13/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "154 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"406 Constant_41488" -> "405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"407 Constant_41487" -> "405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"408 Constant_41486" -> "405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"409 Constant_41485" -> "405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"410 Reshape_1353" -> "405 /features/features.13/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 3, 3]", style=solid];
-"411 Constant_41483" -> "151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"412 Constant_41482" -> "151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"413 Constant_41481" -> "151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"414 Constant_41480" -> "151 /features/features.13/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"415 Reshape_1338" -> "145 /features/features.13/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "142 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"417 Constant_41478" -> "416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"418 Constant_41477" -> "416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"419 Constant_41476" -> "416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"420 Constant_41475" -> "416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"421 onnx^^Conv_646" -> "416 /features/features.13/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"422 Constant_41473" -> "139 /features/features.12/Add/fq_output_0" [label="[]", style=solid];
-"423 Constant_41472" -> "139 /features/features.12/Add/fq_output_0" [label="[]", style=solid];
-"424 Constant_41471" -> "139 /features/features.12/Add/fq_output_0" [label="[]", style=solid];
-"425 Constant_41470" -> "139 /features/features.12/Add/fq_output_0" [label="[]", style=solid];
-"426 Constant_41468" -> "167 /features/features.12/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"427 Constant_41467" -> "167 /features/features.12/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"428 Constant_41466" -> "167 /features/features.12/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"429 Constant_41465" -> "167 /features/features.12/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"430 Reshape_1322" -> "164 /features/features.12/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "161 /features/features.12/conv/conv.2/Conv/WithoutBiases" [label="[96, 576, 1, 1]", style=solid];
-"432 Constant_41463" -> "431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"433 Constant_41462" -> "431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"434 Constant_41461" -> "431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"435 Constant_41460" -> "431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"436 onnx^^Conv_643" -> "431 /features/features.12/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 576, 1, 1]", style=solid];
-"437 Constant_41458" -> "158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"438 Constant_41457" -> "158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"439 Constant_41456" -> "158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"440 Constant_41455" -> "158 /features/features.12/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"441 Reshape_1303" -> "152 /features/features.12/conv/conv.1/conv.1.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "149 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[576, 1, 1, 3, 3]", style=solid];
-"443 Constant_41453" -> "442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"444 Constant_41452" -> "442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"445 Constant_41451" -> "442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"446 Constant_41450" -> "442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"447 Reshape_1251" -> "442 /features/features.12/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 3, 3]", style=solid];
-"448 Constant_41448" -> "146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"449 Constant_41447" -> "146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"450 Constant_41446" -> "146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"451 Constant_41445" -> "146 /features/features.12/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"452 Reshape_1236" -> "140 /features/features.12/conv/conv.0/conv.0.0/Conv" [label="[1, 576, 1, 1]", style=solid];
-"453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "138 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[576, 96, 1, 1]", style=solid];
-"454 Constant_41443" -> "453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"455 Constant_41442" -> "453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"456 Constant_41441" -> "453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"457 Constant_41440" -> "453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"458 onnx^^Conv_637" -> "453 /features/features.12/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"459 Constant_41438" -> "136 /features/features.11/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"460 Constant_41437" -> "136 /features/features.11/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"461 Constant_41436" -> "136 /features/features.11/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"462 Constant_41435" -> "136 /features/features.11/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"463 Reshape_1221" -> "135 /features/features.11/conv/conv.2/Conv" [label="[1, 96, 1, 1]", style=solid];
-"464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "133 /features/features.11/conv/conv.2/Conv/WithoutBiases" [label="[96, 384, 1, 1]", style=solid];
-"465 Constant_41433" -> "464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"466 Constant_41432" -> "464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"467 Constant_41431" -> "464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"468 Constant_41430" -> "464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"469 onnx^^Conv_634" -> "464 /features/features.11/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[96, 384, 1, 1]", style=solid];
-"470 Constant_41428" -> "131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"471 Constant_41427" -> "131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"472 Constant_41426" -> "131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"473 Constant_41425" -> "131 /features/features.11/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"474 Reshape_1202" -> "125 /features/features.11/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "121 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"476 Constant_41423" -> "475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"477 Constant_41422" -> "475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"478 Constant_41421" -> "475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"479 Constant_41420" -> "475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"480 Reshape_1150" -> "475 /features/features.11/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 3, 3]", style=solid];
-"481 Constant_41418" -> "117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"482 Constant_41417" -> "117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"483 Constant_41416" -> "117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"484 Constant_41415" -> "117 /features/features.11/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"485 Reshape_1135" -> "109 /features/features.11/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "105 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"487 Constant_41413" -> "486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"488 Constant_41412" -> "486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"489 Constant_41411" -> "486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"490 Constant_41410" -> "486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"491 onnx^^Conv_628" -> "486 /features/features.11/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 64, 1, 1]", style=solid];
-"492 Constant_41408" -> "101 /features/features.10/Add/fq_output_0" [label="[]", style=solid];
-"493 Constant_41407" -> "101 /features/features.10/Add/fq_output_0" [label="[]", style=solid];
-"494 Constant_41406" -> "101 /features/features.10/Add/fq_output_0" [label="[]", style=solid];
-"495 Constant_41405" -> "101 /features/features.10/Add/fq_output_0" [label="[]", style=solid];
-"496 Constant_41403" -> "134 /features/features.10/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"497 Constant_41402" -> "134 /features/features.10/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"498 Constant_41401" -> "134 /features/features.10/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"499 Constant_41400" -> "134 /features/features.10/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"500 Reshape_1119" -> "132 /features/features.10/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "129 /features/features.10/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"502 Constant_41398" -> "501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"503 Constant_41397" -> "501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"504 Constant_41396" -> "501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"505 Constant_41395" -> "501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"506 onnx^^Conv_625" -> "501 /features/features.10/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 384, 1, 1]", style=solid];
-"507 Constant_41393" -> "126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"508 Constant_41392" -> "126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"509 Constant_41391" -> "126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"510 Constant_41390" -> "126 /features/features.10/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"511 Reshape_1100" -> "118 /features/features.10/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "114 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"513 Constant_41388" -> "512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"514 Constant_41387" -> "512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"515 Constant_41386" -> "512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"516 Constant_41385" -> "512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"517 Reshape_1048" -> "512 /features/features.10/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 3, 3]", style=solid];
-"518 Constant_41383" -> "110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"519 Constant_41382" -> "110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"520 Constant_41381" -> "110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"521 Constant_41380" -> "110 /features/features.10/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"522 Reshape_1033" -> "102 /features/features.10/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "98 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"524 Constant_41378" -> "523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"525 Constant_41377" -> "523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"526 Constant_41376" -> "523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"527 Constant_41375" -> "523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"528 onnx^^Conv_619" -> "523 /features/features.10/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 64, 1, 1]", style=solid];
-"529 Constant_41373" -> "94 /features/features.9/Add/fq_output_0" [label="[]", style=solid];
-"530 Constant_41372" -> "94 /features/features.9/Add/fq_output_0" [label="[]", style=solid];
-"531 Constant_41371" -> "94 /features/features.9/Add/fq_output_0" [label="[]", style=solid];
-"532 Constant_41370" -> "94 /features/features.9/Add/fq_output_0" [label="[]", style=solid];
-"533 Constant_41368" -> "130 /features/features.9/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"534 Constant_41367" -> "130 /features/features.9/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"535 Constant_41366" -> "130 /features/features.9/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"536 Constant_41365" -> "130 /features/features.9/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"537 Reshape_1017" -> "127 /features/features.9/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "123 /features/features.9/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"539 Constant_41363" -> "538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"540 Constant_41362" -> "538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"541 Constant_41361" -> "538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"542 Constant_41360" -> "538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"543 onnx^^Conv_616" -> "538 /features/features.9/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 384, 1, 1]", style=solid];
-"544 Constant_41358" -> "119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"545 Constant_41357" -> "119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"546 Constant_41356" -> "119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"547 Constant_41355" -> "119 /features/features.9/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"548 Reshape_998" -> "111 /features/features.9/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "107 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"550 Constant_41353" -> "549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"551 Constant_41352" -> "549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"552 Constant_41351" -> "549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"553 Constant_41350" -> "549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"554 Reshape_946" -> "549 /features/features.9/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 3, 3]", style=solid];
-"555 Constant_41348" -> "103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"556 Constant_41347" -> "103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"557 Constant_41346" -> "103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"558 Constant_41345" -> "103 /features/features.9/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"559 Reshape_931" -> "95 /features/features.9/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "92 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"561 Constant_41343" -> "560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"562 Constant_41342" -> "560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"563 Constant_41341" -> "560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"564 Constant_41340" -> "560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"565 onnx^^Conv_610" -> "560 /features/features.9/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 64, 1, 1]", style=solid];
-"566 Constant_41338" -> "89 /features/features.8/Add/fq_output_0" [label="[]", style=solid];
-"567 Constant_41337" -> "89 /features/features.8/Add/fq_output_0" [label="[]", style=solid];
-"568 Constant_41336" -> "89 /features/features.8/Add/fq_output_0" [label="[]", style=solid];
-"569 Constant_41335" -> "89 /features/features.8/Add/fq_output_0" [label="[]", style=solid];
-"570 Constant_41333" -> "124 /features/features.8/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"571 Constant_41332" -> "124 /features/features.8/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"572 Constant_41331" -> "124 /features/features.8/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"573 Constant_41330" -> "124 /features/features.8/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"574 Reshape_915" -> "120 /features/features.8/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "116 /features/features.8/conv/conv.2/Conv/WithoutBiases" [label="[64, 384, 1, 1]", style=solid];
-"576 Constant_41328" -> "575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"577 Constant_41327" -> "575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"578 Constant_41326" -> "575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"579 Constant_41325" -> "575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"580 onnx^^Conv_607" -> "575 /features/features.8/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 384, 1, 1]", style=solid];
-"581 Constant_41323" -> "112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"582 Constant_41322" -> "112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"583 Constant_41321" -> "112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"584 Constant_41320" -> "112 /features/features.8/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"585 Reshape_896" -> "104 /features/features.8/conv/conv.1/conv.1.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "100 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[384, 1, 1, 3, 3]", style=solid];
-"587 Constant_41318" -> "586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"588 Constant_41317" -> "586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"589 Constant_41316" -> "586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"590 Constant_41315" -> "586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1, 1]", style=solid];
-"591 Reshape_844" -> "586 /features/features.8/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 3, 3]", style=solid];
-"592 Constant_41313" -> "96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"593 Constant_41312" -> "96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"594 Constant_41311" -> "96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"595 Constant_41310" -> "96 /features/features.8/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 384, 1, 1]", style=solid];
-"596 Reshape_829" -> "90 /features/features.8/conv/conv.0/conv.0.0/Conv" [label="[1, 384, 1, 1]", style=solid];
-"597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "88 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[384, 64, 1, 1]", style=solid];
-"598 Constant_41308" -> "597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"599 Constant_41307" -> "597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"600 Constant_41306" -> "597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"601 Constant_41305" -> "597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 1, 1, 1]", style=solid];
-"602 onnx^^Conv_601" -> "597 /features/features.8/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[384, 64, 1, 1]", style=solid];
-"603 Constant_41303" -> "86 /features/features.7/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"604 Constant_41302" -> "86 /features/features.7/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"605 Constant_41301" -> "86 /features/features.7/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"606 Constant_41300" -> "86 /features/features.7/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"607 Reshape_814" -> "85 /features/features.7/conv/conv.2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "83 /features/features.7/conv/conv.2/Conv/WithoutBiases" [label="[64, 192, 1, 1]", style=solid];
-"609 Constant_41298" -> "608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"610 Constant_41297" -> "608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"611 Constant_41296" -> "608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"612 Constant_41295" -> "608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"613 onnx^^Conv_598" -> "608 /features/features.7/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[64, 192, 1, 1]", style=solid];
-"614 Constant_41293" -> "81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"615 Constant_41292" -> "81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"616 Constant_41291" -> "81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"617 Constant_41290" -> "81 /features/features.7/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"618 Reshape_795" -> "75 /features/features.7/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "72 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"620 Constant_41288" -> "619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"621 Constant_41287" -> "619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"622 Constant_41286" -> "619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"623 Constant_41285" -> "619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"624 Reshape_743" -> "619 /features/features.7/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 3, 3]", style=solid];
-"625 Constant_41283" -> "69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"626 Constant_41282" -> "69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"627 Constant_41281" -> "69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"628 Constant_41280" -> "69 /features/features.7/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"629 Reshape_728" -> "63 /features/features.7/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "60 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"631 Constant_41278" -> "630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"632 Constant_41277" -> "630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"633 Constant_41276" -> "630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"634 Constant_41275" -> "630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"635 onnx^^Conv_592" -> "630 /features/features.7/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 32, 1, 1]", style=solid];
-"636 Constant_41273" -> "57 /features/features.6/Add/fq_output_0" [label="[]", style=solid];
-"637 Constant_41272" -> "57 /features/features.6/Add/fq_output_0" [label="[]", style=solid];
-"638 Constant_41271" -> "57 /features/features.6/Add/fq_output_0" [label="[]", style=solid];
-"639 Constant_41270" -> "57 /features/features.6/Add/fq_output_0" [label="[]", style=solid];
-"640 Constant_41268" -> "84 /features/features.6/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"641 Constant_41267" -> "84 /features/features.6/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"642 Constant_41266" -> "84 /features/features.6/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"643 Constant_41265" -> "84 /features/features.6/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"644 Reshape_712" -> "82 /features/features.6/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "79 /features/features.6/conv/conv.2/Conv/WithoutBiases" [label="[32, 192, 1, 1]", style=solid];
-"646 Constant_41263" -> "645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"647 Constant_41262" -> "645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"648 Constant_41261" -> "645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"649 Constant_41260" -> "645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"650 onnx^^Conv_589" -> "645 /features/features.6/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 192, 1, 1]", style=solid];
-"651 Constant_41258" -> "76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"652 Constant_41257" -> "76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"653 Constant_41256" -> "76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"654 Constant_41255" -> "76 /features/features.6/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"655 Reshape_693" -> "70 /features/features.6/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "67 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"657 Constant_41253" -> "656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"658 Constant_41252" -> "656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"659 Constant_41251" -> "656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"660 Constant_41250" -> "656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"661 Reshape_641" -> "656 /features/features.6/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 3, 3]", style=solid];
-"662 Constant_41248" -> "64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"663 Constant_41247" -> "64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"664 Constant_41246" -> "64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"665 Constant_41245" -> "64 /features/features.6/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"666 Reshape_626" -> "58 /features/features.6/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "55 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"668 Constant_41243" -> "667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"669 Constant_41242" -> "667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"670 Constant_41241" -> "667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"671 Constant_41240" -> "667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"672 onnx^^Conv_583" -> "667 /features/features.6/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 32, 1, 1]", style=solid];
-"673 Constant_41238" -> "52 /features/features.5/Add/fq_output_0" [label="[]", style=solid];
-"674 Constant_41237" -> "52 /features/features.5/Add/fq_output_0" [label="[]", style=solid];
-"675 Constant_41236" -> "52 /features/features.5/Add/fq_output_0" [label="[]", style=solid];
-"676 Constant_41235" -> "52 /features/features.5/Add/fq_output_0" [label="[]", style=solid];
-"677 Constant_41233" -> "80 /features/features.5/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"678 Constant_41232" -> "80 /features/features.5/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"679 Constant_41231" -> "80 /features/features.5/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"680 Constant_41230" -> "80 /features/features.5/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"681 Reshape_610" -> "77 /features/features.5/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "74 /features/features.5/conv/conv.2/Conv/WithoutBiases" [label="[32, 192, 1, 1]", style=solid];
-"683 Constant_41228" -> "682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"684 Constant_41227" -> "682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"685 Constant_41226" -> "682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"686 Constant_41225" -> "682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"687 onnx^^Conv_580" -> "682 /features/features.5/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 192, 1, 1]", style=solid];
-"688 Constant_41223" -> "71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"689 Constant_41222" -> "71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"690 Constant_41221" -> "71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"691 Constant_41220" -> "71 /features/features.5/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"692 Reshape_591" -> "65 /features/features.5/conv/conv.1/conv.1.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "62 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[192, 1, 1, 3, 3]", style=solid];
-"694 Constant_41218" -> "693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"695 Constant_41217" -> "693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"696 Constant_41216" -> "693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"697 Constant_41215" -> "693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1, 1]", style=solid];
-"698 Reshape_539" -> "693 /features/features.5/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 3, 3]", style=solid];
-"699 Constant_41213" -> "59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"700 Constant_41212" -> "59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"701 Constant_41211" -> "59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"702 Constant_41210" -> "59 /features/features.5/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 192, 1, 1]", style=solid];
-"703 Reshape_524" -> "53 /features/features.5/conv/conv.0/conv.0.0/Conv" [label="[1, 192, 1, 1]", style=solid];
-"704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "51 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[192, 32, 1, 1]", style=solid];
-"705 Constant_41208" -> "704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"706 Constant_41207" -> "704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"707 Constant_41206" -> "704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"708 Constant_41205" -> "704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 1, 1, 1]", style=solid];
-"709 onnx^^Conv_574" -> "704 /features/features.5/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[192, 32, 1, 1]", style=solid];
-"710 Constant_41203" -> "49 /features/features.4/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"711 Constant_41202" -> "49 /features/features.4/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"712 Constant_41201" -> "49 /features/features.4/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"713 Constant_41200" -> "49 /features/features.4/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"714 Reshape_509" -> "48 /features/features.4/conv/conv.2/Conv" [label="[1, 32, 1, 1]", style=solid];
-"715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "46 /features/features.4/conv/conv.2/Conv/WithoutBiases" [label="[32, 144, 1, 1]", style=solid];
-"716 Constant_41198" -> "715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"717 Constant_41197" -> "715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"718 Constant_41196" -> "715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"719 Constant_41195" -> "715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"720 onnx^^Conv_571" -> "715 /features/features.4/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[32, 144, 1, 1]", style=solid];
-"721 Constant_41193" -> "44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"722 Constant_41192" -> "44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"723 Constant_41191" -> "44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"724 Constant_41190" -> "44 /features/features.4/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"725 Reshape_490" -> "40 /features/features.4/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "38 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[144, 1, 1, 3, 3]", style=solid];
-"727 Constant_41188" -> "726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"728 Constant_41187" -> "726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"729 Constant_41186" -> "726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"730 Constant_41185" -> "726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"731 Reshape_438" -> "726 /features/features.4/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 3, 3]", style=solid];
-"732 Constant_41183" -> "36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"733 Constant_41182" -> "36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"734 Constant_41181" -> "36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"735 Constant_41180" -> "36 /features/features.4/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"736 Reshape_423" -> "32 /features/features.4/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "30 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[144, 24, 1, 1]", style=solid];
-"738 Constant_41178" -> "737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"739 Constant_41177" -> "737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"740 Constant_41176" -> "737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"741 Constant_41175" -> "737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"742 onnx^^Conv_565" -> "737 /features/features.4/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 24, 1, 1]", style=solid];
-"743 Constant_41173" -> "28 /features/features.3/Add/fq_output_0" [label="[]", style=solid];
-"744 Constant_41172" -> "28 /features/features.3/Add/fq_output_0" [label="[]", style=solid];
-"745 Constant_41171" -> "28 /features/features.3/Add/fq_output_0" [label="[]", style=solid];
-"746 Constant_41170" -> "28 /features/features.3/Add/fq_output_0" [label="[]", style=solid];
-"747 Constant_41168" -> "47 /features/features.3/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"748 Constant_41167" -> "47 /features/features.3/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"749 Constant_41166" -> "47 /features/features.3/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"750 Constant_41165" -> "47 /features/features.3/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"751 Reshape_407" -> "45 /features/features.3/conv/conv.2/Conv" [label="[1, 24, 1, 1]", style=solid];
-"752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "43 /features/features.3/conv/conv.2/Conv/WithoutBiases" [label="[24, 144, 1, 1]", style=solid];
-"753 Constant_41163" -> "752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"754 Constant_41162" -> "752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"755 Constant_41161" -> "752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"756 Constant_41160" -> "752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"757 onnx^^Conv_562" -> "752 /features/features.3/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 144, 1, 1]", style=solid];
-"758 Constant_41158" -> "41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"759 Constant_41157" -> "41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"760 Constant_41156" -> "41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"761 Constant_41155" -> "41 /features/features.3/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"762 Reshape_388" -> "37 /features/features.3/conv/conv.1/conv.1.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "35 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[144, 1, 1, 3, 3]", style=solid];
-"764 Constant_41153" -> "763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"765 Constant_41152" -> "763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"766 Constant_41151" -> "763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"767 Constant_41150" -> "763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"768 Reshape_336" -> "763 /features/features.3/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 3, 3]", style=solid];
-"769 Constant_41148" -> "33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"770 Constant_41147" -> "33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"771 Constant_41146" -> "33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"772 Constant_41145" -> "33 /features/features.3/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"773 Reshape_321" -> "29 /features/features.3/conv/conv.0/conv.0.0/Conv" [label="[1, 144, 1, 1]", style=solid];
-"774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "27 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[144, 24, 1, 1]", style=solid];
-"775 Constant_41143" -> "774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"776 Constant_41142" -> "774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"777 Constant_41141" -> "774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"778 Constant_41140" -> "774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"779 onnx^^Conv_556" -> "774 /features/features.3/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[144, 24, 1, 1]", style=solid];
-"780 Constant_41138" -> "25 /features/features.2/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"781 Constant_41137" -> "25 /features/features.2/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"782 Constant_41136" -> "25 /features/features.2/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"783 Constant_41135" -> "25 /features/features.2/conv/conv.2/Conv/fq_output_0" [label="[]", style=solid];
-"784 Reshape_306" -> "24 /features/features.2/conv/conv.2/Conv" [label="[1, 24, 1, 1]", style=solid];
-"785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" -> "23 /features/features.2/conv/conv.2/Conv/WithoutBiases" [label="[24, 96, 1, 1]", style=solid];
-"786 Constant_41133" -> "785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"787 Constant_41132" -> "785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"788 Constant_41131" -> "785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"789 Constant_41130" -> "785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"790 onnx^^Conv_553" -> "785 /features/features.2/conv/conv.2/Conv/WithoutBiases/fq_weights_1" [label="[24, 96, 1, 1]", style=solid];
-"791 Constant_41128" -> "22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"792 Constant_41127" -> "22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"793 Constant_41126" -> "22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"794 Constant_41125" -> "22 /features/features.2/conv/conv.1/conv.1.2/Clip/fq_output_0" [label="[]", style=solid];
-"795 Reshape_287" -> "20 /features/features.2/conv/conv.1/conv.1.0/Conv" [label="[1, 96, 1, 1]", style=solid];
-"796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" -> "19 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases" [label="[96, 1, 1, 3, 3]", style=solid];
-"797 Constant_41123" -> "796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"798 Constant_41122" -> "796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"799 Constant_41121" -> "796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"800 Constant_41120" -> "796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"801 Reshape_235" -> "796 /features/features.2/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 3, 3]", style=solid];
-"802 Constant_41118" -> "18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"803 Constant_41117" -> "18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"804 Constant_41116" -> "18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"805 Constant_41115" -> "18 /features/features.2/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"806 Reshape_220" -> "16 /features/features.2/conv/conv.0/conv.0.0/Conv" [label="[1, 96, 1, 1]", style=solid];
-"807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "15 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[96, 16, 1, 1]", style=solid];
-"808 Constant_41113" -> "807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"809 Constant_41112" -> "807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"810 Constant_41111" -> "807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"811 Constant_41110" -> "807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"812 onnx^^Conv_547" -> "807 /features/features.2/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[96, 16, 1, 1]", style=solid];
-"813 Constant_41108" -> "14 /features/features.1/conv/conv.1/Conv/fq_output_0" [label="[]", style=solid];
-"814 Constant_41107" -> "14 /features/features.1/conv/conv.1/Conv/fq_output_0" [label="[]", style=solid];
-"815 Constant_41106" -> "14 /features/features.1/conv/conv.1/Conv/fq_output_0" [label="[]", style=solid];
-"816 Constant_41105" -> "14 /features/features.1/conv/conv.1/Conv/fq_output_0" [label="[]", style=solid];
-"817 Reshape_205" -> "13 /features/features.1/conv/conv.1/Conv" [label="[1, 16, 1, 1]", style=solid];
-"818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" -> "12 /features/features.1/conv/conv.1/Conv/WithoutBiases" [label="[16, 32, 1, 1]", style=solid];
-"819 Constant_41103" -> "818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"820 Constant_41102" -> "818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"821 Constant_41101" -> "818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"822 Constant_41100" -> "818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"823 onnx^^Conv_544" -> "818 /features/features.1/conv/conv.1/Conv/WithoutBiases/fq_weights_1" [label="[16, 32, 1, 1]", style=solid];
-"824 Constant_41098" -> "11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[]", style=solid];
-"825 Constant_41097" -> "11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[]", style=solid];
-"826 Constant_41096" -> "11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[]", style=solid];
-"827 Constant_41095" -> "11 /features/features.1/conv/conv.0/conv.0.2/Clip/fq_output_0" [label="[]", style=solid];
-"828 Reshape_186" -> "9 /features/features.1/conv/conv.0/conv.0.0/Conv" [label="[1, 32, 1, 1]", style=solid];
-"829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" -> "8 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases" [label="[32, 1, 1, 3, 3]", style=solid];
-"830 Constant_41093" -> "829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1, 1]", style=solid];
-"831 Constant_41092" -> "829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1, 1]", style=solid];
-"832 Constant_41091" -> "829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1, 1]", style=solid];
-"833 Constant_41090" -> "829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1, 1]", style=solid];
-"834 Reshape_134" -> "829 /features/features.1/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 3, 3]", style=solid];
-"835 Constant_41088" -> "7 /features/features.0/features.0.2/Clip/fq_output_0" [label="[1, 32, 1, 1]", style=solid];
-"836 Constant_41087" -> "7 /features/features.0/features.0.2/Clip/fq_output_0" [label="[1, 32, 1, 1]", style=solid];
-"837 Constant_41086" -> "7 /features/features.0/features.0.2/Clip/fq_output_0" [label="[1, 32, 1, 1]", style=solid];
-"838 Constant_41085" -> "7 /features/features.0/features.0.2/Clip/fq_output_0" [label="[1, 32, 1, 1]", style=solid];
-"839 Reshape_119" -> "5 /features/features.0/features.0.0/Conv" [label="[1, 32, 1, 1]", style=solid];
-"840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" -> "4 /features/features.0/features.0.0/Conv/WithoutBiases" [label="[32, 3, 3, 3]", style=solid];
-"841 Constant_41083" -> "840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"842 Constant_41082" -> "840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"843 Constant_41081" -> "840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"844 Constant_41080" -> "840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"845 Gather_5168" -> "840 /features/features.0/features.0.0/Conv/WithoutBiases/fq_weights_1" [label="[32, 3, 3, 3]", style=solid];
-"846 Constant_41078" -> "3 Divide_1885/fq_output_0" [label="[]", style=solid];
-"847 Constant_41077" -> "3 Divide_1885/fq_output_0" [label="[]", style=solid];
-"848 Constant_41076" -> "3 Divide_1885/fq_output_0" [label="[]", style=solid];
-"849 Constant_41075" -> "3 Divide_1885/fq_output_0" [label="[]", style=solid];
-"850 Gather_5165" -> "2 Divide_1885" [label="[1, 3, 1, 1]", style=solid];
-"851 Gather_5162" -> "1 Multiply_5095" [label="[1, 3, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v3-small-1.0-224-tf_performance.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v3-small-1.0-224-tf_performance.dot
deleted file mode 100644
index 46e74566032..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/mobilenet-v3-small-1.0-224-tf_performance.dot
+++ /dev/null
@@ -1,1598 +0,0 @@
-strict digraph {
-"0 input_1" [id=0, type=Parameter];
-"1 Transpose_7780" [id=1, type=Transpose];
-"2 Transpose_7774" [id=2, type=Multiply];
-"3 Transpose_710" [id=3, type=Add];
-"4 Transpose_710/fq_output_0" [id=4, type=FakeQuantize];
-"5 Multiply_9167" [id=5, type=Convolution];
-"6 Transpose_5170" [id=6, type=Add];
-"7 Transpose_5188" [id=7, type=HSwish];
-"8 Transpose_5188/fq_output_0" [id=8, type=FakeQuantize];
-"9 Multiply_9181" [id=9, type=GroupConvolution];
-"10 Transpose_5239" [id=10, type=Add];
-"11 Transpose_5241" [id=11, type=Relu];
-"12 Transpose_5241/fq_output_0" [id=12, type=FakeQuantize];
-"13 Transpose_5245" [id=13, type=ReduceMean];
-"14 Transpose_5277" [id=14, type=Multiply];
-"15 Convolution_801" [id=15, type=Convolution];
-"16 Transpose_5277/fq_output_0" [id=16, type=FakeQuantize];
-"17 Transpose_5251" [id=17, type=Add];
-"18 Multiply_9195" [id=18, type=Convolution];
-"19 Transpose_5253" [id=19, type=Relu];
-"20 Transpose_5301" [id=20, type=Add];
-"21 Convolution_810" [id=21, type=Convolution];
-"22 Transpose_5301/fq_output_0" [id=22, type=FakeQuantize];
-"23 Transpose_5259" [id=23, type=Add];
-"24 Multiply_9209" [id=24, type=Convolution];
-"25 Transpose_5273" [id=25, type=HSigmoid];
-"26 Transpose_5325" [id=26, type=Add];
-"27 Transpose_5273/fq_output_0" [id=27, type=FakeQuantize];
-"28 Transpose_5327" [id=28, type=Relu];
-"29 Transpose_5327/fq_output_0" [id=29, type=FakeQuantize];
-"30 Multiply_9223" [id=30, type=GroupConvolution];
-"31 Transpose_5378" [id=31, type=Add];
-"32 Transpose_5380" [id=32, type=Relu];
-"33 Transpose_5380/fq_output_0" [id=33, type=FakeQuantize];
-"34 Multiply_9237" [id=34, type=Convolution];
-"35 Transpose_5404" [id=35, type=Add];
-"36 Transpose_5404/fq_output_0" [id=36, type=FakeQuantize];
-"37 Multiply_9251" [id=37, type=Convolution];
-"38 Transpose_5484" [id=38, type=Add];
-"39 Transpose_5428" [id=39, type=Add];
-"40 Transpose_5484/fq_output_0" [id=40, type=FakeQuantize];
-"41 Transpose_5430" [id=41, type=Relu];
-"42 Multiply_9293" [id=42, type=Convolution];
-"43 Transpose_5430/fq_output_0" [id=43, type=FakeQuantize];
-"44 Transpose_5508" [id=44, type=Add];
-"45 Multiply_9265" [id=45, type=GroupConvolution];
-"46 Transpose_5526" [id=46, type=HSwish];
-"47 Transpose_5454" [id=47, type=Add];
-"48 Transpose_5526/fq_output_0" [id=48, type=FakeQuantize];
-"49 Transpose_5456" [id=49, type=Relu];
-"50 Multiply_9307" [id=50, type=GroupConvolution];
-"51 Transpose_5456/fq_output_0" [id=51, type=FakeQuantize];
-"52 Transpose_5577" [id=52, type=Add];
-"53 Multiply_9279" [id=53, type=Convolution];
-"54 Transpose_5595" [id=54, type=HSwish];
-"55 Transpose_5480" [id=55, type=Add];
-"56 Transpose_5595/fq_output_0" [id=56, type=FakeQuantize];
-"57 Transpose_5480/fq_output_0" [id=57, type=FakeQuantize];
-"58 Transpose_5599" [id=58, type=ReduceMean];
-"59 Transpose_5631" [id=59, type=Multiply];
-"60 Convolution_1132" [id=60, type=Convolution];
-"61 Transpose_5631/fq_output_0" [id=61, type=FakeQuantize];
-"62 Transpose_5605" [id=62, type=Add];
-"63 Multiply_9321" [id=63, type=Convolution];
-"64 Transpose_5607" [id=64, type=Relu];
-"65 Transpose_5655" [id=65, type=Add];
-"66 Convolution_1141" [id=66, type=Convolution];
-"67 Transpose_5655/fq_output_0" [id=67, type=FakeQuantize];
-"68 Transpose_5613" [id=68, type=Add];
-"69 Multiply_9335" [id=69, type=Convolution];
-"70 Transpose_5803" [id=70, type=Add];
-"71 Transpose_5627" [id=71, type=HSigmoid];
-"72 Transpose_5679" [id=72, type=Add];
-"73 Transpose_5803/fq_output_0" [id=73, type=FakeQuantize];
-"74 Transpose_5627/fq_output_0" [id=74, type=FakeQuantize];
-"75 Transpose_5697" [id=75, type=HSwish];
-"76 Multiply_9377" [id=76, type=Convolution];
-"77 Transpose_5951" [id=77, type=Add];
-"78 Transpose_5697/fq_output_0" [id=78, type=FakeQuantize];
-"79 Transpose_5827" [id=79, type=Add];
-"80 Transpose_5951/fq_output_0" [id=80, type=FakeQuantize];
-"81 Multiply_9349" [id=81, type=GroupConvolution];
-"82 Transpose_5845" [id=82, type=HSwish];
-"83 Multiply_9419" [id=83, type=Convolution];
-"84 Transpose_5721" [id=84, type=Add];
-"85 Transpose_5845/fq_output_0" [id=85, type=FakeQuantize];
-"86 Transpose_5975" [id=86, type=Add];
-"87 Transpose_5739" [id=87, type=HSwish];
-"88 Multiply_9391" [id=88, type=GroupConvolution];
-"89 Transpose_5993" [id=89, type=HSwish];
-"90 Transpose_5739/fq_output_0" [id=90, type=FakeQuantize];
-"91 Transpose_5869" [id=91, type=Add];
-"92 Transpose_5993/fq_output_0" [id=92, type=FakeQuantize];
-"93 Transpose_5743" [id=93, type=ReduceMean];
-"94 Transpose_5775" [id=94, type=Multiply];
-"95 Transpose_5887" [id=95, type=HSwish];
-"96 Multiply_9433" [id=96, type=GroupConvolution];
-"97 Convolution_1242" [id=97, type=Convolution];
-"98 Transpose_5775/fq_output_0" [id=98, type=FakeQuantize];
-"99 Transpose_5887/fq_output_0" [id=99, type=FakeQuantize];
-"100 Transpose_6017" [id=100, type=Add];
-"101 Transpose_5749" [id=101, type=Add];
-"102 Multiply_9363" [id=102, type=Convolution];
-"103 Transpose_5891" [id=103, type=ReduceMean];
-"104 Transpose_5923" [id=104, type=Multiply];
-"105 Transpose_6035" [id=105, type=HSwish];
-"106 Transpose_5751" [id=106, type=Relu];
-"107 Transpose_5799" [id=107, type=Add];
-"108 Convolution_1353" [id=108, type=Convolution];
-"109 Transpose_5923/fq_output_0" [id=109, type=FakeQuantize];
-"110 Transpose_6035/fq_output_0" [id=110, type=FakeQuantize];
-"111 Convolution_1251" [id=111, type=Convolution];
-"112 Transpose_5799/fq_output_0" [id=112, type=FakeQuantize];
-"113 Transpose_5897" [id=113, type=Add];
-"114 Multiply_9405" [id=114, type=Convolution];
-"115 Transpose_6039" [id=115, type=ReduceMean];
-"116 Transpose_6071" [id=116, type=Multiply];
-"117 Transpose_5757" [id=117, type=Add];
-"118 Transpose_5899" [id=118, type=Relu];
-"119 Transpose_5947" [id=119, type=Add];
-"120 Convolution_1464" [id=120, type=Convolution];
-"121 Transpose_6071/fq_output_0" [id=121, type=FakeQuantize];
-"122 Transpose_5771" [id=122, type=HSigmoid];
-"123 Convolution_1362" [id=123, type=Convolution];
-"124 Transpose_5947/fq_output_0" [id=124, type=FakeQuantize];
-"125 Transpose_6045" [id=125, type=Add];
-"126 Multiply_9447" [id=126, type=Convolution];
-"127 Transpose_5771/fq_output_0" [id=127, type=FakeQuantize];
-"128 Transpose_5905" [id=128, type=Add];
-"129 Transpose_6047" [id=129, type=Relu];
-"130 Transpose_6095" [id=130, type=Add];
-"131 Transpose_5919" [id=131, type=HSigmoid];
-"132 Convolution_1473" [id=132, type=Convolution];
-"133 Transpose_6095/fq_output_0" [id=133, type=FakeQuantize];
-"134 Transpose_5919/fq_output_0" [id=134, type=FakeQuantize];
-"135 Transpose_6053" [id=135, type=Add];
-"136 Multiply_9461" [id=136, type=Convolution];
-"137 Transpose_6243" [id=137, type=Add];
-"138 Transpose_6067" [id=138, type=HSigmoid];
-"139 Transpose_6119" [id=139, type=Add];
-"140 Transpose_6243/fq_output_0" [id=140, type=FakeQuantize];
-"141 Transpose_6067/fq_output_0" [id=141, type=FakeQuantize];
-"142 Transpose_6137" [id=142, type=HSwish];
-"143 Multiply_9503" [id=143, type=Convolution];
-"144 Transpose_6137/fq_output_0" [id=144, type=FakeQuantize];
-"145 Transpose_6267" [id=145, type=Add];
-"146 Multiply_9475" [id=146, type=GroupConvolution];
-"147 Transpose_6285" [id=147, type=HSwish];
-"148 Transpose_6161" [id=148, type=Add];
-"149 Transpose_6285/fq_output_0" [id=149, type=FakeQuantize];
-"150 Transpose_6179" [id=150, type=HSwish];
-"151 Multiply_9517" [id=151, type=GroupConvolution];
-"152 Transpose_6179/fq_output_0" [id=152, type=FakeQuantize];
-"153 Transpose_6336" [id=153, type=Add];
-"154 Transpose_6183" [id=154, type=ReduceMean];
-"155 Transpose_6215" [id=155, type=Multiply];
-"156 Transpose_6354" [id=156, type=HSwish];
-"157 Convolution_1574" [id=157, type=Convolution];
-"158 Transpose_6215/fq_output_0" [id=158, type=FakeQuantize];
-"159 Transpose_6354/fq_output_0" [id=159, type=FakeQuantize];
-"160 Transpose_6189" [id=160, type=Add];
-"161 Multiply_9489" [id=161, type=Convolution];
-"162 Transpose_6358" [id=162, type=ReduceMean];
-"163 Transpose_6390" [id=163, type=Multiply];
-"164 Transpose_6191" [id=164, type=Relu];
-"165 Transpose_6239" [id=165, type=Add];
-"166 Convolution_1713" [id=166, type=Convolution];
-"167 Transpose_6390/fq_output_0" [id=167, type=FakeQuantize];
-"168 Convolution_1583" [id=168, type=Convolution];
-"169 Transpose_6239/fq_output_0" [id=169, type=FakeQuantize];
-"170 Transpose_6364" [id=170, type=Add];
-"171 Multiply_9531" [id=171, type=Convolution];
-"172 Transpose_6197" [id=172, type=Add];
-"173 Transpose_6366" [id=173, type=Relu];
-"174 Transpose_6414" [id=174, type=Add];
-"175 Transpose_6211" [id=175, type=HSigmoid];
-"176 Convolution_1722" [id=176, type=Convolution];
-"177 Transpose_6414/fq_output_0" [id=177, type=FakeQuantize];
-"178 Transpose_6211/fq_output_0" [id=178, type=FakeQuantize];
-"179 Transpose_6372" [id=179, type=Add];
-"180 Multiply_9545" [id=180, type=Convolution];
-"181 Transpose_6562" [id=181, type=Add];
-"182 Transpose_6386" [id=182, type=HSigmoid];
-"183 Transpose_6438" [id=183, type=Add];
-"184 Transpose_6562/fq_output_0" [id=184, type=FakeQuantize];
-"185 Transpose_6386/fq_output_0" [id=185, type=FakeQuantize];
-"186 Transpose_6456" [id=186, type=HSwish];
-"187 Multiply_9587" [id=187, type=Convolution];
-"188 Transpose_6710" [id=188, type=Add];
-"189 Transpose_6456/fq_output_0" [id=189, type=FakeQuantize];
-"190 Transpose_6586" [id=190, type=Add];
-"191 Transpose_6710/fq_output_0" [id=191, type=FakeQuantize];
-"192 Multiply_9559" [id=192, type=GroupConvolution];
-"193 Transpose_6604" [id=193, type=HSwish];
-"194 Multiply_9629" [id=194, type=Convolution];
-"195 Transpose_6480" [id=195, type=Add];
-"196 Transpose_6604/fq_output_0" [id=196, type=FakeQuantize];
-"197 Transpose_6734" [id=197, type=Add];
-"198 Transpose_6498" [id=198, type=HSwish];
-"199 Multiply_9601" [id=199, type=GroupConvolution];
-"200 Transpose_6752" [id=200, type=HSwish];
-"201 Transpose_6498/fq_output_0" [id=201, type=FakeQuantize];
-"202 Transpose_6628" [id=202, type=Add];
-"203 Transpose_6752/fq_output_0" [id=203, type=FakeQuantize];
-"204 Transpose_6502" [id=204, type=ReduceMean];
-"205 Transpose_6534" [id=205, type=Multiply];
-"206 Transpose_6646" [id=206, type=HSwish];
-"207 Transpose_6756" [id=207, type=ReduceMean];
-"208 Convolution_1823" [id=208, type=Convolution];
-"209 Transpose_6534/fq_output_0" [id=209, type=FakeQuantize];
-"210 Transpose_6646/fq_output_0" [id=210, type=FakeQuantize];
-"211 Transpose_6756/fq_output_0" [id=211, type=FakeQuantize];
-"212 Transpose_6508" [id=212, type=Add];
-"213 Multiply_9573" [id=213, type=Convolution];
-"214 Transpose_6650" [id=214, type=ReduceMean];
-"215 Transpose_6682" [id=215, type=Multiply];
-"216 Convolution_2013" [id=216, type=Convolution];
-"217 Transpose_6510" [id=217, type=Relu];
-"218 Transpose_6558" [id=218, type=Add];
-"219 Convolution_1934" [id=219, type=Convolution];
-"220 Transpose_6682/fq_output_0" [id=220, type=FakeQuantize];
-"221 Transpose_6762" [id=221, type=Add];
-"222 Convolution_1832" [id=222, type=Convolution];
-"223 Transpose_6558/fq_output_0" [id=223, type=FakeQuantize];
-"224 Transpose_6656" [id=224, type=Add];
-"225 Multiply_9615" [id=225, type=Convolution];
-"226 Transpose_6780" [id=226, type=HSwish];
-"227 Transpose_6516" [id=227, type=Add];
-"228 Transpose_6658" [id=228, type=Relu];
-"229 Transpose_6706" [id=229, type=Add];
-"230 Transpose_6780/fq_output_0" [id=230, type=FakeQuantize];
-"231 Transpose_6530" [id=231, type=HSigmoid];
-"232 Convolution_1943" [id=232, type=Convolution];
-"233 Transpose_6706/fq_output_0" [id=233, type=FakeQuantize];
-"234 Convolution_2025" [id=234, type=Convolution];
-"235 Transpose_6530/fq_output_0" [id=235, type=FakeQuantize];
-"236 Transpose_6664" [id=236, type=Add];
-"237 Transpose_6786" [id=237, type=Add];
-"238 Transpose_6678" [id=238, type=HSigmoid];
-"239 MobilenetV3small/Logits/BiasAdd" [id=239, type=Reshape];
-"240 Transpose_6678/fq_output_0" [id=240, type=FakeQuantize];
-"241 MobilenetV3small/flatten/Reshape" [id=241, type=Reshape];
-"242 MobilenetV3small/Predictions/Softmax" [id=242, type=Softmax];
-"243 Predictions" [id=243, type=Result];
-"244 MobilenetV3small/flatten/Const" [id=244, type=Constant];
-"245 Constant_8887" [id=245, type=Constant];
-"246 Transpose_6784" [id=246, type=Constant];
-"247 Convolution_2025/fq_weights_1" [id=247, type=FakeQuantize];
-"248 Constant_11502" [id=248, type=Constant];
-"249 Constant_11501" [id=249, type=Constant];
-"250 Constant_11500" [id=250, type=Constant];
-"251 Constant_11499" [id=251, type=Constant];
-"252 Transpose_2024" [id=252, type=Constant];
-"253 Constant_11497" [id=253, type=Constant];
-"254 Constant_11496" [id=254, type=Constant];
-"255 Constant_11495" [id=255, type=Constant];
-"256 Constant_11494" [id=256, type=Constant];
-"257 Transpose_6760" [id=257, type=Constant];
-"258 Convolution_2013/fq_weights_1" [id=258, type=FakeQuantize];
-"259 Constant_11492" [id=259, type=Constant];
-"260 Constant_11491" [id=260, type=Constant];
-"261 Constant_11490" [id=261, type=Constant];
-"262 Constant_11489" [id=262, type=Constant];
-"263 Transpose_2012" [id=263, type=Constant];
-"264 Constant_11487" [id=264, type=Constant];
-"265 Constant_11486" [id=265, type=Constant];
-"266 Constant_11485" [id=266, type=Constant];
-"267 Constant_11484" [id=267, type=Constant];
-"268 Constant_6754" [id=268, type=Constant];
-"269 Constant_11482" [id=269, type=Constant];
-"270 Constant_11481" [id=270, type=Constant];
-"271 Constant_11480" [id=271, type=Constant];
-"272 Constant_11479" [id=272, type=Constant];
-"273 Constant_9637" [id=273, type=Constant];
-"274 Multiply_9629/fq_weights_1" [id=274, type=FakeQuantize];
-"275 Constant_11477" [id=275, type=Constant];
-"276 Constant_11476" [id=276, type=Constant];
-"277 Constant_11475" [id=277, type=Constant];
-"278 Constant_11474" [id=278, type=Constant];
-"279 Multiply_9830" [id=279, type=Constant];
-"280 Constant_11472" [id=280, type=Constant];
-"281 Constant_11471" [id=281, type=Constant];
-"282 Constant_11470" [id=282, type=Constant];
-"283 Constant_11469" [id=283, type=Constant];
-"284 Constant_11467" [id=284, type=Constant];
-"285 Constant_11466" [id=285, type=Constant];
-"286 Constant_11465" [id=286, type=Constant];
-"287 Constant_11464" [id=287, type=Constant];
-"288 Constant_9623" [id=288, type=Constant];
-"289 Multiply_9615/fq_weights_1" [id=289, type=FakeQuantize];
-"290 Constant_11462" [id=290, type=Constant];
-"291 Constant_11461" [id=291, type=Constant];
-"292 Constant_11460" [id=292, type=Constant];
-"293 Constant_11459" [id=293, type=Constant];
-"294 Multiply_9824" [id=294, type=Constant];
-"295 Constant_11457" [id=295, type=Constant];
-"296 Constant_11456" [id=296, type=Constant];
-"297 Constant_11455" [id=297, type=Constant];
-"298 Constant_11454" [id=298, type=Constant];
-"299 Constant_11452" [id=299, type=Constant];
-"300 Constant_11451" [id=300, type=Constant];
-"301 Constant_11450" [id=301, type=Constant];
-"302 Constant_11449" [id=302, type=Constant];
-"303 Transpose_6662" [id=303, type=Constant];
-"304 Transpose_1942" [id=304, type=Constant];
-"305 Transpose_6654" [id=305, type=Constant];
-"306 Transpose_1933" [id=306, type=Constant];
-"307 Constant_6648" [id=307, type=Constant];
-"308 Constant_11447" [id=308, type=Constant];
-"309 Constant_11446" [id=309, type=Constant];
-"310 Constant_11445" [id=310, type=Constant];
-"311 Constant_11444" [id=311, type=Constant];
-"312 Constant_9609" [id=312, type=Constant];
-"313 Multiply_9601/fq_weights_1" [id=313, type=FakeQuantize];
-"314 Constant_11442" [id=314, type=Constant];
-"315 Constant_11441" [id=315, type=Constant];
-"316 Constant_11440" [id=316, type=Constant];
-"317 Constant_11439" [id=317, type=Constant];
-"318 Multiply_9819" [id=318, type=Constant];
-"319 Constant_11437" [id=319, type=Constant];
-"320 Constant_11436" [id=320, type=Constant];
-"321 Constant_11435" [id=321, type=Constant];
-"322 Constant_11434" [id=322, type=Constant];
-"323 Constant_9595" [id=323, type=Constant];
-"324 Multiply_9587/fq_weights_1" [id=324, type=FakeQuantize];
-"325 Constant_11432" [id=325, type=Constant];
-"326 Constant_11431" [id=326, type=Constant];
-"327 Constant_11430" [id=327, type=Constant];
-"328 Constant_11429" [id=328, type=Constant];
-"329 Multiply_9813" [id=329, type=Constant];
-"330 Constant_11427" [id=330, type=Constant];
-"331 Constant_11426" [id=331, type=Constant];
-"332 Constant_11425" [id=332, type=Constant];
-"333 Constant_11424" [id=333, type=Constant];
-"334 Constant_11422" [id=334, type=Constant];
-"335 Constant_11421" [id=335, type=Constant];
-"336 Constant_11420" [id=336, type=Constant];
-"337 Constant_11419" [id=337, type=Constant];
-"338 Constant_9581" [id=338, type=Constant];
-"339 Multiply_9573/fq_weights_1" [id=339, type=FakeQuantize];
-"340 Constant_11417" [id=340, type=Constant];
-"341 Constant_11416" [id=341, type=Constant];
-"342 Constant_11415" [id=342, type=Constant];
-"343 Constant_11414" [id=343, type=Constant];
-"344 Multiply_9807" [id=344, type=Constant];
-"345 Constant_11412" [id=345, type=Constant];
-"346 Constant_11411" [id=346, type=Constant];
-"347 Constant_11410" [id=347, type=Constant];
-"348 Constant_11409" [id=348, type=Constant];
-"349 Constant_11407" [id=349, type=Constant];
-"350 Constant_11406" [id=350, type=Constant];
-"351 Constant_11405" [id=351, type=Constant];
-"352 Constant_11404" [id=352, type=Constant];
-"353 Transpose_6514" [id=353, type=Constant];
-"354 Transpose_1831" [id=354, type=Constant];
-"355 Transpose_6506" [id=355, type=Constant];
-"356 Transpose_1822" [id=356, type=Constant];
-"357 Constant_6500" [id=357, type=Constant];
-"358 Constant_11402" [id=358, type=Constant];
-"359 Constant_11401" [id=359, type=Constant];
-"360 Constant_11400" [id=360, type=Constant];
-"361 Constant_11399" [id=361, type=Constant];
-"362 Constant_9567" [id=362, type=Constant];
-"363 Multiply_9559/fq_weights_1" [id=363, type=FakeQuantize];
-"364 Constant_11397" [id=364, type=Constant];
-"365 Constant_11396" [id=365, type=Constant];
-"366 Constant_11395" [id=366, type=Constant];
-"367 Constant_11394" [id=367, type=Constant];
-"368 Multiply_9802" [id=368, type=Constant];
-"369 Constant_11392" [id=369, type=Constant];
-"370 Constant_11391" [id=370, type=Constant];
-"371 Constant_11390" [id=371, type=Constant];
-"372 Constant_11389" [id=372, type=Constant];
-"373 Constant_9553" [id=373, type=Constant];
-"374 Multiply_9545/fq_weights_1" [id=374, type=FakeQuantize];
-"375 Constant_11387" [id=375, type=Constant];
-"376 Constant_11386" [id=376, type=Constant];
-"377 Constant_11385" [id=377, type=Constant];
-"378 Constant_11384" [id=378, type=Constant];
-"379 Multiply_9796" [id=379, type=Constant];
-"380 Constant_11382" [id=380, type=Constant];
-"381 Constant_11381" [id=381, type=Constant];
-"382 Constant_11380" [id=382, type=Constant];
-"383 Constant_11379" [id=383, type=Constant];
-"384 Constant_9539" [id=384, type=Constant];
-"385 Multiply_9531/fq_weights_1" [id=385, type=FakeQuantize];
-"386 Constant_11377" [id=386, type=Constant];
-"387 Constant_11376" [id=387, type=Constant];
-"388 Constant_11375" [id=388, type=Constant];
-"389 Constant_11374" [id=389, type=Constant];
-"390 Multiply_9790" [id=390, type=Constant];
-"391 Constant_11372" [id=391, type=Constant];
-"392 Constant_11371" [id=392, type=Constant];
-"393 Constant_11370" [id=393, type=Constant];
-"394 Constant_11369" [id=394, type=Constant];
-"395 Constant_11367" [id=395, type=Constant];
-"396 Constant_11366" [id=396, type=Constant];
-"397 Constant_11365" [id=397, type=Constant];
-"398 Constant_11364" [id=398, type=Constant];
-"399 Transpose_6370" [id=399, type=Constant];
-"400 Transpose_1721" [id=400, type=Constant];
-"401 Transpose_6362" [id=401, type=Constant];
-"402 Transpose_1712" [id=402, type=Constant];
-"403 Constant_6356" [id=403, type=Constant];
-"404 Constant_11362" [id=404, type=Constant];
-"405 Constant_11361" [id=405, type=Constant];
-"406 Constant_11360" [id=406, type=Constant];
-"407 Constant_11359" [id=407, type=Constant];
-"408 Constant_9525" [id=408, type=Constant];
-"409 Multiply_9517/fq_weights_1" [id=409, type=FakeQuantize];
-"410 Constant_11357" [id=410, type=Constant];
-"411 Constant_11356" [id=411, type=Constant];
-"412 Constant_11355" [id=412, type=Constant];
-"413 Constant_11354" [id=413, type=Constant];
-"414 Multiply_9785" [id=414, type=Constant];
-"415 Constant_11352" [id=415, type=Constant];
-"416 Constant_11351" [id=416, type=Constant];
-"417 Constant_11350" [id=417, type=Constant];
-"418 Constant_11349" [id=418, type=Constant];
-"419 Constant_9511" [id=419, type=Constant];
-"420 Multiply_9503/fq_weights_1" [id=420, type=FakeQuantize];
-"421 Constant_11347" [id=421, type=Constant];
-"422 Constant_11346" [id=422, type=Constant];
-"423 Constant_11345" [id=423, type=Constant];
-"424 Constant_11344" [id=424, type=Constant];
-"425 Multiply_9779" [id=425, type=Constant];
-"426 Constant_11342" [id=426, type=Constant];
-"427 Constant_11341" [id=427, type=Constant];
-"428 Constant_11340" [id=428, type=Constant];
-"429 Constant_11339" [id=429, type=Constant];
-"430 Constant_11337" [id=430, type=Constant];
-"431 Constant_11336" [id=431, type=Constant];
-"432 Constant_11335" [id=432, type=Constant];
-"433 Constant_11334" [id=433, type=Constant];
-"434 Constant_9497" [id=434, type=Constant];
-"435 Multiply_9489/fq_weights_1" [id=435, type=FakeQuantize];
-"436 Constant_11332" [id=436, type=Constant];
-"437 Constant_11331" [id=437, type=Constant];
-"438 Constant_11330" [id=438, type=Constant];
-"439 Constant_11329" [id=439, type=Constant];
-"440 Multiply_9773" [id=440, type=Constant];
-"441 Constant_11327" [id=441, type=Constant];
-"442 Constant_11326" [id=442, type=Constant];
-"443 Constant_11325" [id=443, type=Constant];
-"444 Constant_11324" [id=444, type=Constant];
-"445 Constant_11322" [id=445, type=Constant];
-"446 Constant_11321" [id=446, type=Constant];
-"447 Constant_11320" [id=447, type=Constant];
-"448 Constant_11319" [id=448, type=Constant];
-"449 Transpose_6195" [id=449, type=Constant];
-"450 Transpose_1582" [id=450, type=Constant];
-"451 Transpose_6187" [id=451, type=Constant];
-"452 Transpose_1573" [id=452, type=Constant];
-"453 Constant_6181" [id=453, type=Constant];
-"454 Constant_11317" [id=454, type=Constant];
-"455 Constant_11316" [id=455, type=Constant];
-"456 Constant_11315" [id=456, type=Constant];
-"457 Constant_11314" [id=457, type=Constant];
-"458 Constant_9483" [id=458, type=Constant];
-"459 Multiply_9475/fq_weights_1" [id=459, type=FakeQuantize];
-"460 Constant_11312" [id=460, type=Constant];
-"461 Constant_11311" [id=461, type=Constant];
-"462 Constant_11310" [id=462, type=Constant];
-"463 Constant_11309" [id=463, type=Constant];
-"464 Multiply_9768" [id=464, type=Constant];
-"465 Constant_11307" [id=465, type=Constant];
-"466 Constant_11306" [id=466, type=Constant];
-"467 Constant_11305" [id=467, type=Constant];
-"468 Constant_11304" [id=468, type=Constant];
-"469 Constant_9469" [id=469, type=Constant];
-"470 Multiply_9461/fq_weights_1" [id=470, type=FakeQuantize];
-"471 Constant_11302" [id=471, type=Constant];
-"472 Constant_11301" [id=472, type=Constant];
-"473 Constant_11300" [id=473, type=Constant];
-"474 Constant_11299" [id=474, type=Constant];
-"475 Multiply_9762" [id=475, type=Constant];
-"476 Constant_11297" [id=476, type=Constant];
-"477 Constant_11296" [id=477, type=Constant];
-"478 Constant_11295" [id=478, type=Constant];
-"479 Constant_11294" [id=479, type=Constant];
-"480 Constant_9455" [id=480, type=Constant];
-"481 Multiply_9447/fq_weights_1" [id=481, type=FakeQuantize];
-"482 Constant_11292" [id=482, type=Constant];
-"483 Constant_11291" [id=483, type=Constant];
-"484 Constant_11290" [id=484, type=Constant];
-"485 Constant_11289" [id=485, type=Constant];
-"486 Multiply_9756" [id=486, type=Constant];
-"487 Constant_11287" [id=487, type=Constant];
-"488 Constant_11286" [id=488, type=Constant];
-"489 Constant_11285" [id=489, type=Constant];
-"490 Constant_11284" [id=490, type=Constant];
-"491 Constant_11282" [id=491, type=Constant];
-"492 Constant_11281" [id=492, type=Constant];
-"493 Constant_11280" [id=493, type=Constant];
-"494 Constant_11279" [id=494, type=Constant];
-"495 Transpose_6051" [id=495, type=Constant];
-"496 Transpose_1472" [id=496, type=Constant];
-"497 Transpose_6043" [id=497, type=Constant];
-"498 Transpose_1463" [id=498, type=Constant];
-"499 Constant_6037" [id=499, type=Constant];
-"500 Constant_11277" [id=500, type=Constant];
-"501 Constant_11276" [id=501, type=Constant];
-"502 Constant_11275" [id=502, type=Constant];
-"503 Constant_11274" [id=503, type=Constant];
-"504 Constant_9441" [id=504, type=Constant];
-"505 Multiply_9433/fq_weights_1" [id=505, type=FakeQuantize];
-"506 Constant_11272" [id=506, type=Constant];
-"507 Constant_11271" [id=507, type=Constant];
-"508 Constant_11270" [id=508, type=Constant];
-"509 Constant_11269" [id=509, type=Constant];
-"510 Multiply_9751" [id=510, type=Constant];
-"511 Constant_11267" [id=511, type=Constant];
-"512 Constant_11266" [id=512, type=Constant];
-"513 Constant_11265" [id=513, type=Constant];
-"514 Constant_11264" [id=514, type=Constant];
-"515 Constant_9427" [id=515, type=Constant];
-"516 Multiply_9419/fq_weights_1" [id=516, type=FakeQuantize];
-"517 Constant_11262" [id=517, type=Constant];
-"518 Constant_11261" [id=518, type=Constant];
-"519 Constant_11260" [id=519, type=Constant];
-"520 Constant_11259" [id=520, type=Constant];
-"521 Multiply_9745" [id=521, type=Constant];
-"522 Constant_11257" [id=522, type=Constant];
-"523 Constant_11256" [id=523, type=Constant];
-"524 Constant_11255" [id=524, type=Constant];
-"525 Constant_11254" [id=525, type=Constant];
-"526 Constant_11252" [id=526, type=Constant];
-"527 Constant_11251" [id=527, type=Constant];
-"528 Constant_11250" [id=528, type=Constant];
-"529 Constant_11249" [id=529, type=Constant];
-"530 Constant_9413" [id=530, type=Constant];
-"531 Multiply_9405/fq_weights_1" [id=531, type=FakeQuantize];
-"532 Constant_11247" [id=532, type=Constant];
-"533 Constant_11246" [id=533, type=Constant];
-"534 Constant_11245" [id=534, type=Constant];
-"535 Constant_11244" [id=535, type=Constant];
-"536 Multiply_9739" [id=536, type=Constant];
-"537 Constant_11242" [id=537, type=Constant];
-"538 Constant_11241" [id=538, type=Constant];
-"539 Constant_11240" [id=539, type=Constant];
-"540 Constant_11239" [id=540, type=Constant];
-"541 Constant_11237" [id=541, type=Constant];
-"542 Constant_11236" [id=542, type=Constant];
-"543 Constant_11235" [id=543, type=Constant];
-"544 Constant_11234" [id=544, type=Constant];
-"545 Transpose_5903" [id=545, type=Constant];
-"546 Transpose_1361" [id=546, type=Constant];
-"547 Transpose_5895" [id=547, type=Constant];
-"548 Transpose_1352" [id=548, type=Constant];
-"549 Constant_5889" [id=549, type=Constant];
-"550 Constant_11232" [id=550, type=Constant];
-"551 Constant_11231" [id=551, type=Constant];
-"552 Constant_11230" [id=552, type=Constant];
-"553 Constant_11229" [id=553, type=Constant];
-"554 Constant_9399" [id=554, type=Constant];
-"555 Multiply_9391/fq_weights_1" [id=555, type=FakeQuantize];
-"556 Constant_11227" [id=556, type=Constant];
-"557 Constant_11226" [id=557, type=Constant];
-"558 Constant_11225" [id=558, type=Constant];
-"559 Constant_11224" [id=559, type=Constant];
-"560 Multiply_9734" [id=560, type=Constant];
-"561 Constant_11222" [id=561, type=Constant];
-"562 Constant_11221" [id=562, type=Constant];
-"563 Constant_11220" [id=563, type=Constant];
-"564 Constant_11219" [id=564, type=Constant];
-"565 Constant_9385" [id=565, type=Constant];
-"566 Multiply_9377/fq_weights_1" [id=566, type=FakeQuantize];
-"567 Constant_11217" [id=567, type=Constant];
-"568 Constant_11216" [id=568, type=Constant];
-"569 Constant_11215" [id=569, type=Constant];
-"570 Constant_11214" [id=570, type=Constant];
-"571 Multiply_9728" [id=571, type=Constant];
-"572 Constant_11212" [id=572, type=Constant];
-"573 Constant_11211" [id=573, type=Constant];
-"574 Constant_11210" [id=574, type=Constant];
-"575 Constant_11209" [id=575, type=Constant];
-"576 Constant_11207" [id=576, type=Constant];
-"577 Constant_11206" [id=577, type=Constant];
-"578 Constant_11205" [id=578, type=Constant];
-"579 Constant_11204" [id=579, type=Constant];
-"580 Constant_9371" [id=580, type=Constant];
-"581 Multiply_9363/fq_weights_1" [id=581, type=FakeQuantize];
-"582 Constant_11202" [id=582, type=Constant];
-"583 Constant_11201" [id=583, type=Constant];
-"584 Constant_11200" [id=584, type=Constant];
-"585 Constant_11199" [id=585, type=Constant];
-"586 Multiply_9722" [id=586, type=Constant];
-"587 Constant_11197" [id=587, type=Constant];
-"588 Constant_11196" [id=588, type=Constant];
-"589 Constant_11195" [id=589, type=Constant];
-"590 Constant_11194" [id=590, type=Constant];
-"591 Constant_11192" [id=591, type=Constant];
-"592 Constant_11191" [id=592, type=Constant];
-"593 Constant_11190" [id=593, type=Constant];
-"594 Constant_11189" [id=594, type=Constant];
-"595 Transpose_5755" [id=595, type=Constant];
-"596 Transpose_1250" [id=596, type=Constant];
-"597 Transpose_5747" [id=597, type=Constant];
-"598 Transpose_1241" [id=598, type=Constant];
-"599 Constant_5741" [id=599, type=Constant];
-"600 Constant_11187" [id=600, type=Constant];
-"601 Constant_11186" [id=601, type=Constant];
-"602 Constant_11185" [id=602, type=Constant];
-"603 Constant_11184" [id=603, type=Constant];
-"604 Constant_9357" [id=604, type=Constant];
-"605 Multiply_9349/fq_weights_1" [id=605, type=FakeQuantize];
-"606 Constant_11182" [id=606, type=Constant];
-"607 Constant_11181" [id=607, type=Constant];
-"608 Constant_11180" [id=608, type=Constant];
-"609 Constant_11179" [id=609, type=Constant];
-"610 Multiply_9717" [id=610, type=Constant];
-"611 Constant_11177" [id=611, type=Constant];
-"612 Constant_11176" [id=612, type=Constant];
-"613 Constant_11175" [id=613, type=Constant];
-"614 Constant_11174" [id=614, type=Constant];
-"615 Constant_9343" [id=615, type=Constant];
-"616 Multiply_9335/fq_weights_1" [id=616, type=FakeQuantize];
-"617 Constant_11172" [id=617, type=Constant];
-"618 Constant_11171" [id=618, type=Constant];
-"619 Constant_11170" [id=619, type=Constant];
-"620 Constant_11169" [id=620, type=Constant];
-"621 Multiply_9711" [id=621, type=Constant];
-"622 Constant_11167" [id=622, type=Constant];
-"623 Constant_11166" [id=623, type=Constant];
-"624 Constant_11165" [id=624, type=Constant];
-"625 Constant_11164" [id=625, type=Constant];
-"626 Constant_9329" [id=626, type=Constant];
-"627 Multiply_9321/fq_weights_1" [id=627, type=FakeQuantize];
-"628 Constant_11162" [id=628, type=Constant];
-"629 Constant_11161" [id=629, type=Constant];
-"630 Constant_11160" [id=630, type=Constant];
-"631 Constant_11159" [id=631, type=Constant];
-"632 Multiply_9705" [id=632, type=Constant];
-"633 Constant_11157" [id=633, type=Constant];
-"634 Constant_11156" [id=634, type=Constant];
-"635 Constant_11155" [id=635, type=Constant];
-"636 Constant_11154" [id=636, type=Constant];
-"637 Constant_11152" [id=637, type=Constant];
-"638 Constant_11151" [id=638, type=Constant];
-"639 Constant_11150" [id=639, type=Constant];
-"640 Constant_11149" [id=640, type=Constant];
-"641 Transpose_5611" [id=641, type=Constant];
-"642 Transpose_1140" [id=642, type=Constant];
-"643 Transpose_5603" [id=643, type=Constant];
-"644 Transpose_1131" [id=644, type=Constant];
-"645 Constant_5597" [id=645, type=Constant];
-"646 Constant_11147" [id=646, type=Constant];
-"647 Constant_11146" [id=647, type=Constant];
-"648 Constant_11145" [id=648, type=Constant];
-"649 Constant_11144" [id=649, type=Constant];
-"650 Constant_9315" [id=650, type=Constant];
-"651 Multiply_9307/fq_weights_1" [id=651, type=FakeQuantize];
-"652 Constant_11142" [id=652, type=Constant];
-"653 Constant_11141" [id=653, type=Constant];
-"654 Constant_11140" [id=654, type=Constant];
-"655 Constant_11139" [id=655, type=Constant];
-"656 Multiply_9700" [id=656, type=Constant];
-"657 Constant_11137" [id=657, type=Constant];
-"658 Constant_11136" [id=658, type=Constant];
-"659 Constant_11135" [id=659, type=Constant];
-"660 Constant_11134" [id=660, type=Constant];
-"661 Constant_9301" [id=661, type=Constant];
-"662 Multiply_9293/fq_weights_1" [id=662, type=FakeQuantize];
-"663 Constant_11132" [id=663, type=Constant];
-"664 Constant_11131" [id=664, type=Constant];
-"665 Constant_11130" [id=665, type=Constant];
-"666 Constant_11129" [id=666, type=Constant];
-"667 Multiply_9694" [id=667, type=Constant];
-"668 Constant_11127" [id=668, type=Constant];
-"669 Constant_11126" [id=669, type=Constant];
-"670 Constant_11125" [id=670, type=Constant];
-"671 Constant_11124" [id=671, type=Constant];
-"672 Constant_11122" [id=672, type=Constant];
-"673 Constant_11121" [id=673, type=Constant];
-"674 Constant_11120" [id=674, type=Constant];
-"675 Constant_11119" [id=675, type=Constant];
-"676 Constant_9287" [id=676, type=Constant];
-"677 Multiply_9279/fq_weights_1" [id=677, type=FakeQuantize];
-"678 Constant_11117" [id=678, type=Constant];
-"679 Constant_11116" [id=679, type=Constant];
-"680 Constant_11115" [id=680, type=Constant];
-"681 Constant_11114" [id=681, type=Constant];
-"682 Multiply_9688" [id=682, type=Constant];
-"683 Constant_11112" [id=683, type=Constant];
-"684 Constant_11111" [id=684, type=Constant];
-"685 Constant_11110" [id=685, type=Constant];
-"686 Constant_11109" [id=686, type=Constant];
-"687 Constant_9273" [id=687, type=Constant];
-"688 Multiply_9265/fq_weights_1" [id=688, type=FakeQuantize];
-"689 Constant_11107" [id=689, type=Constant];
-"690 Constant_11106" [id=690, type=Constant];
-"691 Constant_11105" [id=691, type=Constant];
-"692 Constant_11104" [id=692, type=Constant];
-"693 Multiply_9683" [id=693, type=Constant];
-"694 Constant_11102" [id=694, type=Constant];
-"695 Constant_11101" [id=695, type=Constant];
-"696 Constant_11100" [id=696, type=Constant];
-"697 Constant_11099" [id=697, type=Constant];
-"698 Constant_9259" [id=698, type=Constant];
-"699 Multiply_9251/fq_weights_1" [id=699, type=FakeQuantize];
-"700 Constant_11097" [id=700, type=Constant];
-"701 Constant_11096" [id=701, type=Constant];
-"702 Constant_11095" [id=702, type=Constant];
-"703 Constant_11094" [id=703, type=Constant];
-"704 Multiply_9677" [id=704, type=Constant];
-"705 Constant_11092" [id=705, type=Constant];
-"706 Constant_11091" [id=706, type=Constant];
-"707 Constant_11090" [id=707, type=Constant];
-"708 Constant_11089" [id=708, type=Constant];
-"709 Constant_9245" [id=709, type=Constant];
-"710 Multiply_9237/fq_weights_1" [id=710, type=FakeQuantize];
-"711 Constant_11087" [id=711, type=Constant];
-"712 Constant_11086" [id=712, type=Constant];
-"713 Constant_11085" [id=713, type=Constant];
-"714 Constant_11084" [id=714, type=Constant];
-"715 Multiply_9671" [id=715, type=Constant];
-"716 Constant_11082" [id=716, type=Constant];
-"717 Constant_11081" [id=717, type=Constant];
-"718 Constant_11080" [id=718, type=Constant];
-"719 Constant_11079" [id=719, type=Constant];
-"720 Constant_9231" [id=720, type=Constant];
-"721 Multiply_9223/fq_weights_1" [id=721, type=FakeQuantize];
-"722 Constant_11077" [id=722, type=Constant];
-"723 Constant_11076" [id=723, type=Constant];
-"724 Constant_11075" [id=724, type=Constant];
-"725 Constant_11074" [id=725, type=Constant];
-"726 Multiply_9666" [id=726, type=Constant];
-"727 Constant_11072" [id=727, type=Constant];
-"728 Constant_11071" [id=728, type=Constant];
-"729 Constant_11070" [id=729, type=Constant];
-"730 Constant_11069" [id=730, type=Constant];
-"731 Constant_9217" [id=731, type=Constant];
-"732 Multiply_9209/fq_weights_1" [id=732, type=FakeQuantize];
-"733 Constant_11067" [id=733, type=Constant];
-"734 Constant_11066" [id=734, type=Constant];
-"735 Constant_11065" [id=735, type=Constant];
-"736 Constant_11064" [id=736, type=Constant];
-"737 Multiply_9660" [id=737, type=Constant];
-"738 Constant_11062" [id=738, type=Constant];
-"739 Constant_11061" [id=739, type=Constant];
-"740 Constant_11060" [id=740, type=Constant];
-"741 Constant_11059" [id=741, type=Constant];
-"742 Constant_9203" [id=742, type=Constant];
-"743 Multiply_9195/fq_weights_1" [id=743, type=FakeQuantize];
-"744 Constant_11057" [id=744, type=Constant];
-"745 Constant_11056" [id=745, type=Constant];
-"746 Constant_11055" [id=746, type=Constant];
-"747 Constant_11054" [id=747, type=Constant];
-"748 Multiply_9654" [id=748, type=Constant];
-"749 Constant_11052" [id=749, type=Constant];
-"750 Constant_11051" [id=750, type=Constant];
-"751 Constant_11050" [id=751, type=Constant];
-"752 Constant_11049" [id=752, type=Constant];
-"753 Constant_11047" [id=753, type=Constant];
-"754 Constant_11046" [id=754, type=Constant];
-"755 Constant_11045" [id=755, type=Constant];
-"756 Constant_11044" [id=756, type=Constant];
-"757 Transpose_5257" [id=757, type=Constant];
-"758 Transpose_809" [id=758, type=Constant];
-"759 Transpose_5249" [id=759, type=Constant];
-"760 Transpose_800" [id=760, type=Constant];
-"761 Constant_5243" [id=761, type=Constant];
-"762 Constant_11042" [id=762, type=Constant];
-"763 Constant_11041" [id=763, type=Constant];
-"764 Constant_11040" [id=764, type=Constant];
-"765 Constant_11039" [id=765, type=Constant];
-"766 Constant_9189" [id=766, type=Constant];
-"767 Multiply_9181/fq_weights_1" [id=767, type=FakeQuantize];
-"768 Constant_11037" [id=768, type=Constant];
-"769 Constant_11036" [id=769, type=Constant];
-"770 Constant_11035" [id=770, type=Constant];
-"771 Constant_11034" [id=771, type=Constant];
-"772 Multiply_9649" [id=772, type=Constant];
-"773 Constant_11032" [id=773, type=Constant];
-"774 Constant_11031" [id=774, type=Constant];
-"775 Constant_11030" [id=775, type=Constant];
-"776 Constant_11029" [id=776, type=Constant];
-"777 Constant_9175" [id=777, type=Constant];
-"778 Multiply_9167/fq_weights_1" [id=778, type=FakeQuantize];
-"779 Constant_11027" [id=779, type=Constant];
-"780 Constant_11026" [id=780, type=Constant];
-"781 Constant_11025" [id=781, type=Constant];
-"782 Constant_11024" [id=782, type=Constant];
-"783 Gather_10068" [id=783, type=Constant];
-"784 Constant_11022" [id=784, type=Constant];
-"785 Constant_11021" [id=785, type=Constant];
-"786 Constant_11020" [id=786, type=Constant];
-"787 Constant_11019" [id=787, type=Constant];
-"788 Unsqueeze_7776" [id=788, type=Constant];
-"789 Unsqueeze_7782" [id=789, type=Constant];
-"790 Constant_7779" [id=790, type=Constant];
-"0 input_1" -> "1 Transpose_7780" [label="[1, 224, 224, 3]", style=solid];
-"1 Transpose_7780" -> "2 Transpose_7774" [label="[1, 3, 224, 224]", style=solid];
-"2 Transpose_7774" -> "3 Transpose_710" [label="[1, 3, 224, 224]", style=solid];
-"3 Transpose_710" -> "4 Transpose_710/fq_output_0" [label="[1, 3, 224, 224]", style=solid];
-"4 Transpose_710/fq_output_0" -> "5 Multiply_9167" [label="[1, 3, 224, 224]", style=solid];
-"5 Multiply_9167" -> "6 Transpose_5170" [label="[1, 16, 112, 112]", style=solid];
-"6 Transpose_5170" -> "7 Transpose_5188" [label="[1, 16, 112, 112]", style=solid];
-"7 Transpose_5188" -> "8 Transpose_5188/fq_output_0" [label="[1, 16, 112, 112]", style=solid];
-"8 Transpose_5188/fq_output_0" -> "9 Multiply_9181" [label="[1, 16, 112, 112]", style=solid];
-"9 Multiply_9181" -> "10 Transpose_5239" [label="[1, 16, 56, 56]", style=solid];
-"10 Transpose_5239" -> "11 Transpose_5241" [label="[1, 16, 56, 56]", style=solid];
-"11 Transpose_5241" -> "12 Transpose_5241/fq_output_0" [label="[1, 16, 56, 56]", style=solid];
-"12 Transpose_5241/fq_output_0" -> "13 Transpose_5245" [label="[1, 16, 56, 56]", style=solid];
-"12 Transpose_5241/fq_output_0" -> "14 Transpose_5277" [label="[1, 16, 56, 56]", style=solid];
-"13 Transpose_5245" -> "15 Convolution_801" [label="[1, 16, 1, 1]", style=solid];
-"14 Transpose_5277" -> "16 Transpose_5277/fq_output_0" [label="[1, 16, 56, 56]", style=solid];
-"15 Convolution_801" -> "17 Transpose_5251" [label="[1, 8, 1, 1]", style=solid];
-"16 Transpose_5277/fq_output_0" -> "18 Multiply_9195" [label="[1, 16, 56, 56]", style=solid];
-"17 Transpose_5251" -> "19 Transpose_5253" [label="[1, 8, 1, 1]", style=solid];
-"18 Multiply_9195" -> "20 Transpose_5301" [label="[1, 16, 56, 56]", style=solid];
-"19 Transpose_5253" -> "21 Convolution_810" [label="[1, 8, 1, 1]", style=solid];
-"20 Transpose_5301" -> "22 Transpose_5301/fq_output_0" [label="[1, 16, 56, 56]", style=solid];
-"21 Convolution_810" -> "23 Transpose_5259" [label="[1, 16, 1, 1]", style=solid];
-"22 Transpose_5301/fq_output_0" -> "24 Multiply_9209" [label="[1, 16, 56, 56]", style=solid];
-"23 Transpose_5259" -> "25 Transpose_5273" [label="[1, 16, 1, 1]", style=solid];
-"24 Multiply_9209" -> "26 Transpose_5325" [label="[1, 72, 56, 56]", style=solid];
-"25 Transpose_5273" -> "27 Transpose_5273/fq_output_0" [label="[1, 16, 1, 1]", style=solid];
-"26 Transpose_5325" -> "28 Transpose_5327" [label="[1, 72, 56, 56]", style=solid];
-"27 Transpose_5273/fq_output_0" -> "14 Transpose_5277" [label="[1, 16, 1, 1]", style=solid];
-"28 Transpose_5327" -> "29 Transpose_5327/fq_output_0" [label="[1, 72, 56, 56]", style=solid];
-"29 Transpose_5327/fq_output_0" -> "30 Multiply_9223" [label="[1, 72, 56, 56]", style=solid];
-"30 Multiply_9223" -> "31 Transpose_5378" [label="[1, 72, 28, 28]", style=solid];
-"31 Transpose_5378" -> "32 Transpose_5380" [label="[1, 72, 28, 28]", style=solid];
-"32 Transpose_5380" -> "33 Transpose_5380/fq_output_0" [label="[1, 72, 28, 28]", style=solid];
-"33 Transpose_5380/fq_output_0" -> "34 Multiply_9237" [label="[1, 72, 28, 28]", style=solid];
-"34 Multiply_9237" -> "35 Transpose_5404" [label="[1, 24, 28, 28]", style=solid];
-"35 Transpose_5404" -> "36 Transpose_5404/fq_output_0" [label="[1, 24, 28, 28]", style=solid];
-"36 Transpose_5404/fq_output_0" -> "37 Multiply_9251" [label="[1, 24, 28, 28]", style=solid];
-"36 Transpose_5404/fq_output_0" -> "38 Transpose_5484" [label="[1, 24, 28, 28]", style=solid];
-"37 Multiply_9251" -> "39 Transpose_5428" [label="[1, 88, 28, 28]", style=solid];
-"38 Transpose_5484" -> "40 Transpose_5484/fq_output_0" [label="[1, 24, 28, 28]", style=solid];
-"39 Transpose_5428" -> "41 Transpose_5430" [label="[1, 88, 28, 28]", style=solid];
-"40 Transpose_5484/fq_output_0" -> "42 Multiply_9293" [label="[1, 24, 28, 28]", style=solid];
-"41 Transpose_5430" -> "43 Transpose_5430/fq_output_0" [label="[1, 88, 28, 28]", style=solid];
-"42 Multiply_9293" -> "44 Transpose_5508" [label="[1, 96, 28, 28]", style=solid];
-"43 Transpose_5430/fq_output_0" -> "45 Multiply_9265" [label="[1, 88, 28, 28]", style=solid];
-"44 Transpose_5508" -> "46 Transpose_5526" [label="[1, 96, 28, 28]", style=solid];
-"45 Multiply_9265" -> "47 Transpose_5454" [label="[1, 88, 28, 28]", style=solid];
-"46 Transpose_5526" -> "48 Transpose_5526/fq_output_0" [label="[1, 96, 28, 28]", style=solid];
-"47 Transpose_5454" -> "49 Transpose_5456" [label="[1, 88, 28, 28]", style=solid];
-"48 Transpose_5526/fq_output_0" -> "50 Multiply_9307" [label="[1, 96, 28, 28]", style=solid];
-"49 Transpose_5456" -> "51 Transpose_5456/fq_output_0" [label="[1, 88, 28, 28]", style=solid];
-"50 Multiply_9307" -> "52 Transpose_5577" [label="[1, 96, 14, 14]", style=solid];
-"51 Transpose_5456/fq_output_0" -> "53 Multiply_9279" [label="[1, 88, 28, 28]", style=solid];
-"52 Transpose_5577" -> "54 Transpose_5595" [label="[1, 96, 14, 14]", style=solid];
-"53 Multiply_9279" -> "55 Transpose_5480" [label="[1, 24, 28, 28]", style=solid];
-"54 Transpose_5595" -> "56 Transpose_5595/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"55 Transpose_5480" -> "57 Transpose_5480/fq_output_0" [label="[1, 24, 28, 28]", style=solid];
-"56 Transpose_5595/fq_output_0" -> "58 Transpose_5599" [label="[1, 96, 14, 14]", style=solid];
-"56 Transpose_5595/fq_output_0" -> "59 Transpose_5631" [label="[1, 96, 14, 14]", style=solid];
-"57 Transpose_5480/fq_output_0" -> "38 Transpose_5484" [label="[1, 24, 28, 28]", style=solid];
-"58 Transpose_5599" -> "60 Convolution_1132" [label="[1, 96, 1, 1]", style=solid];
-"59 Transpose_5631" -> "61 Transpose_5631/fq_output_0" [label="[1, 96, 14, 14]", style=solid];
-"60 Convolution_1132" -> "62 Transpose_5605" [label="[1, 24, 1, 1]", style=solid];
-"61 Transpose_5631/fq_output_0" -> "63 Multiply_9321" [label="[1, 96, 14, 14]", style=solid];
-"62 Transpose_5605" -> "64 Transpose_5607" [label="[1, 24, 1, 1]", style=solid];
-"63 Multiply_9321" -> "65 Transpose_5655" [label="[1, 40, 14, 14]", style=solid];
-"64 Transpose_5607" -> "66 Convolution_1141" [label="[1, 24, 1, 1]", style=solid];
-"65 Transpose_5655" -> "67 Transpose_5655/fq_output_0" [label="[1, 40, 14, 14]", style=solid];
-"66 Convolution_1141" -> "68 Transpose_5613" [label="[1, 96, 1, 1]", style=solid];
-"67 Transpose_5655/fq_output_0" -> "69 Multiply_9335" [label="[1, 40, 14, 14]", style=solid];
-"67 Transpose_5655/fq_output_0" -> "70 Transpose_5803" [label="[1, 40, 14, 14]", style=solid];
-"68 Transpose_5613" -> "71 Transpose_5627" [label="[1, 96, 1, 1]", style=solid];
-"69 Multiply_9335" -> "72 Transpose_5679" [label="[1, 240, 14, 14]", style=solid];
-"70 Transpose_5803" -> "73 Transpose_5803/fq_output_0" [label="[1, 40, 14, 14]", style=solid];
-"71 Transpose_5627" -> "74 Transpose_5627/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"72 Transpose_5679" -> "75 Transpose_5697" [label="[1, 240, 14, 14]", style=solid];
-"73 Transpose_5803/fq_output_0" -> "76 Multiply_9377" [label="[1, 40, 14, 14]", style=solid];
-"73 Transpose_5803/fq_output_0" -> "77 Transpose_5951" [label="[1, 40, 14, 14]", style=solid];
-"74 Transpose_5627/fq_output_0" -> "59 Transpose_5631" [label="[1, 96, 1, 1]", style=solid];
-"75 Transpose_5697" -> "78 Transpose_5697/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"76 Multiply_9377" -> "79 Transpose_5827" [label="[1, 240, 14, 14]", style=solid];
-"77 Transpose_5951" -> "80 Transpose_5951/fq_output_0" [label="[1, 40, 14, 14]", style=solid];
-"78 Transpose_5697/fq_output_0" -> "81 Multiply_9349" [label="[1, 240, 14, 14]", style=solid];
-"79 Transpose_5827" -> "82 Transpose_5845" [label="[1, 240, 14, 14]", style=solid];
-"80 Transpose_5951/fq_output_0" -> "83 Multiply_9419" [label="[1, 40, 14, 14]", style=solid];
-"81 Multiply_9349" -> "84 Transpose_5721" [label="[1, 240, 14, 14]", style=solid];
-"82 Transpose_5845" -> "85 Transpose_5845/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"83 Multiply_9419" -> "86 Transpose_5975" [label="[1, 120, 14, 14]", style=solid];
-"84 Transpose_5721" -> "87 Transpose_5739" [label="[1, 240, 14, 14]", style=solid];
-"85 Transpose_5845/fq_output_0" -> "88 Multiply_9391" [label="[1, 240, 14, 14]", style=solid];
-"86 Transpose_5975" -> "89 Transpose_5993" [label="[1, 120, 14, 14]", style=solid];
-"87 Transpose_5739" -> "90 Transpose_5739/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"88 Multiply_9391" -> "91 Transpose_5869" [label="[1, 240, 14, 14]", style=solid];
-"89 Transpose_5993" -> "92 Transpose_5993/fq_output_0" [label="[1, 120, 14, 14]", style=solid];
-"90 Transpose_5739/fq_output_0" -> "93 Transpose_5743" [label="[1, 240, 14, 14]", style=solid];
-"90 Transpose_5739/fq_output_0" -> "94 Transpose_5775" [label="[1, 240, 14, 14]", style=solid];
-"91 Transpose_5869" -> "95 Transpose_5887" [label="[1, 240, 14, 14]", style=solid];
-"92 Transpose_5993/fq_output_0" -> "96 Multiply_9433" [label="[1, 120, 14, 14]", style=solid];
-"93 Transpose_5743" -> "97 Convolution_1242" [label="[1, 240, 1, 1]", style=solid];
-"94 Transpose_5775" -> "98 Transpose_5775/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"95 Transpose_5887" -> "99 Transpose_5887/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"96 Multiply_9433" -> "100 Transpose_6017" [label="[1, 120, 14, 14]", style=solid];
-"97 Convolution_1242" -> "101 Transpose_5749" [label="[1, 64, 1, 1]", style=solid];
-"98 Transpose_5775/fq_output_0" -> "102 Multiply_9363" [label="[1, 240, 14, 14]", style=solid];
-"99 Transpose_5887/fq_output_0" -> "103 Transpose_5891" [label="[1, 240, 14, 14]", style=solid];
-"99 Transpose_5887/fq_output_0" -> "104 Transpose_5923" [label="[1, 240, 14, 14]", style=solid];
-"100 Transpose_6017" -> "105 Transpose_6035" [label="[1, 120, 14, 14]", style=solid];
-"101 Transpose_5749" -> "106 Transpose_5751" [label="[1, 64, 1, 1]", style=solid];
-"102 Multiply_9363" -> "107 Transpose_5799" [label="[1, 40, 14, 14]", style=solid];
-"103 Transpose_5891" -> "108 Convolution_1353" [label="[1, 240, 1, 1]", style=solid];
-"104 Transpose_5923" -> "109 Transpose_5923/fq_output_0" [label="[1, 240, 14, 14]", style=solid];
-"105 Transpose_6035" -> "110 Transpose_6035/fq_output_0" [label="[1, 120, 14, 14]", style=solid];
-"106 Transpose_5751" -> "111 Convolution_1251" [label="[1, 64, 1, 1]", style=solid];
-"107 Transpose_5799" -> "112 Transpose_5799/fq_output_0" [label="[1, 40, 14, 14]", style=solid];
-"108 Convolution_1353" -> "113 Transpose_5897" [label="[1, 64, 1, 1]", style=solid];
-"109 Transpose_5923/fq_output_0" -> "114 Multiply_9405" [label="[1, 240, 14, 14]", style=solid];
-"110 Transpose_6035/fq_output_0" -> "115 Transpose_6039" [label="[1, 120, 14, 14]", style=solid];
-"110 Transpose_6035/fq_output_0" -> "116 Transpose_6071" [label="[1, 120, 14, 14]", style=solid];
-"111 Convolution_1251" -> "117 Transpose_5757" [label="[1, 240, 1, 1]", style=solid];
-"112 Transpose_5799/fq_output_0" -> "70 Transpose_5803" [label="[1, 40, 14, 14]", style=solid];
-"113 Transpose_5897" -> "118 Transpose_5899" [label="[1, 64, 1, 1]", style=solid];
-"114 Multiply_9405" -> "119 Transpose_5947" [label="[1, 40, 14, 14]", style=solid];
-"115 Transpose_6039" -> "120 Convolution_1464" [label="[1, 120, 1, 1]", style=solid];
-"116 Transpose_6071" -> "121 Transpose_6071/fq_output_0" [label="[1, 120, 14, 14]", style=solid];
-"117 Transpose_5757" -> "122 Transpose_5771" [label="[1, 240, 1, 1]", style=solid];
-"118 Transpose_5899" -> "123 Convolution_1362" [label="[1, 64, 1, 1]", style=solid];
-"119 Transpose_5947" -> "124 Transpose_5947/fq_output_0" [label="[1, 40, 14, 14]", style=solid];
-"120 Convolution_1464" -> "125 Transpose_6045" [label="[1, 32, 1, 1]", style=solid];
-"121 Transpose_6071/fq_output_0" -> "126 Multiply_9447" [label="[1, 120, 14, 14]", style=solid];
-"122 Transpose_5771" -> "127 Transpose_5771/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"123 Convolution_1362" -> "128 Transpose_5905" [label="[1, 240, 1, 1]", style=solid];
-"124 Transpose_5947/fq_output_0" -> "77 Transpose_5951" [label="[1, 40, 14, 14]", style=solid];
-"125 Transpose_6045" -> "129 Transpose_6047" [label="[1, 32, 1, 1]", style=solid];
-"126 Multiply_9447" -> "130 Transpose_6095" [label="[1, 48, 14, 14]", style=solid];
-"127 Transpose_5771/fq_output_0" -> "94 Transpose_5775" [label="[1, 240, 1, 1]", style=solid];
-"128 Transpose_5905" -> "131 Transpose_5919" [label="[1, 240, 1, 1]", style=solid];
-"129 Transpose_6047" -> "132 Convolution_1473" [label="[1, 32, 1, 1]", style=solid];
-"130 Transpose_6095" -> "133 Transpose_6095/fq_output_0" [label="[1, 48, 14, 14]", style=solid];
-"131 Transpose_5919" -> "134 Transpose_5919/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"132 Convolution_1473" -> "135 Transpose_6053" [label="[1, 120, 1, 1]", style=solid];
-"133 Transpose_6095/fq_output_0" -> "136 Multiply_9461" [label="[1, 48, 14, 14]", style=solid];
-"133 Transpose_6095/fq_output_0" -> "137 Transpose_6243" [label="[1, 48, 14, 14]", style=solid];
-"134 Transpose_5919/fq_output_0" -> "104 Transpose_5923" [label="[1, 240, 1, 1]", style=solid];
-"135 Transpose_6053" -> "138 Transpose_6067" [label="[1, 120, 1, 1]", style=solid];
-"136 Multiply_9461" -> "139 Transpose_6119" [label="[1, 144, 14, 14]", style=solid];
-"137 Transpose_6243" -> "140 Transpose_6243/fq_output_0" [label="[1, 48, 14, 14]", style=solid];
-"138 Transpose_6067" -> "141 Transpose_6067/fq_output_0" [label="[1, 120, 1, 1]", style=solid];
-"139 Transpose_6119" -> "142 Transpose_6137" [label="[1, 144, 14, 14]", style=solid];
-"140 Transpose_6243/fq_output_0" -> "143 Multiply_9503" [label="[1, 48, 14, 14]", style=solid];
-"141 Transpose_6067/fq_output_0" -> "116 Transpose_6071" [label="[1, 120, 1, 1]", style=solid];
-"142 Transpose_6137" -> "144 Transpose_6137/fq_output_0" [label="[1, 144, 14, 14]", style=solid];
-"143 Multiply_9503" -> "145 Transpose_6267" [label="[1, 288, 14, 14]", style=solid];
-"144 Transpose_6137/fq_output_0" -> "146 Multiply_9475" [label="[1, 144, 14, 14]", style=solid];
-"145 Transpose_6267" -> "147 Transpose_6285" [label="[1, 288, 14, 14]", style=solid];
-"146 Multiply_9475" -> "148 Transpose_6161" [label="[1, 144, 14, 14]", style=solid];
-"147 Transpose_6285" -> "149 Transpose_6285/fq_output_0" [label="[1, 288, 14, 14]", style=solid];
-"148 Transpose_6161" -> "150 Transpose_6179" [label="[1, 144, 14, 14]", style=solid];
-"149 Transpose_6285/fq_output_0" -> "151 Multiply_9517" [label="[1, 288, 14, 14]", style=solid];
-"150 Transpose_6179" -> "152 Transpose_6179/fq_output_0" [label="[1, 144, 14, 14]", style=solid];
-"151 Multiply_9517" -> "153 Transpose_6336" [label="[1, 288, 7, 7]", style=solid];
-"152 Transpose_6179/fq_output_0" -> "154 Transpose_6183" [label="[1, 144, 14, 14]", style=solid];
-"152 Transpose_6179/fq_output_0" -> "155 Transpose_6215" [label="[1, 144, 14, 14]", style=solid];
-"153 Transpose_6336" -> "156 Transpose_6354" [label="[1, 288, 7, 7]", style=solid];
-"154 Transpose_6183" -> "157 Convolution_1574" [label="[1, 144, 1, 1]", style=solid];
-"155 Transpose_6215" -> "158 Transpose_6215/fq_output_0" [label="[1, 144, 14, 14]", style=solid];
-"156 Transpose_6354" -> "159 Transpose_6354/fq_output_0" [label="[1, 288, 7, 7]", style=solid];
-"157 Convolution_1574" -> "160 Transpose_6189" [label="[1, 40, 1, 1]", style=solid];
-"158 Transpose_6215/fq_output_0" -> "161 Multiply_9489" [label="[1, 144, 14, 14]", style=solid];
-"159 Transpose_6354/fq_output_0" -> "162 Transpose_6358" [label="[1, 288, 7, 7]", style=solid];
-"159 Transpose_6354/fq_output_0" -> "163 Transpose_6390" [label="[1, 288, 7, 7]", style=solid];
-"160 Transpose_6189" -> "164 Transpose_6191" [label="[1, 40, 1, 1]", style=solid];
-"161 Multiply_9489" -> "165 Transpose_6239" [label="[1, 48, 14, 14]", style=solid];
-"162 Transpose_6358" -> "166 Convolution_1713" [label="[1, 288, 1, 1]", style=solid];
-"163 Transpose_6390" -> "167 Transpose_6390/fq_output_0" [label="[1, 288, 7, 7]", style=solid];
-"164 Transpose_6191" -> "168 Convolution_1583" [label="[1, 40, 1, 1]", style=solid];
-"165 Transpose_6239" -> "169 Transpose_6239/fq_output_0" [label="[1, 48, 14, 14]", style=solid];
-"166 Convolution_1713" -> "170 Transpose_6364" [label="[1, 72, 1, 1]", style=solid];
-"167 Transpose_6390/fq_output_0" -> "171 Multiply_9531" [label="[1, 288, 7, 7]", style=solid];
-"168 Convolution_1583" -> "172 Transpose_6197" [label="[1, 144, 1, 1]", style=solid];
-"169 Transpose_6239/fq_output_0" -> "137 Transpose_6243" [label="[1, 48, 14, 14]", style=solid];
-"170 Transpose_6364" -> "173 Transpose_6366" [label="[1, 72, 1, 1]", style=solid];
-"171 Multiply_9531" -> "174 Transpose_6414" [label="[1, 96, 7, 7]", style=solid];
-"172 Transpose_6197" -> "175 Transpose_6211" [label="[1, 144, 1, 1]", style=solid];
-"173 Transpose_6366" -> "176 Convolution_1722" [label="[1, 72, 1, 1]", style=solid];
-"174 Transpose_6414" -> "177 Transpose_6414/fq_output_0" [label="[1, 96, 7, 7]", style=solid];
-"175 Transpose_6211" -> "178 Transpose_6211/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"176 Convolution_1722" -> "179 Transpose_6372" [label="[1, 288, 1, 1]", style=solid];
-"177 Transpose_6414/fq_output_0" -> "180 Multiply_9545" [label="[1, 96, 7, 7]", style=solid];
-"177 Transpose_6414/fq_output_0" -> "181 Transpose_6562" [label="[1, 96, 7, 7]", style=solid];
-"178 Transpose_6211/fq_output_0" -> "155 Transpose_6215" [label="[1, 144, 1, 1]", style=solid];
-"179 Transpose_6372" -> "182 Transpose_6386" [label="[1, 288, 1, 1]", style=solid];
-"180 Multiply_9545" -> "183 Transpose_6438" [label="[1, 576, 7, 7]", style=solid];
-"181 Transpose_6562" -> "184 Transpose_6562/fq_output_0" [label="[1, 96, 7, 7]", style=solid];
-"182 Transpose_6386" -> "185 Transpose_6386/fq_output_0" [label="[1, 288, 1, 1]", style=solid];
-"183 Transpose_6438" -> "186 Transpose_6456" [label="[1, 576, 7, 7]", style=solid];
-"184 Transpose_6562/fq_output_0" -> "187 Multiply_9587" [label="[1, 96, 7, 7]", style=solid];
-"184 Transpose_6562/fq_output_0" -> "188 Transpose_6710" [label="[1, 96, 7, 7]", style=solid];
-"185 Transpose_6386/fq_output_0" -> "163 Transpose_6390" [label="[1, 288, 1, 1]", style=solid];
-"186 Transpose_6456" -> "189 Transpose_6456/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"187 Multiply_9587" -> "190 Transpose_6586" [label="[1, 576, 7, 7]", style=solid];
-"188 Transpose_6710" -> "191 Transpose_6710/fq_output_0" [label="[1, 96, 7, 7]", style=solid];
-"189 Transpose_6456/fq_output_0" -> "192 Multiply_9559" [label="[1, 576, 7, 7]", style=solid];
-"190 Transpose_6586" -> "193 Transpose_6604" [label="[1, 576, 7, 7]", style=solid];
-"191 Transpose_6710/fq_output_0" -> "194 Multiply_9629" [label="[1, 96, 7, 7]", style=solid];
-"192 Multiply_9559" -> "195 Transpose_6480" [label="[1, 576, 7, 7]", style=solid];
-"193 Transpose_6604" -> "196 Transpose_6604/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"194 Multiply_9629" -> "197 Transpose_6734" [label="[1, 576, 7, 7]", style=solid];
-"195 Transpose_6480" -> "198 Transpose_6498" [label="[1, 576, 7, 7]", style=solid];
-"196 Transpose_6604/fq_output_0" -> "199 Multiply_9601" [label="[1, 576, 7, 7]", style=solid];
-"197 Transpose_6734" -> "200 Transpose_6752" [label="[1, 576, 7, 7]", style=solid];
-"198 Transpose_6498" -> "201 Transpose_6498/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"199 Multiply_9601" -> "202 Transpose_6628" [label="[1, 576, 7, 7]", style=solid];
-"200 Transpose_6752" -> "203 Transpose_6752/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"201 Transpose_6498/fq_output_0" -> "204 Transpose_6502" [label="[1, 576, 7, 7]", style=solid];
-"201 Transpose_6498/fq_output_0" -> "205 Transpose_6534" [label="[1, 576, 7, 7]", style=solid];
-"202 Transpose_6628" -> "206 Transpose_6646" [label="[1, 576, 7, 7]", style=solid];
-"203 Transpose_6752/fq_output_0" -> "207 Transpose_6756" [label="[1, 576, 7, 7]", style=solid];
-"204 Transpose_6502" -> "208 Convolution_1823" [label="[1, 576, 1, 1]", style=solid];
-"205 Transpose_6534" -> "209 Transpose_6534/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"206 Transpose_6646" -> "210 Transpose_6646/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"207 Transpose_6756" -> "211 Transpose_6756/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"208 Convolution_1823" -> "212 Transpose_6508" [label="[1, 144, 1, 1]", style=solid];
-"209 Transpose_6534/fq_output_0" -> "213 Multiply_9573" [label="[1, 576, 7, 7]", style=solid];
-"210 Transpose_6646/fq_output_0" -> "214 Transpose_6650" [label="[1, 576, 7, 7]", style=solid];
-"210 Transpose_6646/fq_output_0" -> "215 Transpose_6682" [label="[1, 576, 7, 7]", style=solid];
-"211 Transpose_6756/fq_output_0" -> "216 Convolution_2013" [label="[1, 576, 1, 1]", style=solid];
-"212 Transpose_6508" -> "217 Transpose_6510" [label="[1, 144, 1, 1]", style=solid];
-"213 Multiply_9573" -> "218 Transpose_6558" [label="[1, 96, 7, 7]", style=solid];
-"214 Transpose_6650" -> "219 Convolution_1934" [label="[1, 576, 1, 1]", style=solid];
-"215 Transpose_6682" -> "220 Transpose_6682/fq_output_0" [label="[1, 576, 7, 7]", style=solid];
-"216 Convolution_2013" -> "221 Transpose_6762" [label="[1, 1024, 1, 1]", style=solid];
-"217 Transpose_6510" -> "222 Convolution_1832" [label="[1, 144, 1, 1]", style=solid];
-"218 Transpose_6558" -> "223 Transpose_6558/fq_output_0" [label="[1, 96, 7, 7]", style=solid];
-"219 Convolution_1934" -> "224 Transpose_6656" [label="[1, 144, 1, 1]", style=solid];
-"220 Transpose_6682/fq_output_0" -> "225 Multiply_9615" [label="[1, 576, 7, 7]", style=solid];
-"221 Transpose_6762" -> "226 Transpose_6780" [label="[1, 1024, 1, 1]", style=solid];
-"222 Convolution_1832" -> "227 Transpose_6516" [label="[1, 576, 1, 1]", style=solid];
-"223 Transpose_6558/fq_output_0" -> "181 Transpose_6562" [label="[1, 96, 7, 7]", style=solid];
-"224 Transpose_6656" -> "228 Transpose_6658" [label="[1, 144, 1, 1]", style=solid];
-"225 Multiply_9615" -> "229 Transpose_6706" [label="[1, 96, 7, 7]", style=solid];
-"226 Transpose_6780" -> "230 Transpose_6780/fq_output_0" [label="[1, 1024, 1, 1]", style=solid];
-"227 Transpose_6516" -> "231 Transpose_6530" [label="[1, 576, 1, 1]", style=solid];
-"228 Transpose_6658" -> "232 Convolution_1943" [label="[1, 144, 1, 1]", style=solid];
-"229 Transpose_6706" -> "233 Transpose_6706/fq_output_0" [label="[1, 96, 7, 7]", style=solid];
-"230 Transpose_6780/fq_output_0" -> "234 Convolution_2025" [label="[1, 1024, 1, 1]", style=solid];
-"231 Transpose_6530" -> "235 Transpose_6530/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"232 Convolution_1943" -> "236 Transpose_6664" [label="[1, 576, 1, 1]", style=solid];
-"233 Transpose_6706/fq_output_0" -> "188 Transpose_6710" [label="[1, 96, 7, 7]", style=solid];
-"234 Convolution_2025" -> "237 Transpose_6786" [label="[1, 1000, 1, 1]", style=solid];
-"235 Transpose_6530/fq_output_0" -> "205 Transpose_6534" [label="[1, 576, 1, 1]", style=solid];
-"236 Transpose_6664" -> "238 Transpose_6678" [label="[1, 576, 1, 1]", style=solid];
-"237 Transpose_6786" -> "239 MobilenetV3small/Logits/BiasAdd" [label="[1, 1000, 1, 1]", style=solid];
-"238 Transpose_6678" -> "240 Transpose_6678/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"239 MobilenetV3small/Logits/BiasAdd" -> "241 MobilenetV3small/flatten/Reshape" [label="[1, 1, 1, 1000]", style=solid];
-"240 Transpose_6678/fq_output_0" -> "215 Transpose_6682" [label="[1, 576, 1, 1]", style=solid];
-"241 MobilenetV3small/flatten/Reshape" -> "242 MobilenetV3small/Predictions/Softmax" [label="[1, 1000]", style=solid];
-"242 MobilenetV3small/Predictions/Softmax" -> "243 Predictions" [label="[1, 1000]", style=solid];
-"244 MobilenetV3small/flatten/Const" -> "241 MobilenetV3small/flatten/Reshape" [label="[2]", style=dashed];
-"245 Constant_8887" -> "239 MobilenetV3small/Logits/BiasAdd" [label="[4]", style=dashed];
-"246 Transpose_6784" -> "237 Transpose_6786" [label="[1, 1000, 1, 1]", style=solid];
-"247 Convolution_2025/fq_weights_1" -> "234 Convolution_2025" [label="[1000, 1024, 1, 1]", style=solid];
-"248 Constant_11502" -> "247 Convolution_2025/fq_weights_1" [label="[1000, 1, 1, 1]", style=solid];
-"249 Constant_11501" -> "247 Convolution_2025/fq_weights_1" [label="[1000, 1, 1, 1]", style=solid];
-"250 Constant_11500" -> "247 Convolution_2025/fq_weights_1" [label="[1000, 1, 1, 1]", style=solid];
-"251 Constant_11499" -> "247 Convolution_2025/fq_weights_1" [label="[1000, 1, 1, 1]", style=solid];
-"252 Transpose_2024" -> "247 Convolution_2025/fq_weights_1" [label="[1000, 1024, 1, 1]", style=solid];
-"253 Constant_11497" -> "230 Transpose_6780/fq_output_0" [label="[]", style=solid];
-"254 Constant_11496" -> "230 Transpose_6780/fq_output_0" [label="[]", style=solid];
-"255 Constant_11495" -> "230 Transpose_6780/fq_output_0" [label="[]", style=solid];
-"256 Constant_11494" -> "230 Transpose_6780/fq_output_0" [label="[]", style=solid];
-"257 Transpose_6760" -> "221 Transpose_6762" [label="[1, 1024, 1, 1]", style=solid];
-"258 Convolution_2013/fq_weights_1" -> "216 Convolution_2013" [label="[1024, 576, 1, 1]", style=solid];
-"259 Constant_11492" -> "258 Convolution_2013/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"260 Constant_11491" -> "258 Convolution_2013/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"261 Constant_11490" -> "258 Convolution_2013/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"262 Constant_11489" -> "258 Convolution_2013/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"263 Transpose_2012" -> "258 Convolution_2013/fq_weights_1" [label="[1024, 576, 1, 1]", style=solid];
-"264 Constant_11487" -> "211 Transpose_6756/fq_output_0" [label="[]", style=solid];
-"265 Constant_11486" -> "211 Transpose_6756/fq_output_0" [label="[]", style=solid];
-"266 Constant_11485" -> "211 Transpose_6756/fq_output_0" [label="[]", style=solid];
-"267 Constant_11484" -> "211 Transpose_6756/fq_output_0" [label="[]", style=solid];
-"268 Constant_6754" -> "207 Transpose_6756" [label="[2]", style=dashed];
-"269 Constant_11482" -> "203 Transpose_6752/fq_output_0" [label="[]", style=solid];
-"270 Constant_11481" -> "203 Transpose_6752/fq_output_0" [label="[]", style=solid];
-"271 Constant_11480" -> "203 Transpose_6752/fq_output_0" [label="[]", style=solid];
-"272 Constant_11479" -> "203 Transpose_6752/fq_output_0" [label="[]", style=solid];
-"273 Constant_9637" -> "197 Transpose_6734" [label="[1, 576, 1, 1]", style=solid];
-"274 Multiply_9629/fq_weights_1" -> "194 Multiply_9629" [label="[576, 96, 1, 1]", style=solid];
-"275 Constant_11477" -> "274 Multiply_9629/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"276 Constant_11476" -> "274 Multiply_9629/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"277 Constant_11475" -> "274 Multiply_9629/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"278 Constant_11474" -> "274 Multiply_9629/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"279 Multiply_9830" -> "274 Multiply_9629/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"280 Constant_11472" -> "191 Transpose_6710/fq_output_0" [label="[]", style=solid];
-"281 Constant_11471" -> "191 Transpose_6710/fq_output_0" [label="[]", style=solid];
-"282 Constant_11470" -> "191 Transpose_6710/fq_output_0" [label="[]", style=solid];
-"283 Constant_11469" -> "191 Transpose_6710/fq_output_0" [label="[]", style=solid];
-"284 Constant_11467" -> "233 Transpose_6706/fq_output_0" [label="[]", style=solid];
-"285 Constant_11466" -> "233 Transpose_6706/fq_output_0" [label="[]", style=solid];
-"286 Constant_11465" -> "233 Transpose_6706/fq_output_0" [label="[]", style=solid];
-"287 Constant_11464" -> "233 Transpose_6706/fq_output_0" [label="[]", style=solid];
-"288 Constant_9623" -> "229 Transpose_6706" [label="[1, 96, 1, 1]", style=solid];
-"289 Multiply_9615/fq_weights_1" -> "225 Multiply_9615" [label="[96, 576, 1, 1]", style=solid];
-"290 Constant_11462" -> "289 Multiply_9615/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"291 Constant_11461" -> "289 Multiply_9615/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"292 Constant_11460" -> "289 Multiply_9615/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"293 Constant_11459" -> "289 Multiply_9615/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"294 Multiply_9824" -> "289 Multiply_9615/fq_weights_1" [label="[96, 576, 1, 1]", style=solid];
-"295 Constant_11457" -> "220 Transpose_6682/fq_output_0" [label="[]", style=solid];
-"296 Constant_11456" -> "220 Transpose_6682/fq_output_0" [label="[]", style=solid];
-"297 Constant_11455" -> "220 Transpose_6682/fq_output_0" [label="[]", style=solid];
-"298 Constant_11454" -> "220 Transpose_6682/fq_output_0" [label="[]", style=solid];
-"299 Constant_11452" -> "240 Transpose_6678/fq_output_0" [label="[]", style=solid];
-"300 Constant_11451" -> "240 Transpose_6678/fq_output_0" [label="[]", style=solid];
-"301 Constant_11450" -> "240 Transpose_6678/fq_output_0" [label="[]", style=solid];
-"302 Constant_11449" -> "240 Transpose_6678/fq_output_0" [label="[]", style=solid];
-"303 Transpose_6662" -> "236 Transpose_6664" [label="[1, 576, 1, 1]", style=solid];
-"304 Transpose_1942" -> "232 Convolution_1943" [label="[576, 144, 1, 1]", style=solid];
-"305 Transpose_6654" -> "224 Transpose_6656" [label="[1, 144, 1, 1]", style=solid];
-"306 Transpose_1933" -> "219 Convolution_1934" [label="[144, 576, 1, 1]", style=solid];
-"307 Constant_6648" -> "214 Transpose_6650" [label="[2]", style=dashed];
-"308 Constant_11447" -> "210 Transpose_6646/fq_output_0" [label="[]", style=solid];
-"309 Constant_11446" -> "210 Transpose_6646/fq_output_0" [label="[]", style=solid];
-"310 Constant_11445" -> "210 Transpose_6646/fq_output_0" [label="[]", style=solid];
-"311 Constant_11444" -> "210 Transpose_6646/fq_output_0" [label="[]", style=solid];
-"312 Constant_9609" -> "202 Transpose_6628" [label="[1, 576, 1, 1]", style=solid];
-"313 Multiply_9601/fq_weights_1" -> "199 Multiply_9601" [label="[576, 1, 1, 5, 5]", style=solid];
-"314 Constant_11442" -> "313 Multiply_9601/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"315 Constant_11441" -> "313 Multiply_9601/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"316 Constant_11440" -> "313 Multiply_9601/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"317 Constant_11439" -> "313 Multiply_9601/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"318 Multiply_9819" -> "313 Multiply_9601/fq_weights_1" [label="[576, 1, 1, 5, 5]", style=solid];
-"319 Constant_11437" -> "196 Transpose_6604/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"320 Constant_11436" -> "196 Transpose_6604/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"321 Constant_11435" -> "196 Transpose_6604/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"322 Constant_11434" -> "196 Transpose_6604/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"323 Constant_9595" -> "190 Transpose_6586" [label="[1, 576, 1, 1]", style=solid];
-"324 Multiply_9587/fq_weights_1" -> "187 Multiply_9587" [label="[576, 96, 1, 1]", style=solid];
-"325 Constant_11432" -> "324 Multiply_9587/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"326 Constant_11431" -> "324 Multiply_9587/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"327 Constant_11430" -> "324 Multiply_9587/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"328 Constant_11429" -> "324 Multiply_9587/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"329 Multiply_9813" -> "324 Multiply_9587/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"330 Constant_11427" -> "184 Transpose_6562/fq_output_0" [label="[]", style=solid];
-"331 Constant_11426" -> "184 Transpose_6562/fq_output_0" [label="[]", style=solid];
-"332 Constant_11425" -> "184 Transpose_6562/fq_output_0" [label="[]", style=solid];
-"333 Constant_11424" -> "184 Transpose_6562/fq_output_0" [label="[]", style=solid];
-"334 Constant_11422" -> "223 Transpose_6558/fq_output_0" [label="[]", style=solid];
-"335 Constant_11421" -> "223 Transpose_6558/fq_output_0" [label="[]", style=solid];
-"336 Constant_11420" -> "223 Transpose_6558/fq_output_0" [label="[]", style=solid];
-"337 Constant_11419" -> "223 Transpose_6558/fq_output_0" [label="[]", style=solid];
-"338 Constant_9581" -> "218 Transpose_6558" [label="[1, 96, 1, 1]", style=solid];
-"339 Multiply_9573/fq_weights_1" -> "213 Multiply_9573" [label="[96, 576, 1, 1]", style=solid];
-"340 Constant_11417" -> "339 Multiply_9573/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"341 Constant_11416" -> "339 Multiply_9573/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"342 Constant_11415" -> "339 Multiply_9573/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"343 Constant_11414" -> "339 Multiply_9573/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"344 Multiply_9807" -> "339 Multiply_9573/fq_weights_1" [label="[96, 576, 1, 1]", style=solid];
-"345 Constant_11412" -> "209 Transpose_6534/fq_output_0" [label="[]", style=solid];
-"346 Constant_11411" -> "209 Transpose_6534/fq_output_0" [label="[]", style=solid];
-"347 Constant_11410" -> "209 Transpose_6534/fq_output_0" [label="[]", style=solid];
-"348 Constant_11409" -> "209 Transpose_6534/fq_output_0" [label="[]", style=solid];
-"349 Constant_11407" -> "235 Transpose_6530/fq_output_0" [label="[]", style=solid];
-"350 Constant_11406" -> "235 Transpose_6530/fq_output_0" [label="[]", style=solid];
-"351 Constant_11405" -> "235 Transpose_6530/fq_output_0" [label="[]", style=solid];
-"352 Constant_11404" -> "235 Transpose_6530/fq_output_0" [label="[]", style=solid];
-"353 Transpose_6514" -> "227 Transpose_6516" [label="[1, 576, 1, 1]", style=solid];
-"354 Transpose_1831" -> "222 Convolution_1832" [label="[576, 144, 1, 1]", style=solid];
-"355 Transpose_6506" -> "212 Transpose_6508" [label="[1, 144, 1, 1]", style=solid];
-"356 Transpose_1822" -> "208 Convolution_1823" [label="[144, 576, 1, 1]", style=solid];
-"357 Constant_6500" -> "204 Transpose_6502" [label="[2]", style=dashed];
-"358 Constant_11402" -> "201 Transpose_6498/fq_output_0" [label="[]", style=solid];
-"359 Constant_11401" -> "201 Transpose_6498/fq_output_0" [label="[]", style=solid];
-"360 Constant_11400" -> "201 Transpose_6498/fq_output_0" [label="[]", style=solid];
-"361 Constant_11399" -> "201 Transpose_6498/fq_output_0" [label="[]", style=solid];
-"362 Constant_9567" -> "195 Transpose_6480" [label="[1, 576, 1, 1]", style=solid];
-"363 Multiply_9559/fq_weights_1" -> "192 Multiply_9559" [label="[576, 1, 1, 5, 5]", style=solid];
-"364 Constant_11397" -> "363 Multiply_9559/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"365 Constant_11396" -> "363 Multiply_9559/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"366 Constant_11395" -> "363 Multiply_9559/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"367 Constant_11394" -> "363 Multiply_9559/fq_weights_1" [label="[576, 1, 1, 1, 1]", style=solid];
-"368 Multiply_9802" -> "363 Multiply_9559/fq_weights_1" [label="[576, 1, 1, 5, 5]", style=solid];
-"369 Constant_11392" -> "189 Transpose_6456/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"370 Constant_11391" -> "189 Transpose_6456/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"371 Constant_11390" -> "189 Transpose_6456/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"372 Constant_11389" -> "189 Transpose_6456/fq_output_0" [label="[1, 576, 1, 1]", style=solid];
-"373 Constant_9553" -> "183 Transpose_6438" [label="[1, 576, 1, 1]", style=solid];
-"374 Multiply_9545/fq_weights_1" -> "180 Multiply_9545" [label="[576, 96, 1, 1]", style=solid];
-"375 Constant_11387" -> "374 Multiply_9545/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"376 Constant_11386" -> "374 Multiply_9545/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"377 Constant_11385" -> "374 Multiply_9545/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"378 Constant_11384" -> "374 Multiply_9545/fq_weights_1" [label="[576, 1, 1, 1]", style=solid];
-"379 Multiply_9796" -> "374 Multiply_9545/fq_weights_1" [label="[576, 96, 1, 1]", style=solid];
-"380 Constant_11382" -> "177 Transpose_6414/fq_output_0" [label="[]", style=solid];
-"381 Constant_11381" -> "177 Transpose_6414/fq_output_0" [label="[]", style=solid];
-"382 Constant_11380" -> "177 Transpose_6414/fq_output_0" [label="[]", style=solid];
-"383 Constant_11379" -> "177 Transpose_6414/fq_output_0" [label="[]", style=solid];
-"384 Constant_9539" -> "174 Transpose_6414" [label="[1, 96, 1, 1]", style=solid];
-"385 Multiply_9531/fq_weights_1" -> "171 Multiply_9531" [label="[96, 288, 1, 1]", style=solid];
-"386 Constant_11377" -> "385 Multiply_9531/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"387 Constant_11376" -> "385 Multiply_9531/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"388 Constant_11375" -> "385 Multiply_9531/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"389 Constant_11374" -> "385 Multiply_9531/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"390 Multiply_9790" -> "385 Multiply_9531/fq_weights_1" [label="[96, 288, 1, 1]", style=solid];
-"391 Constant_11372" -> "167 Transpose_6390/fq_output_0" [label="[]", style=solid];
-"392 Constant_11371" -> "167 Transpose_6390/fq_output_0" [label="[]", style=solid];
-"393 Constant_11370" -> "167 Transpose_6390/fq_output_0" [label="[]", style=solid];
-"394 Constant_11369" -> "167 Transpose_6390/fq_output_0" [label="[]", style=solid];
-"395 Constant_11367" -> "185 Transpose_6386/fq_output_0" [label="[]", style=solid];
-"396 Constant_11366" -> "185 Transpose_6386/fq_output_0" [label="[]", style=solid];
-"397 Constant_11365" -> "185 Transpose_6386/fq_output_0" [label="[]", style=solid];
-"398 Constant_11364" -> "185 Transpose_6386/fq_output_0" [label="[]", style=solid];
-"399 Transpose_6370" -> "179 Transpose_6372" [label="[1, 288, 1, 1]", style=solid];
-"400 Transpose_1721" -> "176 Convolution_1722" [label="[288, 72, 1, 1]", style=solid];
-"401 Transpose_6362" -> "170 Transpose_6364" [label="[1, 72, 1, 1]", style=solid];
-"402 Transpose_1712" -> "166 Convolution_1713" [label="[72, 288, 1, 1]", style=solid];
-"403 Constant_6356" -> "162 Transpose_6358" [label="[2]", style=dashed];
-"404 Constant_11362" -> "159 Transpose_6354/fq_output_0" [label="[]", style=solid];
-"405 Constant_11361" -> "159 Transpose_6354/fq_output_0" [label="[]", style=solid];
-"406 Constant_11360" -> "159 Transpose_6354/fq_output_0" [label="[]", style=solid];
-"407 Constant_11359" -> "159 Transpose_6354/fq_output_0" [label="[]", style=solid];
-"408 Constant_9525" -> "153 Transpose_6336" [label="[1, 288, 1, 1]", style=solid];
-"409 Multiply_9517/fq_weights_1" -> "151 Multiply_9517" [label="[288, 1, 1, 5, 5]", style=solid];
-"410 Constant_11357" -> "409 Multiply_9517/fq_weights_1" [label="[288, 1, 1, 1, 1]", style=solid];
-"411 Constant_11356" -> "409 Multiply_9517/fq_weights_1" [label="[288, 1, 1, 1, 1]", style=solid];
-"412 Constant_11355" -> "409 Multiply_9517/fq_weights_1" [label="[288, 1, 1, 1, 1]", style=solid];
-"413 Constant_11354" -> "409 Multiply_9517/fq_weights_1" [label="[288, 1, 1, 1, 1]", style=solid];
-"414 Multiply_9785" -> "409 Multiply_9517/fq_weights_1" [label="[288, 1, 1, 5, 5]", style=solid];
-"415 Constant_11352" -> "149 Transpose_6285/fq_output_0" [label="[1, 288, 1, 1]", style=solid];
-"416 Constant_11351" -> "149 Transpose_6285/fq_output_0" [label="[1, 288, 1, 1]", style=solid];
-"417 Constant_11350" -> "149 Transpose_6285/fq_output_0" [label="[1, 288, 1, 1]", style=solid];
-"418 Constant_11349" -> "149 Transpose_6285/fq_output_0" [label="[1, 288, 1, 1]", style=solid];
-"419 Constant_9511" -> "145 Transpose_6267" [label="[1, 288, 1, 1]", style=solid];
-"420 Multiply_9503/fq_weights_1" -> "143 Multiply_9503" [label="[288, 48, 1, 1]", style=solid];
-"421 Constant_11347" -> "420 Multiply_9503/fq_weights_1" [label="[288, 1, 1, 1]", style=solid];
-"422 Constant_11346" -> "420 Multiply_9503/fq_weights_1" [label="[288, 1, 1, 1]", style=solid];
-"423 Constant_11345" -> "420 Multiply_9503/fq_weights_1" [label="[288, 1, 1, 1]", style=solid];
-"424 Constant_11344" -> "420 Multiply_9503/fq_weights_1" [label="[288, 1, 1, 1]", style=solid];
-"425 Multiply_9779" -> "420 Multiply_9503/fq_weights_1" [label="[288, 48, 1, 1]", style=solid];
-"426 Constant_11342" -> "140 Transpose_6243/fq_output_0" [label="[]", style=solid];
-"427 Constant_11341" -> "140 Transpose_6243/fq_output_0" [label="[]", style=solid];
-"428 Constant_11340" -> "140 Transpose_6243/fq_output_0" [label="[]", style=solid];
-"429 Constant_11339" -> "140 Transpose_6243/fq_output_0" [label="[]", style=solid];
-"430 Constant_11337" -> "169 Transpose_6239/fq_output_0" [label="[]", style=solid];
-"431 Constant_11336" -> "169 Transpose_6239/fq_output_0" [label="[]", style=solid];
-"432 Constant_11335" -> "169 Transpose_6239/fq_output_0" [label="[]", style=solid];
-"433 Constant_11334" -> "169 Transpose_6239/fq_output_0" [label="[]", style=solid];
-"434 Constant_9497" -> "165 Transpose_6239" [label="[1, 48, 1, 1]", style=solid];
-"435 Multiply_9489/fq_weights_1" -> "161 Multiply_9489" [label="[48, 144, 1, 1]", style=solid];
-"436 Constant_11332" -> "435 Multiply_9489/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"437 Constant_11331" -> "435 Multiply_9489/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"438 Constant_11330" -> "435 Multiply_9489/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"439 Constant_11329" -> "435 Multiply_9489/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"440 Multiply_9773" -> "435 Multiply_9489/fq_weights_1" [label="[48, 144, 1, 1]", style=solid];
-"441 Constant_11327" -> "158 Transpose_6215/fq_output_0" [label="[]", style=solid];
-"442 Constant_11326" -> "158 Transpose_6215/fq_output_0" [label="[]", style=solid];
-"443 Constant_11325" -> "158 Transpose_6215/fq_output_0" [label="[]", style=solid];
-"444 Constant_11324" -> "158 Transpose_6215/fq_output_0" [label="[]", style=solid];
-"445 Constant_11322" -> "178 Transpose_6211/fq_output_0" [label="[]", style=solid];
-"446 Constant_11321" -> "178 Transpose_6211/fq_output_0" [label="[]", style=solid];
-"447 Constant_11320" -> "178 Transpose_6211/fq_output_0" [label="[]", style=solid];
-"448 Constant_11319" -> "178 Transpose_6211/fq_output_0" [label="[]", style=solid];
-"449 Transpose_6195" -> "172 Transpose_6197" [label="[1, 144, 1, 1]", style=solid];
-"450 Transpose_1582" -> "168 Convolution_1583" [label="[144, 40, 1, 1]", style=solid];
-"451 Transpose_6187" -> "160 Transpose_6189" [label="[1, 40, 1, 1]", style=solid];
-"452 Transpose_1573" -> "157 Convolution_1574" [label="[40, 144, 1, 1]", style=solid];
-"453 Constant_6181" -> "154 Transpose_6183" [label="[2]", style=dashed];
-"454 Constant_11317" -> "152 Transpose_6179/fq_output_0" [label="[]", style=solid];
-"455 Constant_11316" -> "152 Transpose_6179/fq_output_0" [label="[]", style=solid];
-"456 Constant_11315" -> "152 Transpose_6179/fq_output_0" [label="[]", style=solid];
-"457 Constant_11314" -> "152 Transpose_6179/fq_output_0" [label="[]", style=solid];
-"458 Constant_9483" -> "148 Transpose_6161" [label="[1, 144, 1, 1]", style=solid];
-"459 Multiply_9475/fq_weights_1" -> "146 Multiply_9475" [label="[144, 1, 1, 5, 5]", style=solid];
-"460 Constant_11312" -> "459 Multiply_9475/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"461 Constant_11311" -> "459 Multiply_9475/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"462 Constant_11310" -> "459 Multiply_9475/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"463 Constant_11309" -> "459 Multiply_9475/fq_weights_1" [label="[144, 1, 1, 1, 1]", style=solid];
-"464 Multiply_9768" -> "459 Multiply_9475/fq_weights_1" [label="[144, 1, 1, 5, 5]", style=solid];
-"465 Constant_11307" -> "144 Transpose_6137/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"466 Constant_11306" -> "144 Transpose_6137/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"467 Constant_11305" -> "144 Transpose_6137/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"468 Constant_11304" -> "144 Transpose_6137/fq_output_0" [label="[1, 144, 1, 1]", style=solid];
-"469 Constant_9469" -> "139 Transpose_6119" [label="[1, 144, 1, 1]", style=solid];
-"470 Multiply_9461/fq_weights_1" -> "136 Multiply_9461" [label="[144, 48, 1, 1]", style=solid];
-"471 Constant_11302" -> "470 Multiply_9461/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"472 Constant_11301" -> "470 Multiply_9461/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"473 Constant_11300" -> "470 Multiply_9461/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"474 Constant_11299" -> "470 Multiply_9461/fq_weights_1" [label="[144, 1, 1, 1]", style=solid];
-"475 Multiply_9762" -> "470 Multiply_9461/fq_weights_1" [label="[144, 48, 1, 1]", style=solid];
-"476 Constant_11297" -> "133 Transpose_6095/fq_output_0" [label="[]", style=solid];
-"477 Constant_11296" -> "133 Transpose_6095/fq_output_0" [label="[]", style=solid];
-"478 Constant_11295" -> "133 Transpose_6095/fq_output_0" [label="[]", style=solid];
-"479 Constant_11294" -> "133 Transpose_6095/fq_output_0" [label="[]", style=solid];
-"480 Constant_9455" -> "130 Transpose_6095" [label="[1, 48, 1, 1]", style=solid];
-"481 Multiply_9447/fq_weights_1" -> "126 Multiply_9447" [label="[48, 120, 1, 1]", style=solid];
-"482 Constant_11292" -> "481 Multiply_9447/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"483 Constant_11291" -> "481 Multiply_9447/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"484 Constant_11290" -> "481 Multiply_9447/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"485 Constant_11289" -> "481 Multiply_9447/fq_weights_1" [label="[48, 1, 1, 1]", style=solid];
-"486 Multiply_9756" -> "481 Multiply_9447/fq_weights_1" [label="[48, 120, 1, 1]", style=solid];
-"487 Constant_11287" -> "121 Transpose_6071/fq_output_0" [label="[]", style=solid];
-"488 Constant_11286" -> "121 Transpose_6071/fq_output_0" [label="[]", style=solid];
-"489 Constant_11285" -> "121 Transpose_6071/fq_output_0" [label="[]", style=solid];
-"490 Constant_11284" -> "121 Transpose_6071/fq_output_0" [label="[]", style=solid];
-"491 Constant_11282" -> "141 Transpose_6067/fq_output_0" [label="[]", style=solid];
-"492 Constant_11281" -> "141 Transpose_6067/fq_output_0" [label="[]", style=solid];
-"493 Constant_11280" -> "141 Transpose_6067/fq_output_0" [label="[]", style=solid];
-"494 Constant_11279" -> "141 Transpose_6067/fq_output_0" [label="[]", style=solid];
-"495 Transpose_6051" -> "135 Transpose_6053" [label="[1, 120, 1, 1]", style=solid];
-"496 Transpose_1472" -> "132 Convolution_1473" [label="[120, 32, 1, 1]", style=solid];
-"497 Transpose_6043" -> "125 Transpose_6045" [label="[1, 32, 1, 1]", style=solid];
-"498 Transpose_1463" -> "120 Convolution_1464" [label="[32, 120, 1, 1]", style=solid];
-"499 Constant_6037" -> "115 Transpose_6039" [label="[2]", style=dashed];
-"500 Constant_11277" -> "110 Transpose_6035/fq_output_0" [label="[]", style=solid];
-"501 Constant_11276" -> "110 Transpose_6035/fq_output_0" [label="[]", style=solid];
-"502 Constant_11275" -> "110 Transpose_6035/fq_output_0" [label="[]", style=solid];
-"503 Constant_11274" -> "110 Transpose_6035/fq_output_0" [label="[]", style=solid];
-"504 Constant_9441" -> "100 Transpose_6017" [label="[1, 120, 1, 1]", style=solid];
-"505 Multiply_9433/fq_weights_1" -> "96 Multiply_9433" [label="[120, 1, 1, 5, 5]", style=solid];
-"506 Constant_11272" -> "505 Multiply_9433/fq_weights_1" [label="[120, 1, 1, 1, 1]", style=solid];
-"507 Constant_11271" -> "505 Multiply_9433/fq_weights_1" [label="[120, 1, 1, 1, 1]", style=solid];
-"508 Constant_11270" -> "505 Multiply_9433/fq_weights_1" [label="[120, 1, 1, 1, 1]", style=solid];
-"509 Constant_11269" -> "505 Multiply_9433/fq_weights_1" [label="[120, 1, 1, 1, 1]", style=solid];
-"510 Multiply_9751" -> "505 Multiply_9433/fq_weights_1" [label="[120, 1, 1, 5, 5]", style=solid];
-"511 Constant_11267" -> "92 Transpose_5993/fq_output_0" [label="[1, 120, 1, 1]", style=solid];
-"512 Constant_11266" -> "92 Transpose_5993/fq_output_0" [label="[1, 120, 1, 1]", style=solid];
-"513 Constant_11265" -> "92 Transpose_5993/fq_output_0" [label="[1, 120, 1, 1]", style=solid];
-"514 Constant_11264" -> "92 Transpose_5993/fq_output_0" [label="[1, 120, 1, 1]", style=solid];
-"515 Constant_9427" -> "86 Transpose_5975" [label="[1, 120, 1, 1]", style=solid];
-"516 Multiply_9419/fq_weights_1" -> "83 Multiply_9419" [label="[120, 40, 1, 1]", style=solid];
-"517 Constant_11262" -> "516 Multiply_9419/fq_weights_1" [label="[120, 1, 1, 1]", style=solid];
-"518 Constant_11261" -> "516 Multiply_9419/fq_weights_1" [label="[120, 1, 1, 1]", style=solid];
-"519 Constant_11260" -> "516 Multiply_9419/fq_weights_1" [label="[120, 1, 1, 1]", style=solid];
-"520 Constant_11259" -> "516 Multiply_9419/fq_weights_1" [label="[120, 1, 1, 1]", style=solid];
-"521 Multiply_9745" -> "516 Multiply_9419/fq_weights_1" [label="[120, 40, 1, 1]", style=solid];
-"522 Constant_11257" -> "80 Transpose_5951/fq_output_0" [label="[]", style=solid];
-"523 Constant_11256" -> "80 Transpose_5951/fq_output_0" [label="[]", style=solid];
-"524 Constant_11255" -> "80 Transpose_5951/fq_output_0" [label="[]", style=solid];
-"525 Constant_11254" -> "80 Transpose_5951/fq_output_0" [label="[]", style=solid];
-"526 Constant_11252" -> "124 Transpose_5947/fq_output_0" [label="[]", style=solid];
-"527 Constant_11251" -> "124 Transpose_5947/fq_output_0" [label="[]", style=solid];
-"528 Constant_11250" -> "124 Transpose_5947/fq_output_0" [label="[]", style=solid];
-"529 Constant_11249" -> "124 Transpose_5947/fq_output_0" [label="[]", style=solid];
-"530 Constant_9413" -> "119 Transpose_5947" [label="[1, 40, 1, 1]", style=solid];
-"531 Multiply_9405/fq_weights_1" -> "114 Multiply_9405" [label="[40, 240, 1, 1]", style=solid];
-"532 Constant_11247" -> "531 Multiply_9405/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"533 Constant_11246" -> "531 Multiply_9405/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"534 Constant_11245" -> "531 Multiply_9405/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"535 Constant_11244" -> "531 Multiply_9405/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"536 Multiply_9739" -> "531 Multiply_9405/fq_weights_1" [label="[40, 240, 1, 1]", style=solid];
-"537 Constant_11242" -> "109 Transpose_5923/fq_output_0" [label="[]", style=solid];
-"538 Constant_11241" -> "109 Transpose_5923/fq_output_0" [label="[]", style=solid];
-"539 Constant_11240" -> "109 Transpose_5923/fq_output_0" [label="[]", style=solid];
-"540 Constant_11239" -> "109 Transpose_5923/fq_output_0" [label="[]", style=solid];
-"541 Constant_11237" -> "134 Transpose_5919/fq_output_0" [label="[]", style=solid];
-"542 Constant_11236" -> "134 Transpose_5919/fq_output_0" [label="[]", style=solid];
-"543 Constant_11235" -> "134 Transpose_5919/fq_output_0" [label="[]", style=solid];
-"544 Constant_11234" -> "134 Transpose_5919/fq_output_0" [label="[]", style=solid];
-"545 Transpose_5903" -> "128 Transpose_5905" [label="[1, 240, 1, 1]", style=solid];
-"546 Transpose_1361" -> "123 Convolution_1362" [label="[240, 64, 1, 1]", style=solid];
-"547 Transpose_5895" -> "113 Transpose_5897" [label="[1, 64, 1, 1]", style=solid];
-"548 Transpose_1352" -> "108 Convolution_1353" [label="[64, 240, 1, 1]", style=solid];
-"549 Constant_5889" -> "103 Transpose_5891" [label="[2]", style=dashed];
-"550 Constant_11232" -> "99 Transpose_5887/fq_output_0" [label="[]", style=solid];
-"551 Constant_11231" -> "99 Transpose_5887/fq_output_0" [label="[]", style=solid];
-"552 Constant_11230" -> "99 Transpose_5887/fq_output_0" [label="[]", style=solid];
-"553 Constant_11229" -> "99 Transpose_5887/fq_output_0" [label="[]", style=solid];
-"554 Constant_9399" -> "91 Transpose_5869" [label="[1, 240, 1, 1]", style=solid];
-"555 Multiply_9391/fq_weights_1" -> "88 Multiply_9391" [label="[240, 1, 1, 5, 5]", style=solid];
-"556 Constant_11227" -> "555 Multiply_9391/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"557 Constant_11226" -> "555 Multiply_9391/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"558 Constant_11225" -> "555 Multiply_9391/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"559 Constant_11224" -> "555 Multiply_9391/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"560 Multiply_9734" -> "555 Multiply_9391/fq_weights_1" [label="[240, 1, 1, 5, 5]", style=solid];
-"561 Constant_11222" -> "85 Transpose_5845/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"562 Constant_11221" -> "85 Transpose_5845/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"563 Constant_11220" -> "85 Transpose_5845/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"564 Constant_11219" -> "85 Transpose_5845/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"565 Constant_9385" -> "79 Transpose_5827" [label="[1, 240, 1, 1]", style=solid];
-"566 Multiply_9377/fq_weights_1" -> "76 Multiply_9377" [label="[240, 40, 1, 1]", style=solid];
-"567 Constant_11217" -> "566 Multiply_9377/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"568 Constant_11216" -> "566 Multiply_9377/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"569 Constant_11215" -> "566 Multiply_9377/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"570 Constant_11214" -> "566 Multiply_9377/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"571 Multiply_9728" -> "566 Multiply_9377/fq_weights_1" [label="[240, 40, 1, 1]", style=solid];
-"572 Constant_11212" -> "73 Transpose_5803/fq_output_0" [label="[]", style=solid];
-"573 Constant_11211" -> "73 Transpose_5803/fq_output_0" [label="[]", style=solid];
-"574 Constant_11210" -> "73 Transpose_5803/fq_output_0" [label="[]", style=solid];
-"575 Constant_11209" -> "73 Transpose_5803/fq_output_0" [label="[]", style=solid];
-"576 Constant_11207" -> "112 Transpose_5799/fq_output_0" [label="[]", style=solid];
-"577 Constant_11206" -> "112 Transpose_5799/fq_output_0" [label="[]", style=solid];
-"578 Constant_11205" -> "112 Transpose_5799/fq_output_0" [label="[]", style=solid];
-"579 Constant_11204" -> "112 Transpose_5799/fq_output_0" [label="[]", style=solid];
-"580 Constant_9371" -> "107 Transpose_5799" [label="[1, 40, 1, 1]", style=solid];
-"581 Multiply_9363/fq_weights_1" -> "102 Multiply_9363" [label="[40, 240, 1, 1]", style=solid];
-"582 Constant_11202" -> "581 Multiply_9363/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"583 Constant_11201" -> "581 Multiply_9363/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"584 Constant_11200" -> "581 Multiply_9363/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"585 Constant_11199" -> "581 Multiply_9363/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"586 Multiply_9722" -> "581 Multiply_9363/fq_weights_1" [label="[40, 240, 1, 1]", style=solid];
-"587 Constant_11197" -> "98 Transpose_5775/fq_output_0" [label="[]", style=solid];
-"588 Constant_11196" -> "98 Transpose_5775/fq_output_0" [label="[]", style=solid];
-"589 Constant_11195" -> "98 Transpose_5775/fq_output_0" [label="[]", style=solid];
-"590 Constant_11194" -> "98 Transpose_5775/fq_output_0" [label="[]", style=solid];
-"591 Constant_11192" -> "127 Transpose_5771/fq_output_0" [label="[]", style=solid];
-"592 Constant_11191" -> "127 Transpose_5771/fq_output_0" [label="[]", style=solid];
-"593 Constant_11190" -> "127 Transpose_5771/fq_output_0" [label="[]", style=solid];
-"594 Constant_11189" -> "127 Transpose_5771/fq_output_0" [label="[]", style=solid];
-"595 Transpose_5755" -> "117 Transpose_5757" [label="[1, 240, 1, 1]", style=solid];
-"596 Transpose_1250" -> "111 Convolution_1251" [label="[240, 64, 1, 1]", style=solid];
-"597 Transpose_5747" -> "101 Transpose_5749" [label="[1, 64, 1, 1]", style=solid];
-"598 Transpose_1241" -> "97 Convolution_1242" [label="[64, 240, 1, 1]", style=solid];
-"599 Constant_5741" -> "93 Transpose_5743" [label="[2]", style=dashed];
-"600 Constant_11187" -> "90 Transpose_5739/fq_output_0" [label="[]", style=solid];
-"601 Constant_11186" -> "90 Transpose_5739/fq_output_0" [label="[]", style=solid];
-"602 Constant_11185" -> "90 Transpose_5739/fq_output_0" [label="[]", style=solid];
-"603 Constant_11184" -> "90 Transpose_5739/fq_output_0" [label="[]", style=solid];
-"604 Constant_9357" -> "84 Transpose_5721" [label="[1, 240, 1, 1]", style=solid];
-"605 Multiply_9349/fq_weights_1" -> "81 Multiply_9349" [label="[240, 1, 1, 5, 5]", style=solid];
-"606 Constant_11182" -> "605 Multiply_9349/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"607 Constant_11181" -> "605 Multiply_9349/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"608 Constant_11180" -> "605 Multiply_9349/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"609 Constant_11179" -> "605 Multiply_9349/fq_weights_1" [label="[240, 1, 1, 1, 1]", style=solid];
-"610 Multiply_9717" -> "605 Multiply_9349/fq_weights_1" [label="[240, 1, 1, 5, 5]", style=solid];
-"611 Constant_11177" -> "78 Transpose_5697/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"612 Constant_11176" -> "78 Transpose_5697/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"613 Constant_11175" -> "78 Transpose_5697/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"614 Constant_11174" -> "78 Transpose_5697/fq_output_0" [label="[1, 240, 1, 1]", style=solid];
-"615 Constant_9343" -> "72 Transpose_5679" [label="[1, 240, 1, 1]", style=solid];
-"616 Multiply_9335/fq_weights_1" -> "69 Multiply_9335" [label="[240, 40, 1, 1]", style=solid];
-"617 Constant_11172" -> "616 Multiply_9335/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"618 Constant_11171" -> "616 Multiply_9335/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"619 Constant_11170" -> "616 Multiply_9335/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"620 Constant_11169" -> "616 Multiply_9335/fq_weights_1" [label="[240, 1, 1, 1]", style=solid];
-"621 Multiply_9711" -> "616 Multiply_9335/fq_weights_1" [label="[240, 40, 1, 1]", style=solid];
-"622 Constant_11167" -> "67 Transpose_5655/fq_output_0" [label="[]", style=solid];
-"623 Constant_11166" -> "67 Transpose_5655/fq_output_0" [label="[]", style=solid];
-"624 Constant_11165" -> "67 Transpose_5655/fq_output_0" [label="[]", style=solid];
-"625 Constant_11164" -> "67 Transpose_5655/fq_output_0" [label="[]", style=solid];
-"626 Constant_9329" -> "65 Transpose_5655" [label="[1, 40, 1, 1]", style=solid];
-"627 Multiply_9321/fq_weights_1" -> "63 Multiply_9321" [label="[40, 96, 1, 1]", style=solid];
-"628 Constant_11162" -> "627 Multiply_9321/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"629 Constant_11161" -> "627 Multiply_9321/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"630 Constant_11160" -> "627 Multiply_9321/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"631 Constant_11159" -> "627 Multiply_9321/fq_weights_1" [label="[40, 1, 1, 1]", style=solid];
-"632 Multiply_9705" -> "627 Multiply_9321/fq_weights_1" [label="[40, 96, 1, 1]", style=solid];
-"633 Constant_11157" -> "61 Transpose_5631/fq_output_0" [label="[]", style=solid];
-"634 Constant_11156" -> "61 Transpose_5631/fq_output_0" [label="[]", style=solid];
-"635 Constant_11155" -> "61 Transpose_5631/fq_output_0" [label="[]", style=solid];
-"636 Constant_11154" -> "61 Transpose_5631/fq_output_0" [label="[]", style=solid];
-"637 Constant_11152" -> "74 Transpose_5627/fq_output_0" [label="[]", style=solid];
-"638 Constant_11151" -> "74 Transpose_5627/fq_output_0" [label="[]", style=solid];
-"639 Constant_11150" -> "74 Transpose_5627/fq_output_0" [label="[]", style=solid];
-"640 Constant_11149" -> "74 Transpose_5627/fq_output_0" [label="[]", style=solid];
-"641 Transpose_5611" -> "68 Transpose_5613" [label="[1, 96, 1, 1]", style=solid];
-"642 Transpose_1140" -> "66 Convolution_1141" [label="[96, 24, 1, 1]", style=solid];
-"643 Transpose_5603" -> "62 Transpose_5605" [label="[1, 24, 1, 1]", style=solid];
-"644 Transpose_1131" -> "60 Convolution_1132" [label="[24, 96, 1, 1]", style=solid];
-"645 Constant_5597" -> "58 Transpose_5599" [label="[2]", style=dashed];
-"646 Constant_11147" -> "56 Transpose_5595/fq_output_0" [label="[]", style=solid];
-"647 Constant_11146" -> "56 Transpose_5595/fq_output_0" [label="[]", style=solid];
-"648 Constant_11145" -> "56 Transpose_5595/fq_output_0" [label="[]", style=solid];
-"649 Constant_11144" -> "56 Transpose_5595/fq_output_0" [label="[]", style=solid];
-"650 Constant_9315" -> "52 Transpose_5577" [label="[1, 96, 1, 1]", style=solid];
-"651 Multiply_9307/fq_weights_1" -> "50 Multiply_9307" [label="[96, 1, 1, 5, 5]", style=solid];
-"652 Constant_11142" -> "651 Multiply_9307/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"653 Constant_11141" -> "651 Multiply_9307/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"654 Constant_11140" -> "651 Multiply_9307/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"655 Constant_11139" -> "651 Multiply_9307/fq_weights_1" [label="[96, 1, 1, 1, 1]", style=solid];
-"656 Multiply_9700" -> "651 Multiply_9307/fq_weights_1" [label="[96, 1, 1, 5, 5]", style=solid];
-"657 Constant_11137" -> "48 Transpose_5526/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"658 Constant_11136" -> "48 Transpose_5526/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"659 Constant_11135" -> "48 Transpose_5526/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"660 Constant_11134" -> "48 Transpose_5526/fq_output_0" [label="[1, 96, 1, 1]", style=solid];
-"661 Constant_9301" -> "44 Transpose_5508" [label="[1, 96, 1, 1]", style=solid];
-"662 Multiply_9293/fq_weights_1" -> "42 Multiply_9293" [label="[96, 24, 1, 1]", style=solid];
-"663 Constant_11132" -> "662 Multiply_9293/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"664 Constant_11131" -> "662 Multiply_9293/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"665 Constant_11130" -> "662 Multiply_9293/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"666 Constant_11129" -> "662 Multiply_9293/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"667 Multiply_9694" -> "662 Multiply_9293/fq_weights_1" [label="[96, 24, 1, 1]", style=solid];
-"668 Constant_11127" -> "40 Transpose_5484/fq_output_0" [label="[]", style=solid];
-"669 Constant_11126" -> "40 Transpose_5484/fq_output_0" [label="[]", style=solid];
-"670 Constant_11125" -> "40 Transpose_5484/fq_output_0" [label="[]", style=solid];
-"671 Constant_11124" -> "40 Transpose_5484/fq_output_0" [label="[]", style=solid];
-"672 Constant_11122" -> "57 Transpose_5480/fq_output_0" [label="[]", style=solid];
-"673 Constant_11121" -> "57 Transpose_5480/fq_output_0" [label="[]", style=solid];
-"674 Constant_11120" -> "57 Transpose_5480/fq_output_0" [label="[]", style=solid];
-"675 Constant_11119" -> "57 Transpose_5480/fq_output_0" [label="[]", style=solid];
-"676 Constant_9287" -> "55 Transpose_5480" [label="[1, 24, 1, 1]", style=solid];
-"677 Multiply_9279/fq_weights_1" -> "53 Multiply_9279" [label="[24, 88, 1, 1]", style=solid];
-"678 Constant_11117" -> "677 Multiply_9279/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"679 Constant_11116" -> "677 Multiply_9279/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"680 Constant_11115" -> "677 Multiply_9279/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"681 Constant_11114" -> "677 Multiply_9279/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"682 Multiply_9688" -> "677 Multiply_9279/fq_weights_1" [label="[24, 88, 1, 1]", style=solid];
-"683 Constant_11112" -> "51 Transpose_5456/fq_output_0" [label="[]", style=solid];
-"684 Constant_11111" -> "51 Transpose_5456/fq_output_0" [label="[]", style=solid];
-"685 Constant_11110" -> "51 Transpose_5456/fq_output_0" [label="[]", style=solid];
-"686 Constant_11109" -> "51 Transpose_5456/fq_output_0" [label="[]", style=solid];
-"687 Constant_9273" -> "47 Transpose_5454" [label="[1, 88, 1, 1]", style=solid];
-"688 Multiply_9265/fq_weights_1" -> "45 Multiply_9265" [label="[88, 1, 1, 3, 3]", style=solid];
-"689 Constant_11107" -> "688 Multiply_9265/fq_weights_1" [label="[88, 1, 1, 1, 1]", style=solid];
-"690 Constant_11106" -> "688 Multiply_9265/fq_weights_1" [label="[88, 1, 1, 1, 1]", style=solid];
-"691 Constant_11105" -> "688 Multiply_9265/fq_weights_1" [label="[88, 1, 1, 1, 1]", style=solid];
-"692 Constant_11104" -> "688 Multiply_9265/fq_weights_1" [label="[88, 1, 1, 1, 1]", style=solid];
-"693 Multiply_9683" -> "688 Multiply_9265/fq_weights_1" [label="[88, 1, 1, 3, 3]", style=solid];
-"694 Constant_11102" -> "43 Transpose_5430/fq_output_0" [label="[1, 88, 1, 1]", style=solid];
-"695 Constant_11101" -> "43 Transpose_5430/fq_output_0" [label="[1, 88, 1, 1]", style=solid];
-"696 Constant_11100" -> "43 Transpose_5430/fq_output_0" [label="[1, 88, 1, 1]", style=solid];
-"697 Constant_11099" -> "43 Transpose_5430/fq_output_0" [label="[1, 88, 1, 1]", style=solid];
-"698 Constant_9259" -> "39 Transpose_5428" [label="[1, 88, 1, 1]", style=solid];
-"699 Multiply_9251/fq_weights_1" -> "37 Multiply_9251" [label="[88, 24, 1, 1]", style=solid];
-"700 Constant_11097" -> "699 Multiply_9251/fq_weights_1" [label="[88, 1, 1, 1]", style=solid];
-"701 Constant_11096" -> "699 Multiply_9251/fq_weights_1" [label="[88, 1, 1, 1]", style=solid];
-"702 Constant_11095" -> "699 Multiply_9251/fq_weights_1" [label="[88, 1, 1, 1]", style=solid];
-"703 Constant_11094" -> "699 Multiply_9251/fq_weights_1" [label="[88, 1, 1, 1]", style=solid];
-"704 Multiply_9677" -> "699 Multiply_9251/fq_weights_1" [label="[88, 24, 1, 1]", style=solid];
-"705 Constant_11092" -> "36 Transpose_5404/fq_output_0" [label="[]", style=solid];
-"706 Constant_11091" -> "36 Transpose_5404/fq_output_0" [label="[]", style=solid];
-"707 Constant_11090" -> "36 Transpose_5404/fq_output_0" [label="[]", style=solid];
-"708 Constant_11089" -> "36 Transpose_5404/fq_output_0" [label="[]", style=solid];
-"709 Constant_9245" -> "35 Transpose_5404" [label="[1, 24, 1, 1]", style=solid];
-"710 Multiply_9237/fq_weights_1" -> "34 Multiply_9237" [label="[24, 72, 1, 1]", style=solid];
-"711 Constant_11087" -> "710 Multiply_9237/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"712 Constant_11086" -> "710 Multiply_9237/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"713 Constant_11085" -> "710 Multiply_9237/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"714 Constant_11084" -> "710 Multiply_9237/fq_weights_1" [label="[24, 1, 1, 1]", style=solid];
-"715 Multiply_9671" -> "710 Multiply_9237/fq_weights_1" [label="[24, 72, 1, 1]", style=solid];
-"716 Constant_11082" -> "33 Transpose_5380/fq_output_0" [label="[]", style=solid];
-"717 Constant_11081" -> "33 Transpose_5380/fq_output_0" [label="[]", style=solid];
-"718 Constant_11080" -> "33 Transpose_5380/fq_output_0" [label="[]", style=solid];
-"719 Constant_11079" -> "33 Transpose_5380/fq_output_0" [label="[]", style=solid];
-"720 Constant_9231" -> "31 Transpose_5378" [label="[1, 72, 1, 1]", style=solid];
-"721 Multiply_9223/fq_weights_1" -> "30 Multiply_9223" [label="[72, 1, 1, 3, 3]", style=solid];
-"722 Constant_11077" -> "721 Multiply_9223/fq_weights_1" [label="[72, 1, 1, 1, 1]", style=solid];
-"723 Constant_11076" -> "721 Multiply_9223/fq_weights_1" [label="[72, 1, 1, 1, 1]", style=solid];
-"724 Constant_11075" -> "721 Multiply_9223/fq_weights_1" [label="[72, 1, 1, 1, 1]", style=solid];
-"725 Constant_11074" -> "721 Multiply_9223/fq_weights_1" [label="[72, 1, 1, 1, 1]", style=solid];
-"726 Multiply_9666" -> "721 Multiply_9223/fq_weights_1" [label="[72, 1, 1, 3, 3]", style=solid];
-"727 Constant_11072" -> "29 Transpose_5327/fq_output_0" [label="[1, 72, 1, 1]", style=solid];
-"728 Constant_11071" -> "29 Transpose_5327/fq_output_0" [label="[1, 72, 1, 1]", style=solid];
-"729 Constant_11070" -> "29 Transpose_5327/fq_output_0" [label="[1, 72, 1, 1]", style=solid];
-"730 Constant_11069" -> "29 Transpose_5327/fq_output_0" [label="[1, 72, 1, 1]", style=solid];
-"731 Constant_9217" -> "26 Transpose_5325" [label="[1, 72, 1, 1]", style=solid];
-"732 Multiply_9209/fq_weights_1" -> "24 Multiply_9209" [label="[72, 16, 1, 1]", style=solid];
-"733 Constant_11067" -> "732 Multiply_9209/fq_weights_1" [label="[72, 1, 1, 1]", style=solid];
-"734 Constant_11066" -> "732 Multiply_9209/fq_weights_1" [label="[72, 1, 1, 1]", style=solid];
-"735 Constant_11065" -> "732 Multiply_9209/fq_weights_1" [label="[72, 1, 1, 1]", style=solid];
-"736 Constant_11064" -> "732 Multiply_9209/fq_weights_1" [label="[72, 1, 1, 1]", style=solid];
-"737 Multiply_9660" -> "732 Multiply_9209/fq_weights_1" [label="[72, 16, 1, 1]", style=solid];
-"738 Constant_11062" -> "22 Transpose_5301/fq_output_0" [label="[]", style=solid];
-"739 Constant_11061" -> "22 Transpose_5301/fq_output_0" [label="[]", style=solid];
-"740 Constant_11060" -> "22 Transpose_5301/fq_output_0" [label="[]", style=solid];
-"741 Constant_11059" -> "22 Transpose_5301/fq_output_0" [label="[]", style=solid];
-"742 Constant_9203" -> "20 Transpose_5301" [label="[1, 16, 1, 1]", style=solid];
-"743 Multiply_9195/fq_weights_1" -> "18 Multiply_9195" [label="[16, 16, 1, 1]", style=solid];
-"744 Constant_11057" -> "743 Multiply_9195/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"745 Constant_11056" -> "743 Multiply_9195/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"746 Constant_11055" -> "743 Multiply_9195/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"747 Constant_11054" -> "743 Multiply_9195/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"748 Multiply_9654" -> "743 Multiply_9195/fq_weights_1" [label="[16, 16, 1, 1]", style=solid];
-"749 Constant_11052" -> "16 Transpose_5277/fq_output_0" [label="[]", style=solid];
-"750 Constant_11051" -> "16 Transpose_5277/fq_output_0" [label="[]", style=solid];
-"751 Constant_11050" -> "16 Transpose_5277/fq_output_0" [label="[]", style=solid];
-"752 Constant_11049" -> "16 Transpose_5277/fq_output_0" [label="[]", style=solid];
-"753 Constant_11047" -> "27 Transpose_5273/fq_output_0" [label="[]", style=solid];
-"754 Constant_11046" -> "27 Transpose_5273/fq_output_0" [label="[]", style=solid];
-"755 Constant_11045" -> "27 Transpose_5273/fq_output_0" [label="[]", style=solid];
-"756 Constant_11044" -> "27 Transpose_5273/fq_output_0" [label="[]", style=solid];
-"757 Transpose_5257" -> "23 Transpose_5259" [label="[1, 16, 1, 1]", style=solid];
-"758 Transpose_809" -> "21 Convolution_810" [label="[16, 8, 1, 1]", style=solid];
-"759 Transpose_5249" -> "17 Transpose_5251" [label="[1, 8, 1, 1]", style=solid];
-"760 Transpose_800" -> "15 Convolution_801" [label="[8, 16, 1, 1]", style=solid];
-"761 Constant_5243" -> "13 Transpose_5245" [label="[2]", style=dashed];
-"762 Constant_11042" -> "12 Transpose_5241/fq_output_0" [label="[]", style=solid];
-"763 Constant_11041" -> "12 Transpose_5241/fq_output_0" [label="[]", style=solid];
-"764 Constant_11040" -> "12 Transpose_5241/fq_output_0" [label="[]", style=solid];
-"765 Constant_11039" -> "12 Transpose_5241/fq_output_0" [label="[]", style=solid];
-"766 Constant_9189" -> "10 Transpose_5239" [label="[1, 16, 1, 1]", style=solid];
-"767 Multiply_9181/fq_weights_1" -> "9 Multiply_9181" [label="[16, 1, 1, 3, 3]", style=solid];
-"768 Constant_11037" -> "767 Multiply_9181/fq_weights_1" [label="[16, 1, 1, 1, 1]", style=solid];
-"769 Constant_11036" -> "767 Multiply_9181/fq_weights_1" [label="[16, 1, 1, 1, 1]", style=solid];
-"770 Constant_11035" -> "767 Multiply_9181/fq_weights_1" [label="[16, 1, 1, 1, 1]", style=solid];
-"771 Constant_11034" -> "767 Multiply_9181/fq_weights_1" [label="[16, 1, 1, 1, 1]", style=solid];
-"772 Multiply_9649" -> "767 Multiply_9181/fq_weights_1" [label="[16, 1, 1, 3, 3]", style=solid];
-"773 Constant_11032" -> "8 Transpose_5188/fq_output_0" [label="[1, 16, 1, 1]", style=solid];
-"774 Constant_11031" -> "8 Transpose_5188/fq_output_0" [label="[1, 16, 1, 1]", style=solid];
-"775 Constant_11030" -> "8 Transpose_5188/fq_output_0" [label="[1, 16, 1, 1]", style=solid];
-"776 Constant_11029" -> "8 Transpose_5188/fq_output_0" [label="[1, 16, 1, 1]", style=solid];
-"777 Constant_9175" -> "6 Transpose_5170" [label="[1, 16, 1, 1]", style=solid];
-"778 Multiply_9167/fq_weights_1" -> "5 Multiply_9167" [label="[16, 3, 3, 3]", style=solid];
-"779 Constant_11027" -> "778 Multiply_9167/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"780 Constant_11026" -> "778 Multiply_9167/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"781 Constant_11025" -> "778 Multiply_9167/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"782 Constant_11024" -> "778 Multiply_9167/fq_weights_1" [label="[16, 1, 1, 1]", style=solid];
-"783 Gather_10068" -> "778 Multiply_9167/fq_weights_1" [label="[16, 3, 3, 3]", style=solid];
-"784 Constant_11022" -> "4 Transpose_710/fq_output_0" [label="[]", style=solid];
-"785 Constant_11021" -> "4 Transpose_710/fq_output_0" [label="[]", style=solid];
-"786 Constant_11020" -> "4 Transpose_710/fq_output_0" [label="[]", style=solid];
-"787 Constant_11019" -> "4 Transpose_710/fq_output_0" [label="[]", style=solid];
-"788 Unsqueeze_7776" -> "3 Transpose_710" [label="[1, 1, 1, 1]", style=solid];
-"789 Unsqueeze_7782" -> "2 Transpose_7774" [label="[1, 1, 1, 1]", style=solid];
-"790 Constant_7779" -> "1 Transpose_7780" [label="[4]", style=dashed];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-18-pytorch_performance.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-18-pytorch_performance.dot
deleted file mode 100644
index 480119c4db2..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-18-pytorch_performance.dot
+++ /dev/null
@@ -1,759 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_1715" [id=1, type=Multiply];
-"2 Divide_401" [id=2, type=Add];
-"3 Divide_401/fq_output_0" [id=3, type=FakeQuantize];
-"4 /conv1/Conv/WithoutBiases" [id=4, type=Convolution];
-"5 /conv1/Conv" [id=5, type=Add];
-"6 /relu/Relu" [id=6, type=Relu];
-"7 /relu/Relu/fq_output_0" [id=7, type=FakeQuantize];
-"8 /maxpool/MaxPool" [id=8, type=MaxPool];
-"9 /layer1/layer1.0/Add" [id=9, type=Add];
-"10 /layer1/layer1.0/conv1/Conv/WithoutBiases" [id=10, type=Convolution];
-"11 /layer1/layer1.0/relu_1/Relu" [id=11, type=Relu];
-"12 /layer1/layer1.0/conv1/Conv" [id=12, type=Add];
-"13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [id=13, type=FakeQuantize];
-"14 /layer1/layer1.0/relu/Relu" [id=14, type=Relu];
-"15 /layer1/layer1.1/Add" [id=15, type=Add];
-"16 /layer1/layer1.1/conv1/Conv/WithoutBiases" [id=16, type=Convolution];
-"17 /layer1/layer1.0/relu/Relu/fq_output_0" [id=17, type=FakeQuantize];
-"18 /layer1/layer1.1/relu_1/Relu" [id=18, type=Relu];
-"19 /layer1/layer1.1/conv1/Conv" [id=19, type=Add];
-"20 /layer1/layer1.0/conv2/Conv/WithoutBiases" [id=20, type=Convolution];
-"21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [id=21, type=FakeQuantize];
-"22 /layer1/layer1.1/relu/Relu" [id=22, type=Relu];
-"23 /layer1/layer1.0/conv2/Conv" [id=23, type=Add];
-"24 /layer2/layer2.0/conv1/Conv/WithoutBiases" [id=24, type=Convolution];
-"25 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [id=25, type=Convolution];
-"26 /layer1/layer1.1/relu/Relu/fq_output_0" [id=26, type=FakeQuantize];
-"27 /layer1/layer1.0/conv2/Conv/fq_output_0" [id=27, type=FakeQuantize];
-"28 /layer2/layer2.0/conv1/Conv" [id=28, type=Add];
-"29 /layer2/layer2.0/downsample/downsample.0/Conv" [id=29, type=Add];
-"30 /layer1/layer1.1/conv2/Conv/WithoutBiases" [id=30, type=Convolution];
-"31 /layer2/layer2.0/relu/Relu" [id=31, type=Relu];
-"32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [id=32, type=FakeQuantize];
-"33 /layer1/layer1.1/conv2/Conv" [id=33, type=Add];
-"34 /layer2/layer2.0/relu/Relu/fq_output_0" [id=34, type=FakeQuantize];
-"35 /layer2/layer2.0/Add" [id=35, type=Add];
-"36 /layer1/layer1.1/conv2/Conv/fq_output_0" [id=36, type=FakeQuantize];
-"37 /layer2/layer2.0/conv2/Conv/WithoutBiases" [id=37, type=Convolution];
-"38 /layer2/layer2.0/relu_1/Relu" [id=38, type=Relu];
-"39 /layer2/layer2.0/conv2/Conv" [id=39, type=Add];
-"40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [id=40, type=FakeQuantize];
-"41 /layer2/layer2.0/conv2/Conv/fq_output_0" [id=41, type=FakeQuantize];
-"42 /layer2/layer2.1/Add" [id=42, type=Add];
-"43 /layer2/layer2.1/conv1/Conv/WithoutBiases" [id=43, type=Convolution];
-"44 /layer2/layer2.1/relu_1/Relu" [id=44, type=Relu];
-"45 /layer2/layer2.1/conv1/Conv" [id=45, type=Add];
-"46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [id=46, type=FakeQuantize];
-"47 /layer2/layer2.1/relu/Relu" [id=47, type=Relu];
-"48 /layer3/layer3.0/conv1/Conv/WithoutBiases" [id=48, type=Convolution];
-"49 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [id=49, type=Convolution];
-"50 /layer2/layer2.1/relu/Relu/fq_output_0" [id=50, type=FakeQuantize];
-"51 /layer3/layer3.0/conv1/Conv" [id=51, type=Add];
-"52 /layer3/layer3.0/downsample/downsample.0/Conv" [id=52, type=Add];
-"53 /layer2/layer2.1/conv2/Conv/WithoutBiases" [id=53, type=Convolution];
-"54 /layer3/layer3.0/relu/Relu" [id=54, type=Relu];
-"55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [id=55, type=FakeQuantize];
-"56 /layer2/layer2.1/conv2/Conv" [id=56, type=Add];
-"57 /layer3/layer3.0/relu/Relu/fq_output_0" [id=57, type=FakeQuantize];
-"58 /layer3/layer3.0/Add" [id=58, type=Add];
-"59 /layer2/layer2.1/conv2/Conv/fq_output_0" [id=59, type=FakeQuantize];
-"60 /layer3/layer3.0/conv2/Conv/WithoutBiases" [id=60, type=Convolution];
-"61 /layer3/layer3.0/relu_1/Relu" [id=61, type=Relu];
-"62 /layer3/layer3.0/conv2/Conv" [id=62, type=Add];
-"63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [id=63, type=FakeQuantize];
-"64 /layer3/layer3.0/conv2/Conv/fq_output_0" [id=64, type=FakeQuantize];
-"65 /layer3/layer3.1/Add" [id=65, type=Add];
-"66 /layer3/layer3.1/conv1/Conv/WithoutBiases" [id=66, type=Convolution];
-"67 /layer3/layer3.1/relu_1/Relu" [id=67, type=Relu];
-"68 /layer3/layer3.1/conv1/Conv" [id=68, type=Add];
-"69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [id=69, type=FakeQuantize];
-"70 /layer3/layer3.1/relu/Relu" [id=70, type=Relu];
-"71 /layer4/layer4.0/conv1/Conv/WithoutBiases" [id=71, type=Convolution];
-"72 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [id=72, type=Convolution];
-"73 /layer3/layer3.1/relu/Relu/fq_output_0" [id=73, type=FakeQuantize];
-"74 /layer4/layer4.0/conv1/Conv" [id=74, type=Add];
-"75 /layer4/layer4.0/downsample/downsample.0/Conv" [id=75, type=Add];
-"76 /layer3/layer3.1/conv2/Conv/WithoutBiases" [id=76, type=Convolution];
-"77 /layer4/layer4.0/relu/Relu" [id=77, type=Relu];
-"78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [id=78, type=FakeQuantize];
-"79 /layer3/layer3.1/conv2/Conv" [id=79, type=Add];
-"80 /layer4/layer4.0/relu/Relu/fq_output_0" [id=80, type=FakeQuantize];
-"81 /layer4/layer4.0/Add" [id=81, type=Add];
-"82 /layer3/layer3.1/conv2/Conv/fq_output_0" [id=82, type=FakeQuantize];
-"83 /layer4/layer4.0/conv2/Conv/WithoutBiases" [id=83, type=Convolution];
-"84 /layer4/layer4.0/relu_1/Relu" [id=84, type=Relu];
-"85 /layer4/layer4.0/conv2/Conv" [id=85, type=Add];
-"86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [id=86, type=FakeQuantize];
-"87 /layer4/layer4.0/conv2/Conv/fq_output_0" [id=87, type=FakeQuantize];
-"88 /layer4/layer4.1/Add" [id=88, type=Add];
-"89 /layer4/layer4.1/conv1/Conv/WithoutBiases" [id=89, type=Convolution];
-"90 /layer4/layer4.1/relu_1/Relu" [id=90, type=Relu];
-"91 /layer4/layer4.1/conv1/Conv" [id=91, type=Add];
-"92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [id=92, type=FakeQuantize];
-"93 /layer4/layer4.1/relu/Relu" [id=93, type=Relu];
-"94 /avgpool/GlobalAveragePool" [id=94, type=ReduceMean];
-"95 /layer4/layer4.1/relu/Relu/fq_output_0" [id=95, type=FakeQuantize];
-"96 /avgpool/GlobalAveragePool/fq_output_0" [id=96, type=FakeQuantize];
-"97 /layer4/layer4.1/conv2/Conv/WithoutBiases" [id=97, type=Convolution];
-"98 /Flatten" [id=98, type=Reshape];
-"99 /layer4/layer4.1/conv2/Conv" [id=99, type=Add];
-"100 /fc/Gemm/WithoutBiases" [id=100, type=MatMul];
-"101 /layer4/layer4.1/conv2/Conv/fq_output_0" [id=101, type=FakeQuantize];
-"102 prob" [id=102, type=Add];
-"103 prob/sink_port_0" [id=103, type=Result];
-"104 Constant_1789" [id=104, type=Constant];
-"105 /fc/Gemm/WithoutBiases/fq_weights_1" [id=105, type=FakeQuantize];
-"106 Constant_48641" [id=106, type=Constant];
-"107 Constant_48640" [id=107, type=Constant];
-"108 Constant_48639" [id=108, type=Constant];
-"109 Constant_48638" [id=109, type=Constant];
-"110 fc.weight" [id=110, type=Constant];
-"111 Constant_380" [id=111, type=Constant];
-"112 Constant_48636" [id=112, type=Constant];
-"113 Constant_48635" [id=113, type=Constant];
-"114 Constant_48634" [id=114, type=Constant];
-"115 Constant_48633" [id=115, type=Constant];
-"116 Range_376" [id=116, type=Constant];
-"117 Constant_48631" [id=117, type=Constant];
-"118 Constant_48630" [id=118, type=Constant];
-"119 Constant_48629" [id=119, type=Constant];
-"120 Constant_48628" [id=120, type=Constant];
-"121 Constant_48606" [id=121, type=Constant];
-"122 Constant_48605" [id=122, type=Constant];
-"123 Constant_48604" [id=123, type=Constant];
-"124 Constant_48603" [id=124, type=Constant];
-"125 Constant_48581" [id=125, type=Constant];
-"126 Constant_48580" [id=126, type=Constant];
-"127 Constant_48579" [id=127, type=Constant];
-"128 Constant_48578" [id=128, type=Constant];
-"129 Reshape_331" [id=129, type=Constant];
-"130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=130, type=FakeQuantize];
-"131 Constant_48576" [id=131, type=Constant];
-"132 Constant_48575" [id=132, type=Constant];
-"133 Constant_48574" [id=133, type=Constant];
-"134 Constant_48573" [id=134, type=Constant];
-"135 onnx^^Conv_244" [id=135, label="135 onnx::Conv_244", type=Constant];
-"136 Constant_48571" [id=136, type=Constant];
-"137 Constant_48570" [id=137, type=Constant];
-"138 Constant_48569" [id=138, type=Constant];
-"139 Constant_48568" [id=139, type=Constant];
-"140 Constant_48546" [id=140, type=Constant];
-"141 Constant_48545" [id=141, type=Constant];
-"142 Constant_48544" [id=142, type=Constant];
-"143 Constant_48543" [id=143, type=Constant];
-"144 Constant_48521" [id=144, type=Constant];
-"145 Constant_48520" [id=145, type=Constant];
-"146 Constant_48519" [id=146, type=Constant];
-"147 Constant_48518" [id=147, type=Constant];
-"148 Reshape_250" [id=148, type=Constant];
-"149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=149, type=FakeQuantize];
-"150 Constant_48516" [id=150, type=Constant];
-"151 Constant_48515" [id=151, type=Constant];
-"152 Constant_48514" [id=152, type=Constant];
-"153 Constant_48513" [id=153, type=Constant];
-"154 onnx^^Conv_229" [id=154, label="154 onnx::Conv_229", type=Constant];
-"155 Constant_48511" [id=155, type=Constant];
-"156 Constant_48510" [id=156, type=Constant];
-"157 Constant_48509" [id=157, type=Constant];
-"158 Constant_48508" [id=158, type=Constant];
-"159 Constant_48486" [id=159, type=Constant];
-"160 Constant_48485" [id=160, type=Constant];
-"161 Constant_48484" [id=161, type=Constant];
-"162 Constant_48483" [id=162, type=Constant];
-"163 Constant_48461" [id=163, type=Constant];
-"164 Constant_48460" [id=164, type=Constant];
-"165 Constant_48459" [id=165, type=Constant];
-"166 Constant_48458" [id=166, type=Constant];
-"167 Reshape_169" [id=167, type=Constant];
-"168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=168, type=FakeQuantize];
-"169 Constant_48456" [id=169, type=Constant];
-"170 Constant_48455" [id=170, type=Constant];
-"171 Constant_48454" [id=171, type=Constant];
-"172 Constant_48453" [id=172, type=Constant];
-"173 onnx^^Conv_214" [id=173, label="173 onnx::Conv_214", type=Constant];
-"174 Constant_48451" [id=174, type=Constant];
-"175 Constant_48450" [id=175, type=Constant];
-"176 Constant_48449" [id=176, type=Constant];
-"177 Constant_48448" [id=177, type=Constant];
-"178 Constant_48426" [id=178, type=Constant];
-"179 Constant_48425" [id=179, type=Constant];
-"180 Constant_48424" [id=180, type=Constant];
-"181 Constant_48423" [id=181, type=Constant];
-"182 Constant_48401" [id=182, type=Constant];
-"183 Constant_48400" [id=183, type=Constant];
-"184 Constant_48399" [id=184, type=Constant];
-"185 Constant_48398" [id=185, type=Constant];
-"186 Reshape_55" [id=186, type=Constant];
-"187 /conv1/Conv/WithoutBiases/fq_weights_1" [id=187, type=FakeQuantize];
-"188 Constant_48396" [id=188, type=Constant];
-"189 Constant_48395" [id=189, type=Constant];
-"190 Constant_48394" [id=190, type=Constant];
-"191 Constant_48393" [id=191, type=Constant];
-"192 Gather_1788" [id=192, type=Constant];
-"193 Constant_48391" [id=193, type=Constant];
-"194 Constant_48390" [id=194, type=Constant];
-"195 Constant_48389" [id=195, type=Constant];
-"196 Constant_48388" [id=196, type=Constant];
-"197 Gather_1785" [id=197, type=Constant];
-"198 Gather_1782" [id=198, type=Constant];
-"199 Constant_48421" [id=199, type=Constant];
-"200 Constant_48420" [id=200, type=Constant];
-"201 Constant_48419" [id=201, type=Constant];
-"202 Constant_48418" [id=202, type=Constant];
-"203 Reshape_88" [id=203, type=Constant];
-"204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=204, type=FakeQuantize];
-"205 Constant_48416" [id=205, type=Constant];
-"206 Constant_48415" [id=206, type=Constant];
-"207 Constant_48414" [id=207, type=Constant];
-"208 Constant_48413" [id=208, type=Constant];
-"209 onnx^^Conv_199" [id=209, label="209 onnx::Conv_199", type=Constant];
-"210 Constant_48411" [id=210, type=Constant];
-"211 Constant_48410" [id=211, type=Constant];
-"212 Constant_48409" [id=212, type=Constant];
-"213 Constant_48408" [id=213, type=Constant];
-"214 Reshape_72" [id=214, type=Constant];
-"215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=215, type=FakeQuantize];
-"216 Constant_48406" [id=216, type=Constant];
-"217 Constant_48405" [id=217, type=Constant];
-"218 Constant_48404" [id=218, type=Constant];
-"219 Constant_48403" [id=219, type=Constant];
-"220 onnx^^Conv_196" [id=220, label="220 onnx::Conv_196", type=Constant];
-"221 Constant_48446" [id=221, type=Constant];
-"222 Constant_48445" [id=222, type=Constant];
-"223 Constant_48444" [id=223, type=Constant];
-"224 Constant_48443" [id=224, type=Constant];
-"225 Reshape_121" [id=225, type=Constant];
-"226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=226, type=FakeQuantize];
-"227 Constant_48441" [id=227, type=Constant];
-"228 Constant_48440" [id=228, type=Constant];
-"229 Constant_48439" [id=229, type=Constant];
-"230 Constant_48438" [id=230, type=Constant];
-"231 onnx^^Conv_205" [id=231, label="231 onnx::Conv_205", type=Constant];
-"232 Constant_48436" [id=232, type=Constant];
-"233 Constant_48435" [id=233, type=Constant];
-"234 Constant_48434" [id=234, type=Constant];
-"235 Constant_48433" [id=235, type=Constant];
-"236 Reshape_105" [id=236, type=Constant];
-"237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=237, type=FakeQuantize];
-"238 Constant_48431" [id=238, type=Constant];
-"239 Constant_48430" [id=239, type=Constant];
-"240 Constant_48429" [id=240, type=Constant];
-"241 Constant_48428" [id=241, type=Constant];
-"242 onnx^^Conv_202" [id=242, label="242 onnx::Conv_202", type=Constant];
-"243 Constant_48481" [id=243, type=Constant];
-"244 Constant_48480" [id=244, type=Constant];
-"245 Constant_48479" [id=245, type=Constant];
-"246 Constant_48478" [id=246, type=Constant];
-"247 Reshape_154" [id=247, type=Constant];
-"248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=248, type=FakeQuantize];
-"249 Constant_48476" [id=249, type=Constant];
-"250 Constant_48475" [id=250, type=Constant];
-"251 Constant_48474" [id=251, type=Constant];
-"252 Constant_48473" [id=252, type=Constant];
-"253 onnx^^Conv_211" [id=253, label="253 onnx::Conv_211", type=Constant];
-"254 Constant_48471" [id=254, type=Constant];
-"255 Constant_48470" [id=255, type=Constant];
-"256 Constant_48469" [id=256, type=Constant];
-"257 Constant_48468" [id=257, type=Constant];
-"258 Reshape_138" [id=258, type=Constant];
-"259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=259, type=FakeQuantize];
-"260 Constant_48466" [id=260, type=Constant];
-"261 Constant_48465" [id=261, type=Constant];
-"262 Constant_48464" [id=262, type=Constant];
-"263 Constant_48463" [id=263, type=Constant];
-"264 onnx^^Conv_208" [id=264, label="264 onnx::Conv_208", type=Constant];
-"265 Constant_48506" [id=265, type=Constant];
-"266 Constant_48505" [id=266, type=Constant];
-"267 Constant_48504" [id=267, type=Constant];
-"268 Constant_48503" [id=268, type=Constant];
-"269 Reshape_202" [id=269, type=Constant];
-"270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=270, type=FakeQuantize];
-"271 Constant_48501" [id=271, type=Constant];
-"272 Constant_48500" [id=272, type=Constant];
-"273 Constant_48499" [id=273, type=Constant];
-"274 Constant_48498" [id=274, type=Constant];
-"275 onnx^^Conv_220" [id=275, label="275 onnx::Conv_220", type=Constant];
-"276 Constant_48496" [id=276, type=Constant];
-"277 Constant_48495" [id=277, type=Constant];
-"278 Constant_48494" [id=278, type=Constant];
-"279 Constant_48493" [id=279, type=Constant];
-"280 Reshape_186" [id=280, type=Constant];
-"281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=281, type=FakeQuantize];
-"282 Constant_48491" [id=282, type=Constant];
-"283 Constant_48490" [id=283, type=Constant];
-"284 Constant_48489" [id=284, type=Constant];
-"285 Constant_48488" [id=285, type=Constant];
-"286 onnx^^Conv_217" [id=286, label="286 onnx::Conv_217", type=Constant];
-"287 Constant_48541" [id=287, type=Constant];
-"288 Constant_48540" [id=288, type=Constant];
-"289 Constant_48539" [id=289, type=Constant];
-"290 Constant_48538" [id=290, type=Constant];
-"291 Reshape_235" [id=291, type=Constant];
-"292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=292, type=FakeQuantize];
-"293 Constant_48536" [id=293, type=Constant];
-"294 Constant_48535" [id=294, type=Constant];
-"295 Constant_48534" [id=295, type=Constant];
-"296 Constant_48533" [id=296, type=Constant];
-"297 onnx^^Conv_226" [id=297, label="297 onnx::Conv_226", type=Constant];
-"298 Constant_48531" [id=298, type=Constant];
-"299 Constant_48530" [id=299, type=Constant];
-"300 Constant_48529" [id=300, type=Constant];
-"301 Constant_48528" [id=301, type=Constant];
-"302 Reshape_219" [id=302, type=Constant];
-"303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=303, type=FakeQuantize];
-"304 Constant_48526" [id=304, type=Constant];
-"305 Constant_48525" [id=305, type=Constant];
-"306 Constant_48524" [id=306, type=Constant];
-"307 Constant_48523" [id=307, type=Constant];
-"308 onnx^^Conv_223" [id=308, label="308 onnx::Conv_223", type=Constant];
-"309 Constant_48566" [id=309, type=Constant];
-"310 Constant_48565" [id=310, type=Constant];
-"311 Constant_48564" [id=311, type=Constant];
-"312 Constant_48563" [id=312, type=Constant];
-"313 Reshape_283" [id=313, type=Constant];
-"314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=314, type=FakeQuantize];
-"315 Constant_48561" [id=315, type=Constant];
-"316 Constant_48560" [id=316, type=Constant];
-"317 Constant_48559" [id=317, type=Constant];
-"318 Constant_48558" [id=318, type=Constant];
-"319 onnx^^Conv_235" [id=319, label="319 onnx::Conv_235", type=Constant];
-"320 Constant_48556" [id=320, type=Constant];
-"321 Constant_48555" [id=321, type=Constant];
-"322 Constant_48554" [id=322, type=Constant];
-"323 Constant_48553" [id=323, type=Constant];
-"324 Reshape_267" [id=324, type=Constant];
-"325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=325, type=FakeQuantize];
-"326 Constant_48551" [id=326, type=Constant];
-"327 Constant_48550" [id=327, type=Constant];
-"328 Constant_48549" [id=328, type=Constant];
-"329 Constant_48548" [id=329, type=Constant];
-"330 onnx^^Conv_232" [id=330, label="330 onnx::Conv_232", type=Constant];
-"331 Constant_48601" [id=331, type=Constant];
-"332 Constant_48600" [id=332, type=Constant];
-"333 Constant_48599" [id=333, type=Constant];
-"334 Constant_48598" [id=334, type=Constant];
-"335 Reshape_316" [id=335, type=Constant];
-"336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=336, type=FakeQuantize];
-"337 Constant_48596" [id=337, type=Constant];
-"338 Constant_48595" [id=338, type=Constant];
-"339 Constant_48594" [id=339, type=Constant];
-"340 Constant_48593" [id=340, type=Constant];
-"341 onnx^^Conv_241" [id=341, label="341 onnx::Conv_241", type=Constant];
-"342 Constant_48591" [id=342, type=Constant];
-"343 Constant_48590" [id=343, type=Constant];
-"344 Constant_48589" [id=344, type=Constant];
-"345 Constant_48588" [id=345, type=Constant];
-"346 Reshape_300" [id=346, type=Constant];
-"347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=347, type=FakeQuantize];
-"348 Constant_48586" [id=348, type=Constant];
-"349 Constant_48585" [id=349, type=Constant];
-"350 Constant_48584" [id=350, type=Constant];
-"351 Constant_48583" [id=351, type=Constant];
-"352 onnx^^Conv_238" [id=352, label="352 onnx::Conv_238", type=Constant];
-"353 Constant_48626" [id=353, type=Constant];
-"354 Constant_48625" [id=354, type=Constant];
-"355 Constant_48624" [id=355, type=Constant];
-"356 Constant_48623" [id=356, type=Constant];
-"357 Reshape_364" [id=357, type=Constant];
-"358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=358, type=FakeQuantize];
-"359 Constant_48621" [id=359, type=Constant];
-"360 Constant_48620" [id=360, type=Constant];
-"361 Constant_48619" [id=361, type=Constant];
-"362 Constant_48618" [id=362, type=Constant];
-"363 onnx^^Conv_250" [id=363, label="363 onnx::Conv_250", type=Constant];
-"364 Constant_48616" [id=364, type=Constant];
-"365 Constant_48615" [id=365, type=Constant];
-"366 Constant_48614" [id=366, type=Constant];
-"367 Constant_48613" [id=367, type=Constant];
-"368 Reshape_348" [id=368, type=Constant];
-"369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=369, type=FakeQuantize];
-"370 Constant_48611" [id=370, type=Constant];
-"371 Constant_48610" [id=371, type=Constant];
-"372 Constant_48609" [id=372, type=Constant];
-"373 Constant_48608" [id=373, type=Constant];
-"374 onnx^^Conv_247" [id=374, label="374 onnx::Conv_247", type=Constant];
-"0 data" -> "1 Multiply_1715" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_1715" -> "2 Divide_401" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_401" -> "3 Divide_401/fq_output_0" [label="[1, 3, 224, 224]", style=solid];
-"3 Divide_401/fq_output_0" -> "4 /conv1/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"4 /conv1/Conv/WithoutBiases" -> "5 /conv1/Conv" [label="[1, 64, 112, 112]", style=solid];
-"5 /conv1/Conv" -> "6 /relu/Relu" [label="[1, 64, 112, 112]", style=solid];
-"6 /relu/Relu" -> "7 /relu/Relu/fq_output_0" [label="[1, 64, 112, 112]", style=solid];
-"7 /relu/Relu/fq_output_0" -> "8 /maxpool/MaxPool" [label="[1, 64, 112, 112]", style=solid];
-"8 /maxpool/MaxPool" -> "9 /layer1/layer1.0/Add" [label="[1, 64, 56, 56]", style=solid];
-"8 /maxpool/MaxPool" -> "10 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"9 /layer1/layer1.0/Add" -> "11 /layer1/layer1.0/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"10 /layer1/layer1.0/conv1/Conv/WithoutBiases" -> "12 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"11 /layer1/layer1.0/relu_1/Relu" -> "13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"12 /layer1/layer1.0/conv1/Conv" -> "14 /layer1/layer1.0/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"13 /layer1/layer1.0/relu_1/Relu/fq_output_0" -> "15 /layer1/layer1.1/Add" [label="[1, 64, 56, 56]", style=solid];
-"13 /layer1/layer1.0/relu_1/Relu/fq_output_0" -> "16 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"14 /layer1/layer1.0/relu/Relu" -> "17 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"15 /layer1/layer1.1/Add" -> "18 /layer1/layer1.1/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"16 /layer1/layer1.1/conv1/Conv/WithoutBiases" -> "19 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"17 /layer1/layer1.0/relu/Relu/fq_output_0" -> "20 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"18 /layer1/layer1.1/relu_1/Relu" -> "21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"19 /layer1/layer1.1/conv1/Conv" -> "22 /layer1/layer1.1/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"20 /layer1/layer1.0/conv2/Conv/WithoutBiases" -> "23 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"21 /layer1/layer1.1/relu_1/Relu/fq_output_0" -> "24 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"21 /layer1/layer1.1/relu_1/Relu/fq_output_0" -> "25 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"22 /layer1/layer1.1/relu/Relu" -> "26 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"23 /layer1/layer1.0/conv2/Conv" -> "27 /layer1/layer1.0/conv2/Conv/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"24 /layer2/layer2.0/conv1/Conv/WithoutBiases" -> "28 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"25 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" -> "29 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 128, 28, 28]", style=solid];
-"26 /layer1/layer1.1/relu/Relu/fq_output_0" -> "30 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"27 /layer1/layer1.0/conv2/Conv/fq_output_0" -> "9 /layer1/layer1.0/Add" [label="[1, 64, 56, 56]", style=solid];
-"28 /layer2/layer2.0/conv1/Conv" -> "31 /layer2/layer2.0/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"29 /layer2/layer2.0/downsample/downsample.0/Conv" -> "32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"30 /layer1/layer1.1/conv2/Conv/WithoutBiases" -> "33 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"31 /layer2/layer2.0/relu/Relu" -> "34 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" -> "35 /layer2/layer2.0/Add" [label="[1, 128, 28, 28]", style=solid];
-"33 /layer1/layer1.1/conv2/Conv" -> "36 /layer1/layer1.1/conv2/Conv/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"34 /layer2/layer2.0/relu/Relu/fq_output_0" -> "37 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"35 /layer2/layer2.0/Add" -> "38 /layer2/layer2.0/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"36 /layer1/layer1.1/conv2/Conv/fq_output_0" -> "15 /layer1/layer1.1/Add" [label="[1, 64, 56, 56]", style=solid];
-"37 /layer2/layer2.0/conv2/Conv/WithoutBiases" -> "39 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"38 /layer2/layer2.0/relu_1/Relu" -> "40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"39 /layer2/layer2.0/conv2/Conv" -> "41 /layer2/layer2.0/conv2/Conv/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"40 /layer2/layer2.0/relu_1/Relu/fq_output_0" -> "42 /layer2/layer2.1/Add" [label="[1, 128, 28, 28]", style=solid];
-"40 /layer2/layer2.0/relu_1/Relu/fq_output_0" -> "43 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"41 /layer2/layer2.0/conv2/Conv/fq_output_0" -> "35 /layer2/layer2.0/Add" [label="[1, 128, 28, 28]", style=solid];
-"42 /layer2/layer2.1/Add" -> "44 /layer2/layer2.1/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"43 /layer2/layer2.1/conv1/Conv/WithoutBiases" -> "45 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"44 /layer2/layer2.1/relu_1/Relu" -> "46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"45 /layer2/layer2.1/conv1/Conv" -> "47 /layer2/layer2.1/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"46 /layer2/layer2.1/relu_1/Relu/fq_output_0" -> "48 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"46 /layer2/layer2.1/relu_1/Relu/fq_output_0" -> "49 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"47 /layer2/layer2.1/relu/Relu" -> "50 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"48 /layer3/layer3.0/conv1/Conv/WithoutBiases" -> "51 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"49 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" -> "52 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 256, 14, 14]", style=solid];
-"50 /layer2/layer2.1/relu/Relu/fq_output_0" -> "53 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"51 /layer3/layer3.0/conv1/Conv" -> "54 /layer3/layer3.0/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"52 /layer3/layer3.0/downsample/downsample.0/Conv" -> "55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"53 /layer2/layer2.1/conv2/Conv/WithoutBiases" -> "56 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"54 /layer3/layer3.0/relu/Relu" -> "57 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" -> "58 /layer3/layer3.0/Add" [label="[1, 256, 14, 14]", style=solid];
-"56 /layer2/layer2.1/conv2/Conv" -> "59 /layer2/layer2.1/conv2/Conv/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"57 /layer3/layer3.0/relu/Relu/fq_output_0" -> "60 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"58 /layer3/layer3.0/Add" -> "61 /layer3/layer3.0/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"59 /layer2/layer2.1/conv2/Conv/fq_output_0" -> "42 /layer2/layer2.1/Add" [label="[1, 128, 28, 28]", style=solid];
-"60 /layer3/layer3.0/conv2/Conv/WithoutBiases" -> "62 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"61 /layer3/layer3.0/relu_1/Relu" -> "63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"62 /layer3/layer3.0/conv2/Conv" -> "64 /layer3/layer3.0/conv2/Conv/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"63 /layer3/layer3.0/relu_1/Relu/fq_output_0" -> "65 /layer3/layer3.1/Add" [label="[1, 256, 14, 14]", style=solid];
-"63 /layer3/layer3.0/relu_1/Relu/fq_output_0" -> "66 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"64 /layer3/layer3.0/conv2/Conv/fq_output_0" -> "58 /layer3/layer3.0/Add" [label="[1, 256, 14, 14]", style=solid];
-"65 /layer3/layer3.1/Add" -> "67 /layer3/layer3.1/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"66 /layer3/layer3.1/conv1/Conv/WithoutBiases" -> "68 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"67 /layer3/layer3.1/relu_1/Relu" -> "69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"68 /layer3/layer3.1/conv1/Conv" -> "70 /layer3/layer3.1/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"69 /layer3/layer3.1/relu_1/Relu/fq_output_0" -> "71 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"69 /layer3/layer3.1/relu_1/Relu/fq_output_0" -> "72 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"70 /layer3/layer3.1/relu/Relu" -> "73 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"71 /layer4/layer4.0/conv1/Conv/WithoutBiases" -> "74 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"72 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" -> "75 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 512, 7, 7]", style=solid];
-"73 /layer3/layer3.1/relu/Relu/fq_output_0" -> "76 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"74 /layer4/layer4.0/conv1/Conv" -> "77 /layer4/layer4.0/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"75 /layer4/layer4.0/downsample/downsample.0/Conv" -> "78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"76 /layer3/layer3.1/conv2/Conv/WithoutBiases" -> "79 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"77 /layer4/layer4.0/relu/Relu" -> "80 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" -> "81 /layer4/layer4.0/Add" [label="[1, 512, 7, 7]", style=solid];
-"79 /layer3/layer3.1/conv2/Conv" -> "82 /layer3/layer3.1/conv2/Conv/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"80 /layer4/layer4.0/relu/Relu/fq_output_0" -> "83 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"81 /layer4/layer4.0/Add" -> "84 /layer4/layer4.0/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"82 /layer3/layer3.1/conv2/Conv/fq_output_0" -> "65 /layer3/layer3.1/Add" [label="[1, 256, 14, 14]", style=solid];
-"83 /layer4/layer4.0/conv2/Conv/WithoutBiases" -> "85 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"84 /layer4/layer4.0/relu_1/Relu" -> "86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"85 /layer4/layer4.0/conv2/Conv" -> "87 /layer4/layer4.0/conv2/Conv/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"86 /layer4/layer4.0/relu_1/Relu/fq_output_0" -> "88 /layer4/layer4.1/Add" [label="[1, 512, 7, 7]", style=solid];
-"86 /layer4/layer4.0/relu_1/Relu/fq_output_0" -> "89 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"87 /layer4/layer4.0/conv2/Conv/fq_output_0" -> "81 /layer4/layer4.0/Add" [label="[1, 512, 7, 7]", style=solid];
-"88 /layer4/layer4.1/Add" -> "90 /layer4/layer4.1/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"89 /layer4/layer4.1/conv1/Conv/WithoutBiases" -> "91 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"90 /layer4/layer4.1/relu_1/Relu" -> "92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"91 /layer4/layer4.1/conv1/Conv" -> "93 /layer4/layer4.1/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"92 /layer4/layer4.1/relu_1/Relu/fq_output_0" -> "94 /avgpool/GlobalAveragePool" [label="[1, 512, 7, 7]", style=solid];
-"93 /layer4/layer4.1/relu/Relu" -> "95 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"94 /avgpool/GlobalAveragePool" -> "96 /avgpool/GlobalAveragePool/fq_output_0" [label="[1, 512, 1, 1]", style=solid];
-"95 /layer4/layer4.1/relu/Relu/fq_output_0" -> "97 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"96 /avgpool/GlobalAveragePool/fq_output_0" -> "98 /Flatten" [label="[1, 512, 1, 1]", style=solid];
-"97 /layer4/layer4.1/conv2/Conv/WithoutBiases" -> "99 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"98 /Flatten" -> "100 /fc/Gemm/WithoutBiases" [label="[1, 512]", style=solid];
-"99 /layer4/layer4.1/conv2/Conv" -> "101 /layer4/layer4.1/conv2/Conv/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"100 /fc/Gemm/WithoutBiases" -> "102 prob" [label="[1, 1000]", style=solid];
-"101 /layer4/layer4.1/conv2/Conv/fq_output_0" -> "88 /layer4/layer4.1/Add" [label="[1, 512, 7, 7]", style=solid];
-"102 prob" -> "103 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"104 Constant_1789" -> "102 prob" [label="[1, 1000]", style=solid];
-"105 /fc/Gemm/WithoutBiases/fq_weights_1" -> "100 /fc/Gemm/WithoutBiases" [label="[1000, 512]", style=solid];
-"106 Constant_48641" -> "105 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"107 Constant_48640" -> "105 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"108 Constant_48639" -> "105 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"109 Constant_48638" -> "105 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"110 fc.weight" -> "105 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 512]", style=solid];
-"111 Constant_380" -> "98 /Flatten" [label="[2]", style=dashed];
-"112 Constant_48636" -> "96 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"113 Constant_48635" -> "96 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"114 Constant_48634" -> "96 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"115 Constant_48633" -> "96 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"116 Range_376" -> "94 /avgpool/GlobalAveragePool" [label="[2]", style=dashed];
-"117 Constant_48631" -> "92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"118 Constant_48630" -> "92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"119 Constant_48629" -> "92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"120 Constant_48628" -> "92 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"121 Constant_48606" -> "86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"122 Constant_48605" -> "86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"123 Constant_48604" -> "86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"124 Constant_48603" -> "86 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"125 Constant_48581" -> "78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"126 Constant_48580" -> "78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"127 Constant_48579" -> "78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"128 Constant_48578" -> "78 /layer4/layer4.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"129 Reshape_331" -> "75 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 512, 1, 1]", style=solid];
-"130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "72 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[512, 256, 1, 1]", style=solid];
-"131 Constant_48576" -> "130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"132 Constant_48575" -> "130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"133 Constant_48574" -> "130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"134 Constant_48573" -> "130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"135 onnx^^Conv_244" -> "130 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 256, 1, 1]", style=solid];
-"136 Constant_48571" -> "69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"137 Constant_48570" -> "69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"138 Constant_48569" -> "69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"139 Constant_48568" -> "69 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"140 Constant_48546" -> "63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"141 Constant_48545" -> "63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"142 Constant_48544" -> "63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"143 Constant_48543" -> "63 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"144 Constant_48521" -> "55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"145 Constant_48520" -> "55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"146 Constant_48519" -> "55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"147 Constant_48518" -> "55 /layer3/layer3.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"148 Reshape_250" -> "52 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 256, 1, 1]", style=solid];
-"149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "49 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[256, 128, 1, 1]", style=solid];
-"150 Constant_48516" -> "149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"151 Constant_48515" -> "149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"152 Constant_48514" -> "149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"153 Constant_48513" -> "149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"154 onnx^^Conv_229" -> "149 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 128, 1, 1]", style=solid];
-"155 Constant_48511" -> "46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"156 Constant_48510" -> "46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"157 Constant_48509" -> "46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"158 Constant_48508" -> "46 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"159 Constant_48486" -> "40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"160 Constant_48485" -> "40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"161 Constant_48484" -> "40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"162 Constant_48483" -> "40 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"163 Constant_48461" -> "32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"164 Constant_48460" -> "32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"165 Constant_48459" -> "32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"166 Constant_48458" -> "32 /layer2/layer2.0/downsample/downsample.0/Conv/fq_output_0" [label="[]", style=solid];
-"167 Reshape_169" -> "29 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 128, 1, 1]", style=solid];
-"168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "25 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[128, 64, 1, 1]", style=solid];
-"169 Constant_48456" -> "168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"170 Constant_48455" -> "168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"171 Constant_48454" -> "168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"172 Constant_48453" -> "168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"173 onnx^^Conv_214" -> "168 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[128, 64, 1, 1]", style=solid];
-"174 Constant_48451" -> "21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"175 Constant_48450" -> "21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"176 Constant_48449" -> "21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"177 Constant_48448" -> "21 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"178 Constant_48426" -> "13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"179 Constant_48425" -> "13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"180 Constant_48424" -> "13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"181 Constant_48423" -> "13 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"182 Constant_48401" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"183 Constant_48400" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"184 Constant_48399" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"185 Constant_48398" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"186 Reshape_55" -> "5 /conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"187 /conv1/Conv/WithoutBiases/fq_weights_1" -> "4 /conv1/Conv/WithoutBiases" [label="[64, 3, 7, 7]", style=solid];
-"188 Constant_48396" -> "187 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"189 Constant_48395" -> "187 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"190 Constant_48394" -> "187 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"191 Constant_48393" -> "187 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"192 Gather_1788" -> "187 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 3, 7, 7]", style=solid];
-"193 Constant_48391" -> "3 Divide_401/fq_output_0" [label="[]", style=solid];
-"194 Constant_48390" -> "3 Divide_401/fq_output_0" [label="[]", style=solid];
-"195 Constant_48389" -> "3 Divide_401/fq_output_0" [label="[]", style=solid];
-"196 Constant_48388" -> "3 Divide_401/fq_output_0" [label="[]", style=solid];
-"197 Gather_1785" -> "2 Divide_401" [label="[1, 3, 1, 1]", style=solid];
-"198 Gather_1782" -> "1 Multiply_1715" [label="[1, 3, 1, 1]", style=solid];
-"199 Constant_48421" -> "27 /layer1/layer1.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"200 Constant_48420" -> "27 /layer1/layer1.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"201 Constant_48419" -> "27 /layer1/layer1.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"202 Constant_48418" -> "27 /layer1/layer1.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"203 Reshape_88" -> "23 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "20 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"205 Constant_48416" -> "204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"206 Constant_48415" -> "204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"207 Constant_48414" -> "204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"208 Constant_48413" -> "204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"209 onnx^^Conv_199" -> "204 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"210 Constant_48411" -> "17 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"211 Constant_48410" -> "17 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"212 Constant_48409" -> "17 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"213 Constant_48408" -> "17 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"214 Reshape_72" -> "12 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "10 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"216 Constant_48406" -> "215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"217 Constant_48405" -> "215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"218 Constant_48404" -> "215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"219 Constant_48403" -> "215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"220 onnx^^Conv_196" -> "215 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"221 Constant_48446" -> "36 /layer1/layer1.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"222 Constant_48445" -> "36 /layer1/layer1.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"223 Constant_48444" -> "36 /layer1/layer1.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"224 Constant_48443" -> "36 /layer1/layer1.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"225 Reshape_121" -> "33 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "30 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"227 Constant_48441" -> "226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"228 Constant_48440" -> "226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"229 Constant_48439" -> "226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"230 Constant_48438" -> "226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"231 onnx^^Conv_205" -> "226 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"232 Constant_48436" -> "26 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"233 Constant_48435" -> "26 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"234 Constant_48434" -> "26 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"235 Constant_48433" -> "26 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"236 Reshape_105" -> "19 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "16 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"238 Constant_48431" -> "237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"239 Constant_48430" -> "237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"240 Constant_48429" -> "237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"241 Constant_48428" -> "237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"242 onnx^^Conv_202" -> "237 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"243 Constant_48481" -> "41 /layer2/layer2.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"244 Constant_48480" -> "41 /layer2/layer2.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"245 Constant_48479" -> "41 /layer2/layer2.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"246 Constant_48478" -> "41 /layer2/layer2.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"247 Reshape_154" -> "39 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "37 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"249 Constant_48476" -> "248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"250 Constant_48475" -> "248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"251 Constant_48474" -> "248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"252 Constant_48473" -> "248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"253 onnx^^Conv_211" -> "248 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"254 Constant_48471" -> "34 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"255 Constant_48470" -> "34 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"256 Constant_48469" -> "34 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"257 Constant_48468" -> "34 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"258 Reshape_138" -> "28 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "24 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[128, 64, 3, 3]", style=solid];
-"260 Constant_48466" -> "259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"261 Constant_48465" -> "259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"262 Constant_48464" -> "259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"263 Constant_48463" -> "259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"264 onnx^^Conv_208" -> "259 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 64, 3, 3]", style=solid];
-"265 Constant_48506" -> "59 /layer2/layer2.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"266 Constant_48505" -> "59 /layer2/layer2.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"267 Constant_48504" -> "59 /layer2/layer2.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"268 Constant_48503" -> "59 /layer2/layer2.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"269 Reshape_202" -> "56 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "53 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"271 Constant_48501" -> "270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"272 Constant_48500" -> "270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"273 Constant_48499" -> "270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"274 Constant_48498" -> "270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"275 onnx^^Conv_220" -> "270 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"276 Constant_48496" -> "50 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"277 Constant_48495" -> "50 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"278 Constant_48494" -> "50 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"279 Constant_48493" -> "50 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"280 Reshape_186" -> "45 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "43 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"282 Constant_48491" -> "281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"283 Constant_48490" -> "281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"284 Constant_48489" -> "281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"285 Constant_48488" -> "281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"286 onnx^^Conv_217" -> "281 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"287 Constant_48541" -> "64 /layer3/layer3.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"288 Constant_48540" -> "64 /layer3/layer3.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"289 Constant_48539" -> "64 /layer3/layer3.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"290 Constant_48538" -> "64 /layer3/layer3.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"291 Reshape_235" -> "62 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "60 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"293 Constant_48536" -> "292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"294 Constant_48535" -> "292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"295 Constant_48534" -> "292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"296 Constant_48533" -> "292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"297 onnx^^Conv_226" -> "292 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"298 Constant_48531" -> "57 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"299 Constant_48530" -> "57 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"300 Constant_48529" -> "57 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"301 Constant_48528" -> "57 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"302 Reshape_219" -> "51 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "48 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[256, 128, 3, 3]", style=solid];
-"304 Constant_48526" -> "303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"305 Constant_48525" -> "303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"306 Constant_48524" -> "303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"307 Constant_48523" -> "303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"308 onnx^^Conv_223" -> "303 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 128, 3, 3]", style=solid];
-"309 Constant_48566" -> "82 /layer3/layer3.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"310 Constant_48565" -> "82 /layer3/layer3.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"311 Constant_48564" -> "82 /layer3/layer3.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"312 Constant_48563" -> "82 /layer3/layer3.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"313 Reshape_283" -> "79 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "76 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"315 Constant_48561" -> "314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"316 Constant_48560" -> "314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"317 Constant_48559" -> "314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"318 Constant_48558" -> "314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"319 onnx^^Conv_235" -> "314 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"320 Constant_48556" -> "73 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"321 Constant_48555" -> "73 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"322 Constant_48554" -> "73 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"323 Constant_48553" -> "73 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"324 Reshape_267" -> "68 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "66 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"326 Constant_48551" -> "325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"327 Constant_48550" -> "325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"328 Constant_48549" -> "325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"329 Constant_48548" -> "325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"330 onnx^^Conv_232" -> "325 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"331 Constant_48601" -> "87 /layer4/layer4.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"332 Constant_48600" -> "87 /layer4/layer4.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"333 Constant_48599" -> "87 /layer4/layer4.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"334 Constant_48598" -> "87 /layer4/layer4.0/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"335 Reshape_316" -> "85 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "83 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"337 Constant_48596" -> "336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"338 Constant_48595" -> "336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"339 Constant_48594" -> "336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"340 Constant_48593" -> "336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"341 onnx^^Conv_241" -> "336 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"342 Constant_48591" -> "80 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"343 Constant_48590" -> "80 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"344 Constant_48589" -> "80 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"345 Constant_48588" -> "80 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"346 Reshape_300" -> "74 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "71 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[512, 256, 3, 3]", style=solid];
-"348 Constant_48586" -> "347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"349 Constant_48585" -> "347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"350 Constant_48584" -> "347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"351 Constant_48583" -> "347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"352 onnx^^Conv_238" -> "347 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 256, 3, 3]", style=solid];
-"353 Constant_48626" -> "101 /layer4/layer4.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"354 Constant_48625" -> "101 /layer4/layer4.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"355 Constant_48624" -> "101 /layer4/layer4.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"356 Constant_48623" -> "101 /layer4/layer4.1/conv2/Conv/fq_output_0" [label="[]", style=solid];
-"357 Reshape_364" -> "99 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "97 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"359 Constant_48621" -> "358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"360 Constant_48620" -> "358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"361 Constant_48619" -> "358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"362 Constant_48618" -> "358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"363 onnx^^Conv_250" -> "358 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"364 Constant_48616" -> "95 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"365 Constant_48615" -> "95 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"366 Constant_48614" -> "95 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"367 Constant_48613" -> "95 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"368 Reshape_348" -> "91 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "89 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"370 Constant_48611" -> "369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"371 Constant_48610" -> "369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"372 Constant_48609" -> "369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"373 Constant_48608" -> "369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"374 onnx^^Conv_247" -> "369 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-50-pytorch_performance_CPU_SPR.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-50-pytorch_performance_CPU_SPR.dot
deleted file mode 100644
index e318d57f89b..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/resnet-50-pytorch_performance_CPU_SPR.dot
+++ /dev/null
@@ -1,1691 +0,0 @@
-strict digraph {
-"0 data" [id=0, type=Parameter];
-"1 Multiply_2745" [id=1, type=Multiply];
-"2 Divide_1002" [id=2, type=Add];
-"3 Divide_1002/fq_output_0" [id=3, type=FakeQuantize];
-"4 /conv1/Conv/WithoutBiases" [id=4, type=Convolution];
-"5 /conv1/Conv" [id=5, type=Add];
-"6 /relu/Relu" [id=6, type=Relu];
-"7 /relu/Relu/fq_output_0" [id=7, type=FakeQuantize];
-"8 /maxpool/MaxPool" [id=8, type=MaxPool];
-"9 /layer1/layer1.0/conv1/Conv/WithoutBiases" [id=9, type=Convolution];
-"10 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases" [id=10, type=Convolution];
-"11 /layer1/layer1.0/conv1/Conv" [id=11, type=Add];
-"12 /layer1/layer1.0/downsample/downsample.0/Conv" [id=12, type=Add];
-"13 /layer1/layer1.0/relu/Relu" [id=13, type=Relu];
-"14 /layer1/layer1.0/Add" [id=14, type=Add];
-"15 /layer1/layer1.0/relu/Relu/fq_output_0" [id=15, type=FakeQuantize];
-"16 /layer1/layer1.0/relu_2/Relu" [id=16, type=Relu];
-"17 /layer1/layer1.0/conv2/Conv/WithoutBiases" [id=17, type=Convolution];
-"18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [id=18, type=FakeQuantize];
-"19 /layer1/layer1.0/conv2/Conv" [id=19, type=Add];
-"20 /layer1/layer1.1/Add" [id=20, type=Add];
-"21 /layer1/layer1.1/conv1/Conv/WithoutBiases" [id=21, type=Convolution];
-"22 /layer1/layer1.0/relu_1/Relu" [id=22, type=Relu];
-"23 /layer1/layer1.1/relu_2/Relu" [id=23, type=Relu];
-"24 /layer1/layer1.1/conv1/Conv" [id=24, type=Add];
-"25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [id=25, type=FakeQuantize];
-"26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [id=26, type=FakeQuantize];
-"27 /layer1/layer1.1/relu/Relu" [id=27, type=Relu];
-"28 /layer1/layer1.0/conv3/Conv/WithoutBiases" [id=28, type=Convolution];
-"29 /layer1/layer1.2/Add" [id=29, type=Add];
-"30 /layer1/layer1.2/conv1/Conv/WithoutBiases" [id=30, type=Convolution];
-"31 /layer1/layer1.1/relu/Relu/fq_output_0" [id=31, type=FakeQuantize];
-"32 /layer1/layer1.0/conv3/Conv" [id=32, type=Add];
-"33 /layer1/layer1.2/relu_2/Relu" [id=33, type=Relu];
-"34 /layer1/layer1.2/conv1/Conv" [id=34, type=Add];
-"35 /layer1/layer1.1/conv2/Conv/WithoutBiases" [id=35, type=Convolution];
-"36 /layer1/layer1.0/conv3/Conv/fq_output_0" [id=36, type=FakeQuantize];
-"37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [id=37, type=FakeQuantize];
-"38 /layer1/layer1.2/relu/Relu" [id=38, type=Relu];
-"39 /layer1/layer1.1/conv2/Conv" [id=39, type=Add];
-"40 /layer2/layer2.0/conv1/Conv/WithoutBiases" [id=40, type=Convolution];
-"41 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [id=41, type=Convolution];
-"42 /layer1/layer1.2/relu/Relu/fq_output_0" [id=42, type=FakeQuantize];
-"43 /layer1/layer1.1/relu_1/Relu" [id=43, type=Relu];
-"44 /layer2/layer2.0/conv1/Conv" [id=44, type=Add];
-"45 /layer2/layer2.0/downsample/downsample.0/Conv" [id=45, type=Add];
-"46 /layer1/layer1.2/conv2/Conv/WithoutBiases" [id=46, type=Convolution];
-"47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [id=47, type=FakeQuantize];
-"48 /layer2/layer2.0/relu/Relu" [id=48, type=Relu];
-"49 /layer2/layer2.0/Add" [id=49, type=Add];
-"50 /layer1/layer1.2/conv2/Conv" [id=50, type=Add];
-"51 /layer1/layer1.1/conv3/Conv/WithoutBiases" [id=51, type=Convolution];
-"52 /layer2/layer2.0/relu/Relu/fq_output_0" [id=52, type=FakeQuantize];
-"53 /layer2/layer2.0/relu_2/Relu" [id=53, type=Relu];
-"54 /layer1/layer1.2/relu_1/Relu" [id=54, type=Relu];
-"55 /layer1/layer1.1/conv3/Conv" [id=55, type=Add];
-"56 /layer2/layer2.0/conv2/Conv/WithoutBiases" [id=56, type=Convolution];
-"57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [id=57, type=FakeQuantize];
-"58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [id=58, type=FakeQuantize];
-"59 /layer2/layer2.0/conv2/Conv" [id=59, type=Add];
-"60 /layer2/layer2.1/Add" [id=60, type=Add];
-"61 /layer2/layer2.1/conv1/Conv/WithoutBiases" [id=61, type=Convolution];
-"62 /layer1/layer1.2/conv3/Conv/WithoutBiases" [id=62, type=Convolution];
-"63 /layer2/layer2.0/relu_1/Relu" [id=63, type=Relu];
-"64 /layer2/layer2.1/relu_2/Relu" [id=64, type=Relu];
-"65 /layer2/layer2.1/conv1/Conv" [id=65, type=Add];
-"66 /layer1/layer1.2/conv3/Conv" [id=66, type=Add];
-"67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [id=67, type=FakeQuantize];
-"68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [id=68, type=FakeQuantize];
-"69 /layer2/layer2.1/relu/Relu" [id=69, type=Relu];
-"70 /layer2/layer2.0/conv3/Conv/WithoutBiases" [id=70, type=Convolution];
-"71 /layer2/layer2.2/Add" [id=71, type=Add];
-"72 /layer2/layer2.2/conv1/Conv/WithoutBiases" [id=72, type=Convolution];
-"73 /layer2/layer2.1/relu/Relu/fq_output_0" [id=73, type=FakeQuantize];
-"74 /layer2/layer2.0/conv3/Conv" [id=74, type=Add];
-"75 /layer2/layer2.2/relu_2/Relu" [id=75, type=Relu];
-"76 /layer2/layer2.2/conv1/Conv" [id=76, type=Add];
-"77 /layer2/layer2.1/conv2/Conv/WithoutBiases" [id=77, type=Convolution];
-"78 /layer2/layer2.0/conv3/Conv/fq_output_0" [id=78, type=FakeQuantize];
-"79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [id=79, type=FakeQuantize];
-"80 /layer2/layer2.2/relu/Relu" [id=80, type=Relu];
-"81 /layer2/layer2.1/conv2/Conv" [id=81, type=Add];
-"82 /layer2/layer2.3/Add" [id=82, type=Add];
-"83 /layer2/layer2.3/conv1/Conv/WithoutBiases" [id=83, type=Convolution];
-"84 /layer2/layer2.2/relu/Relu/fq_output_0" [id=84, type=FakeQuantize];
-"85 /layer2/layer2.1/relu_1/Relu" [id=85, type=Relu];
-"86 /layer2/layer2.3/relu_2/Relu" [id=86, type=Relu];
-"87 /layer2/layer2.3/conv1/Conv" [id=87, type=Add];
-"88 /layer2/layer2.2/conv2/Conv/WithoutBiases" [id=88, type=Convolution];
-"89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [id=89, type=FakeQuantize];
-"90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [id=90, type=FakeQuantize];
-"91 /layer2/layer2.3/relu/Relu" [id=91, type=Relu];
-"92 /layer2/layer2.2/conv2/Conv" [id=92, type=Add];
-"93 /layer2/layer2.1/conv3/Conv/WithoutBiases" [id=93, type=Convolution];
-"94 /layer3/layer3.0/conv1/Conv/WithoutBiases" [id=94, type=Convolution];
-"95 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [id=95, type=Convolution];
-"96 /layer2/layer2.3/relu/Relu/fq_output_0" [id=96, type=FakeQuantize];
-"97 /layer2/layer2.2/relu_1/Relu" [id=97, type=Relu];
-"98 /layer2/layer2.1/conv3/Conv" [id=98, type=Add];
-"99 /layer3/layer3.0/conv1/Conv" [id=99, type=Add];
-"100 /layer3/layer3.0/downsample/downsample.0/Conv" [id=100, type=Add];
-"101 /layer2/layer2.3/conv2/Conv/WithoutBiases" [id=101, type=Convolution];
-"102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [id=102, type=FakeQuantize];
-"103 /layer3/layer3.0/relu/Relu" [id=103, type=Relu];
-"104 /layer3/layer3.0/Add" [id=104, type=Add];
-"105 /layer2/layer2.3/conv2/Conv" [id=105, type=Add];
-"106 /layer2/layer2.2/conv3/Conv/WithoutBiases" [id=106, type=Convolution];
-"107 /layer3/layer3.0/relu/Relu/fq_output_0" [id=107, type=FakeQuantize];
-"108 /layer3/layer3.0/relu_2/Relu" [id=108, type=Relu];
-"109 /layer2/layer2.3/relu_1/Relu" [id=109, type=Relu];
-"110 /layer2/layer2.2/conv3/Conv" [id=110, type=Add];
-"111 /layer3/layer3.0/conv2/Conv/WithoutBiases" [id=111, type=Convolution];
-"112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [id=112, type=FakeQuantize];
-"113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [id=113, type=FakeQuantize];
-"114 /layer3/layer3.0/conv2/Conv" [id=114, type=Add];
-"115 /layer3/layer3.1/Add" [id=115, type=Add];
-"116 /layer3/layer3.1/conv1/Conv/WithoutBiases" [id=116, type=Convolution];
-"117 /layer2/layer2.3/conv3/Conv/WithoutBiases" [id=117, type=Convolution];
-"118 /layer3/layer3.0/relu_1/Relu" [id=118, type=Relu];
-"119 /layer3/layer3.1/relu_2/Relu" [id=119, type=Relu];
-"120 /layer3/layer3.1/conv1/Conv" [id=120, type=Add];
-"121 /layer2/layer2.3/conv3/Conv" [id=121, type=Add];
-"122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [id=122, type=FakeQuantize];
-"123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [id=123, type=FakeQuantize];
-"124 /layer3/layer3.1/relu/Relu" [id=124, type=Relu];
-"125 /layer3/layer3.0/conv3/Conv/WithoutBiases" [id=125, type=Convolution];
-"126 /layer3/layer3.2/Add" [id=126, type=Add];
-"127 /layer3/layer3.2/conv1/Conv/WithoutBiases" [id=127, type=Convolution];
-"128 /layer3/layer3.1/relu/Relu/fq_output_0" [id=128, type=FakeQuantize];
-"129 /layer3/layer3.0/conv3/Conv" [id=129, type=Add];
-"130 /layer3/layer3.2/relu_2/Relu" [id=130, type=Relu];
-"131 /layer3/layer3.2/conv1/Conv" [id=131, type=Add];
-"132 /layer3/layer3.1/conv2/Conv/WithoutBiases" [id=132, type=Convolution];
-"133 /layer3/layer3.0/conv3/Conv/fq_output_0" [id=133, type=FakeQuantize];
-"134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [id=134, type=FakeQuantize];
-"135 /layer3/layer3.2/relu/Relu" [id=135, type=Relu];
-"136 /layer3/layer3.1/conv2/Conv" [id=136, type=Add];
-"137 /layer3/layer3.3/Add" [id=137, type=Add];
-"138 /layer3/layer3.3/conv1/Conv/WithoutBiases" [id=138, type=Convolution];
-"139 /layer3/layer3.2/relu/Relu/fq_output_0" [id=139, type=FakeQuantize];
-"140 /layer3/layer3.1/relu_1/Relu" [id=140, type=Relu];
-"141 /layer3/layer3.3/relu_2/Relu" [id=141, type=Relu];
-"142 /layer3/layer3.3/conv1/Conv" [id=142, type=Add];
-"143 /layer3/layer3.2/conv2/Conv/WithoutBiases" [id=143, type=Convolution];
-"144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [id=144, type=FakeQuantize];
-"145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [id=145, type=FakeQuantize];
-"146 /layer3/layer3.3/relu/Relu" [id=146, type=Relu];
-"147 /layer3/layer3.2/conv2/Conv" [id=147, type=Add];
-"148 /layer3/layer3.1/conv3/Conv/WithoutBiases" [id=148, type=Convolution];
-"149 /layer3/layer3.4/Add" [id=149, type=Add];
-"150 /layer3/layer3.4/conv1/Conv/WithoutBiases" [id=150, type=Convolution];
-"151 /layer3/layer3.3/relu/Relu/fq_output_0" [id=151, type=FakeQuantize];
-"152 /layer3/layer3.2/relu_1/Relu" [id=152, type=Relu];
-"153 /layer3/layer3.1/conv3/Conv" [id=153, type=Add];
-"154 /layer3/layer3.4/relu_2/Relu" [id=154, type=Relu];
-"155 /layer3/layer3.4/conv1/Conv" [id=155, type=Add];
-"156 /layer3/layer3.3/conv2/Conv/WithoutBiases" [id=156, type=Convolution];
-"157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [id=157, type=FakeQuantize];
-"158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [id=158, type=FakeQuantize];
-"159 /layer3/layer3.4/relu/Relu" [id=159, type=Relu];
-"160 /layer3/layer3.3/conv2/Conv" [id=160, type=Add];
-"161 /layer3/layer3.2/conv3/Conv/WithoutBiases" [id=161, type=Convolution];
-"162 /layer3/layer3.5/Add" [id=162, type=Add];
-"163 /layer3/layer3.5/conv1/Conv/WithoutBiases" [id=163, type=Convolution];
-"164 /layer3/layer3.4/relu/Relu/fq_output_0" [id=164, type=FakeQuantize];
-"165 /layer3/layer3.3/relu_1/Relu" [id=165, type=Relu];
-"166 /layer3/layer3.2/conv3/Conv" [id=166, type=Add];
-"167 /layer3/layer3.5/relu_2/Relu" [id=167, type=Relu];
-"168 /layer3/layer3.5/conv1/Conv" [id=168, type=Add];
-"169 /layer3/layer3.4/conv2/Conv/WithoutBiases" [id=169, type=Convolution];
-"170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [id=170, type=FakeQuantize];
-"171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [id=171, type=FakeQuantize];
-"172 /layer3/layer3.5/relu/Relu" [id=172, type=Relu];
-"173 /layer3/layer3.4/conv2/Conv" [id=173, type=Add];
-"174 /layer3/layer3.3/conv3/Conv/WithoutBiases" [id=174, type=Convolution];
-"175 /layer4/layer4.0/conv1/Conv/WithoutBiases" [id=175, type=Convolution];
-"176 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [id=176, type=Convolution];
-"177 /layer3/layer3.5/relu/Relu/fq_output_0" [id=177, type=FakeQuantize];
-"178 /layer3/layer3.4/relu_1/Relu" [id=178, type=Relu];
-"179 /layer3/layer3.3/conv3/Conv" [id=179, type=Add];
-"180 /layer4/layer4.0/conv1/Conv" [id=180, type=Add];
-"181 /layer4/layer4.0/downsample/downsample.0/Conv" [id=181, type=Add];
-"182 /layer3/layer3.5/conv2/Conv/WithoutBiases" [id=182, type=Convolution];
-"183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [id=183, type=FakeQuantize];
-"184 /layer4/layer4.0/relu/Relu" [id=184, type=Relu];
-"185 /layer4/layer4.0/Add" [id=185, type=Add];
-"186 /layer3/layer3.5/conv2/Conv" [id=186, type=Add];
-"187 /layer3/layer3.4/conv3/Conv/WithoutBiases" [id=187, type=Convolution];
-"188 /layer4/layer4.0/relu/Relu/fq_output_0" [id=188, type=FakeQuantize];
-"189 /layer4/layer4.0/relu_2/Relu" [id=189, type=Relu];
-"190 /layer3/layer3.5/relu_1/Relu" [id=190, type=Relu];
-"191 /layer3/layer3.4/conv3/Conv" [id=191, type=Add];
-"192 /layer4/layer4.0/conv2/Conv/WithoutBiases" [id=192, type=Convolution];
-"193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [id=193, type=FakeQuantize];
-"194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [id=194, type=FakeQuantize];
-"195 /layer4/layer4.0/conv2/Conv" [id=195, type=Add];
-"196 /layer4/layer4.1/Add" [id=196, type=Add];
-"197 /layer4/layer4.1/conv1/Conv/WithoutBiases" [id=197, type=Convolution];
-"198 /layer3/layer3.5/conv3/Conv/WithoutBiases" [id=198, type=Convolution];
-"199 /layer4/layer4.0/relu_1/Relu" [id=199, type=Relu];
-"200 /layer4/layer4.1/relu_2/Relu" [id=200, type=Relu];
-"201 /layer4/layer4.1/conv1/Conv" [id=201, type=Add];
-"202 /layer3/layer3.5/conv3/Conv" [id=202, type=Add];
-"203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [id=203, type=FakeQuantize];
-"204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [id=204, type=FakeQuantize];
-"205 /layer4/layer4.1/relu/Relu" [id=205, type=Relu];
-"206 /layer4/layer4.0/conv3/Conv/WithoutBiases" [id=206, type=Convolution];
-"207 /layer4/layer4.2/Add" [id=207, type=Add];
-"208 /layer4/layer4.2/conv1/Conv/WithoutBiases" [id=208, type=Convolution];
-"209 /layer4/layer4.1/relu/Relu/fq_output_0" [id=209, type=FakeQuantize];
-"210 /layer4/layer4.0/conv3/Conv" [id=210, type=Add];
-"211 /layer4/layer4.2/relu_2/Relu" [id=211, type=Relu];
-"212 /layer4/layer4.2/conv1/Conv" [id=212, type=Add];
-"213 /layer4/layer4.1/conv2/Conv/WithoutBiases" [id=213, type=Convolution];
-"214 /layer4/layer4.0/conv3/Conv/fq_output_0" [id=214, type=FakeQuantize];
-"215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [id=215, type=FakeQuantize];
-"216 /layer4/layer4.2/relu/Relu" [id=216, type=Relu];
-"217 /layer4/layer4.1/conv2/Conv" [id=217, type=Add];
-"218 /avgpool/GlobalAveragePool" [id=218, type=ReduceMean];
-"219 /layer4/layer4.2/relu/Relu/fq_output_0" [id=219, type=FakeQuantize];
-"220 /layer4/layer4.1/relu_1/Relu" [id=220, type=Relu];
-"221 /avgpool/GlobalAveragePool/fq_output_0" [id=221, type=FakeQuantize];
-"222 /layer4/layer4.2/conv2/Conv/WithoutBiases" [id=222, type=Convolution];
-"223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [id=223, type=FakeQuantize];
-"224 /Flatten" [id=224, type=Reshape];
-"225 /layer4/layer4.2/conv2/Conv" [id=225, type=Add];
-"226 /layer4/layer4.1/conv3/Conv/WithoutBiases" [id=226, type=Convolution];
-"227 /fc/Gemm/WithoutBiases" [id=227, type=MatMul];
-"228 /layer4/layer4.2/relu_1/Relu" [id=228, type=Relu];
-"229 /layer4/layer4.1/conv3/Conv" [id=229, type=Add];
-"230 prob" [id=230, type=Add];
-"231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [id=231, type=FakeQuantize];
-"232 prob/sink_port_0" [id=232, type=Result];
-"233 /layer4/layer4.2/conv3/Conv/WithoutBiases" [id=233, type=Convolution];
-"234 /layer4/layer4.2/conv3/Conv" [id=234, type=Add];
-"235 Constant_2819" [id=235, type=Constant];
-"236 /fc/Gemm/WithoutBiases/fq_weights_1" [id=236, type=FakeQuantize];
-"237 Constant_62386" [id=237, type=Constant];
-"238 Constant_62385" [id=238, type=Constant];
-"239 Constant_62384" [id=239, type=Constant];
-"240 Constant_62383" [id=240, type=Constant];
-"241 fc.weight" [id=241, type=Constant];
-"242 Constant_981" [id=242, type=Constant];
-"243 Constant_62381" [id=243, type=Constant];
-"244 Constant_62380" [id=244, type=Constant];
-"245 Constant_62379" [id=245, type=Constant];
-"246 Constant_62378" [id=246, type=Constant];
-"247 Range_977" [id=247, type=Constant];
-"248 Constant_62376" [id=248, type=Constant];
-"249 Constant_62375" [id=249, type=Constant];
-"250 Constant_62374" [id=250, type=Constant];
-"251 Constant_62373" [id=251, type=Constant];
-"252 Constant_62341" [id=252, type=Constant];
-"253 Constant_62340" [id=253, type=Constant];
-"254 Constant_62339" [id=254, type=Constant];
-"255 Constant_62338" [id=255, type=Constant];
-"256 Constant_62306" [id=256, type=Constant];
-"257 Constant_62305" [id=257, type=Constant];
-"258 Constant_62304" [id=258, type=Constant];
-"259 Constant_62303" [id=259, type=Constant];
-"260 Reshape_867" [id=260, type=Constant];
-"261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=261, type=FakeQuantize];
-"262 Constant_62266" [id=262, type=Constant];
-"263 Constant_62265" [id=263, type=Constant];
-"264 Constant_62264" [id=264, type=Constant];
-"265 Constant_62263" [id=265, type=Constant];
-"266 onnx^^Conv_635" [id=266, label="266 onnx::Conv_635", type=Constant];
-"267 Constant_62261" [id=267, type=Constant];
-"268 Constant_62260" [id=268, type=Constant];
-"269 Constant_62259" [id=269, type=Constant];
-"270 Constant_62258" [id=270, type=Constant];
-"271 Constant_62226" [id=271, type=Constant];
-"272 Constant_62225" [id=272, type=Constant];
-"273 Constant_62224" [id=273, type=Constant];
-"274 Constant_62223" [id=274, type=Constant];
-"275 Constant_62191" [id=275, type=Constant];
-"276 Constant_62190" [id=276, type=Constant];
-"277 Constant_62189" [id=277, type=Constant];
-"278 Constant_62188" [id=278, type=Constant];
-"279 Constant_62156" [id=279, type=Constant];
-"280 Constant_62155" [id=280, type=Constant];
-"281 Constant_62154" [id=281, type=Constant];
-"282 Constant_62153" [id=282, type=Constant];
-"283 Constant_62121" [id=283, type=Constant];
-"284 Constant_62120" [id=284, type=Constant];
-"285 Constant_62119" [id=285, type=Constant];
-"286 Constant_62118" [id=286, type=Constant];
-"287 Constant_62086" [id=287, type=Constant];
-"288 Constant_62085" [id=288, type=Constant];
-"289 Constant_62084" [id=289, type=Constant];
-"290 Constant_62083" [id=290, type=Constant];
-"291 Reshape_558" [id=291, type=Constant];
-"292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=292, type=FakeQuantize];
-"293 Constant_62046" [id=293, type=Constant];
-"294 Constant_62045" [id=294, type=Constant];
-"295 Constant_62044" [id=295, type=Constant];
-"296 Constant_62043" [id=296, type=Constant];
-"297 onnx^^Conv_578" [id=297, label="297 onnx::Conv_578", type=Constant];
-"298 Constant_62041" [id=298, type=Constant];
-"299 Constant_62040" [id=299, type=Constant];
-"300 Constant_62039" [id=300, type=Constant];
-"301 Constant_62038" [id=301, type=Constant];
-"302 Constant_62006" [id=302, type=Constant];
-"303 Constant_62005" [id=303, type=Constant];
-"304 Constant_62004" [id=304, type=Constant];
-"305 Constant_62003" [id=305, type=Constant];
-"306 Constant_61971" [id=306, type=Constant];
-"307 Constant_61970" [id=307, type=Constant];
-"308 Constant_61969" [id=308, type=Constant];
-"309 Constant_61968" [id=309, type=Constant];
-"310 Constant_61936" [id=310, type=Constant];
-"311 Constant_61935" [id=311, type=Constant];
-"312 Constant_61934" [id=312, type=Constant];
-"313 Constant_61933" [id=313, type=Constant];
-"314 Reshape_347" [id=314, type=Constant];
-"315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=315, type=FakeQuantize];
-"316 Constant_61896" [id=316, type=Constant];
-"317 Constant_61895" [id=317, type=Constant];
-"318 Constant_61894" [id=318, type=Constant];
-"319 Constant_61893" [id=319, type=Constant];
-"320 onnx^^Conv_539" [id=320, label="320 onnx::Conv_539", type=Constant];
-"321 Constant_61891" [id=321, type=Constant];
-"322 Constant_61890" [id=322, type=Constant];
-"323 Constant_61889" [id=323, type=Constant];
-"324 Constant_61888" [id=324, type=Constant];
-"325 Constant_61856" [id=325, type=Constant];
-"326 Constant_61855" [id=326, type=Constant];
-"327 Constant_61854" [id=327, type=Constant];
-"328 Constant_61853" [id=328, type=Constant];
-"329 Constant_61821" [id=329, type=Constant];
-"330 Constant_61820" [id=330, type=Constant];
-"331 Constant_61819" [id=331, type=Constant];
-"332 Constant_61818" [id=332, type=Constant];
-"333 Reshape_185" [id=333, type=Constant];
-"334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [id=334, type=FakeQuantize];
-"335 Constant_61781" [id=335, type=Constant];
-"336 Constant_61780" [id=336, type=Constant];
-"337 Constant_61779" [id=337, type=Constant];
-"338 Constant_61778" [id=338, type=Constant];
-"339 onnx^^Conv_509" [id=339, label="339 onnx::Conv_509", type=Constant];
-"340 Constant_61776" [id=340, type=Constant];
-"341 Constant_61775" [id=341, type=Constant];
-"342 Constant_61774" [id=342, type=Constant];
-"343 Constant_61773" [id=343, type=Constant];
-"344 Reshape_121" [id=344, type=Constant];
-"345 /conv1/Conv/WithoutBiases/fq_weights_1" [id=345, type=FakeQuantize];
-"346 Constant_61771" [id=346, type=Constant];
-"347 Constant_61770" [id=347, type=Constant];
-"348 Constant_61769" [id=348, type=Constant];
-"349 Constant_61768" [id=349, type=Constant];
-"350 Gather_2818" [id=350, type=Constant];
-"351 Constant_61766" [id=351, type=Constant];
-"352 Constant_61765" [id=352, type=Constant];
-"353 Constant_61764" [id=353, type=Constant];
-"354 Constant_61763" [id=354, type=Constant];
-"355 Gather_2815" [id=355, type=Constant];
-"356 Gather_2812" [id=356, type=Constant];
-"357 Constant_61816" [id=357, type=Constant];
-"358 Constant_61815" [id=358, type=Constant];
-"359 Constant_61814" [id=359, type=Constant];
-"360 Constant_61813" [id=360, type=Constant];
-"361 Reshape_170" [id=361, type=Constant];
-"362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [id=362, type=FakeQuantize];
-"363 Constant_61811" [id=363, type=Constant];
-"364 Constant_61810" [id=364, type=Constant];
-"365 Constant_61809" [id=365, type=Constant];
-"366 Constant_61808" [id=366, type=Constant];
-"367 onnx^^Conv_506" [id=367, label="367 onnx::Conv_506", type=Constant];
-"368 Constant_61806" [id=368, type=Constant];
-"369 Constant_61805" [id=369, type=Constant];
-"370 Constant_61804" [id=370, type=Constant];
-"371 Constant_61803" [id=371, type=Constant];
-"372 Reshape_154" [id=372, type=Constant];
-"373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=373, type=FakeQuantize];
-"374 Constant_61801" [id=374, type=Constant];
-"375 Constant_61800" [id=375, type=Constant];
-"376 Constant_61799" [id=376, type=Constant];
-"377 Constant_61798" [id=377, type=Constant];
-"378 onnx^^Conv_503" [id=378, label="378 onnx::Conv_503", type=Constant];
-"379 Constant_61796" [id=379, type=Constant];
-"380 Constant_61795" [id=380, type=Constant];
-"381 Constant_61794" [id=381, type=Constant];
-"382 Constant_61793" [id=382, type=Constant];
-"383 Reshape_138" [id=383, type=Constant];
-"384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=384, type=FakeQuantize];
-"385 Constant_61791" [id=385, type=Constant];
-"386 Constant_61790" [id=386, type=Constant];
-"387 Constant_61789" [id=387, type=Constant];
-"388 Constant_61788" [id=388, type=Constant];
-"389 onnx^^Conv_500" [id=389, label="389 onnx::Conv_500", type=Constant];
-"390 Reshape_234" [id=390, type=Constant];
-"391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [id=391, type=FakeQuantize];
-"392 Constant_61846" [id=392, type=Constant];
-"393 Constant_61845" [id=393, type=Constant];
-"394 Constant_61844" [id=394, type=Constant];
-"395 Constant_61843" [id=395, type=Constant];
-"396 onnx^^Conv_518" [id=396, label="396 onnx::Conv_518", type=Constant];
-"397 Constant_61841" [id=397, type=Constant];
-"398 Constant_61840" [id=398, type=Constant];
-"399 Constant_61839" [id=399, type=Constant];
-"400 Constant_61838" [id=400, type=Constant];
-"401 Reshape_218" [id=401, type=Constant];
-"402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=402, type=FakeQuantize];
-"403 Constant_61836" [id=403, type=Constant];
-"404 Constant_61835" [id=404, type=Constant];
-"405 Constant_61834" [id=405, type=Constant];
-"406 Constant_61833" [id=406, type=Constant];
-"407 onnx^^Conv_515" [id=407, label="407 onnx::Conv_515", type=Constant];
-"408 Constant_61831" [id=408, type=Constant];
-"409 Constant_61830" [id=409, type=Constant];
-"410 Constant_61829" [id=410, type=Constant];
-"411 Constant_61828" [id=411, type=Constant];
-"412 Reshape_202" [id=412, type=Constant];
-"413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=413, type=FakeQuantize];
-"414 Constant_61826" [id=414, type=Constant];
-"415 Constant_61825" [id=415, type=Constant];
-"416 Constant_61824" [id=416, type=Constant];
-"417 Constant_61823" [id=417, type=Constant];
-"418 onnx^^Conv_512" [id=418, label="418 onnx::Conv_512", type=Constant];
-"419 Reshape_283" [id=419, type=Constant];
-"420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [id=420, type=FakeQuantize];
-"421 Constant_61881" [id=421, type=Constant];
-"422 Constant_61880" [id=422, type=Constant];
-"423 Constant_61879" [id=423, type=Constant];
-"424 Constant_61878" [id=424, type=Constant];
-"425 onnx^^Conv_527" [id=425, label="425 onnx::Conv_527", type=Constant];
-"426 Constant_61876" [id=426, type=Constant];
-"427 Constant_61875" [id=427, type=Constant];
-"428 Constant_61874" [id=428, type=Constant];
-"429 Constant_61873" [id=429, type=Constant];
-"430 Reshape_267" [id=430, type=Constant];
-"431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [id=431, type=FakeQuantize];
-"432 Constant_61871" [id=432, type=Constant];
-"433 Constant_61870" [id=433, type=Constant];
-"434 Constant_61869" [id=434, type=Constant];
-"435 Constant_61868" [id=435, type=Constant];
-"436 onnx^^Conv_524" [id=436, label="436 onnx::Conv_524", type=Constant];
-"437 Constant_61866" [id=437, type=Constant];
-"438 Constant_61865" [id=438, type=Constant];
-"439 Constant_61864" [id=439, type=Constant];
-"440 Constant_61863" [id=440, type=Constant];
-"441 Reshape_251" [id=441, type=Constant];
-"442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [id=442, type=FakeQuantize];
-"443 Constant_61861" [id=443, type=Constant];
-"444 Constant_61860" [id=444, type=Constant];
-"445 Constant_61859" [id=445, type=Constant];
-"446 Constant_61858" [id=446, type=Constant];
-"447 onnx^^Conv_521" [id=447, label="447 onnx::Conv_521", type=Constant];
-"448 Constant_61931" [id=448, type=Constant];
-"449 Constant_61930" [id=449, type=Constant];
-"450 Constant_61929" [id=450, type=Constant];
-"451 Constant_61928" [id=451, type=Constant];
-"452 Reshape_332" [id=452, type=Constant];
-"453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [id=453, type=FakeQuantize];
-"454 Constant_61926" [id=454, type=Constant];
-"455 Constant_61925" [id=455, type=Constant];
-"456 Constant_61924" [id=456, type=Constant];
-"457 Constant_61923" [id=457, type=Constant];
-"458 onnx^^Conv_536" [id=458, label="458 onnx::Conv_536", type=Constant];
-"459 Constant_61921" [id=459, type=Constant];
-"460 Constant_61920" [id=460, type=Constant];
-"461 Constant_61919" [id=461, type=Constant];
-"462 Constant_61918" [id=462, type=Constant];
-"463 Reshape_316" [id=463, type=Constant];
-"464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=464, type=FakeQuantize];
-"465 Constant_61916" [id=465, type=Constant];
-"466 Constant_61915" [id=466, type=Constant];
-"467 Constant_61914" [id=467, type=Constant];
-"468 Constant_61913" [id=468, type=Constant];
-"469 onnx^^Conv_533" [id=469, label="469 onnx::Conv_533", type=Constant];
-"470 Constant_61911" [id=470, type=Constant];
-"471 Constant_61910" [id=471, type=Constant];
-"472 Constant_61909" [id=472, type=Constant];
-"473 Constant_61908" [id=473, type=Constant];
-"474 Reshape_300" [id=474, type=Constant];
-"475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=475, type=FakeQuantize];
-"476 Constant_61906" [id=476, type=Constant];
-"477 Constant_61905" [id=477, type=Constant];
-"478 Constant_61904" [id=478, type=Constant];
-"479 Constant_61903" [id=479, type=Constant];
-"480 onnx^^Conv_530" [id=480, label="480 onnx::Conv_530", type=Constant];
-"481 Reshape_396" [id=481, type=Constant];
-"482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [id=482, type=FakeQuantize];
-"483 Constant_61961" [id=483, type=Constant];
-"484 Constant_61960" [id=484, type=Constant];
-"485 Constant_61959" [id=485, type=Constant];
-"486 Constant_61958" [id=486, type=Constant];
-"487 onnx^^Conv_548" [id=487, label="487 onnx::Conv_548", type=Constant];
-"488 Constant_61956" [id=488, type=Constant];
-"489 Constant_61955" [id=489, type=Constant];
-"490 Constant_61954" [id=490, type=Constant];
-"491 Constant_61953" [id=491, type=Constant];
-"492 Reshape_380" [id=492, type=Constant];
-"493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=493, type=FakeQuantize];
-"494 Constant_61951" [id=494, type=Constant];
-"495 Constant_61950" [id=495, type=Constant];
-"496 Constant_61949" [id=496, type=Constant];
-"497 Constant_61948" [id=497, type=Constant];
-"498 onnx^^Conv_545" [id=498, label="498 onnx::Conv_545", type=Constant];
-"499 Constant_61946" [id=499, type=Constant];
-"500 Constant_61945" [id=500, type=Constant];
-"501 Constant_61944" [id=501, type=Constant];
-"502 Constant_61943" [id=502, type=Constant];
-"503 Reshape_364" [id=503, type=Constant];
-"504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=504, type=FakeQuantize];
-"505 Constant_61941" [id=505, type=Constant];
-"506 Constant_61940" [id=506, type=Constant];
-"507 Constant_61939" [id=507, type=Constant];
-"508 Constant_61938" [id=508, type=Constant];
-"509 onnx^^Conv_542" [id=509, label="509 onnx::Conv_542", type=Constant];
-"510 Reshape_445" [id=510, type=Constant];
-"511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [id=511, type=FakeQuantize];
-"512 Constant_61996" [id=512, type=Constant];
-"513 Constant_61995" [id=513, type=Constant];
-"514 Constant_61994" [id=514, type=Constant];
-"515 Constant_61993" [id=515, type=Constant];
-"516 onnx^^Conv_557" [id=516, label="516 onnx::Conv_557", type=Constant];
-"517 Constant_61991" [id=517, type=Constant];
-"518 Constant_61990" [id=518, type=Constant];
-"519 Constant_61989" [id=519, type=Constant];
-"520 Constant_61988" [id=520, type=Constant];
-"521 Reshape_429" [id=521, type=Constant];
-"522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [id=522, type=FakeQuantize];
-"523 Constant_61986" [id=523, type=Constant];
-"524 Constant_61985" [id=524, type=Constant];
-"525 Constant_61984" [id=525, type=Constant];
-"526 Constant_61983" [id=526, type=Constant];
-"527 onnx^^Conv_554" [id=527, label="527 onnx::Conv_554", type=Constant];
-"528 Constant_61981" [id=528, type=Constant];
-"529 Constant_61980" [id=529, type=Constant];
-"530 Constant_61979" [id=530, type=Constant];
-"531 Constant_61978" [id=531, type=Constant];
-"532 Reshape_413" [id=532, type=Constant];
-"533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [id=533, type=FakeQuantize];
-"534 Constant_61976" [id=534, type=Constant];
-"535 Constant_61975" [id=535, type=Constant];
-"536 Constant_61974" [id=536, type=Constant];
-"537 Constant_61973" [id=537, type=Constant];
-"538 onnx^^Conv_551" [id=538, label="538 onnx::Conv_551", type=Constant];
-"539 Reshape_494" [id=539, type=Constant];
-"540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [id=540, type=FakeQuantize];
-"541 Constant_62031" [id=541, type=Constant];
-"542 Constant_62030" [id=542, type=Constant];
-"543 Constant_62029" [id=543, type=Constant];
-"544 Constant_62028" [id=544, type=Constant];
-"545 onnx^^Conv_566" [id=545, label="545 onnx::Conv_566", type=Constant];
-"546 Constant_62026" [id=546, type=Constant];
-"547 Constant_62025" [id=547, type=Constant];
-"548 Constant_62024" [id=548, type=Constant];
-"549 Constant_62023" [id=549, type=Constant];
-"550 Reshape_478" [id=550, type=Constant];
-"551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [id=551, type=FakeQuantize];
-"552 Constant_62021" [id=552, type=Constant];
-"553 Constant_62020" [id=553, type=Constant];
-"554 Constant_62019" [id=554, type=Constant];
-"555 Constant_62018" [id=555, type=Constant];
-"556 onnx^^Conv_563" [id=556, label="556 onnx::Conv_563", type=Constant];
-"557 Constant_62016" [id=557, type=Constant];
-"558 Constant_62015" [id=558, type=Constant];
-"559 Constant_62014" [id=559, type=Constant];
-"560 Constant_62013" [id=560, type=Constant];
-"561 Reshape_462" [id=561, type=Constant];
-"562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [id=562, type=FakeQuantize];
-"563 Constant_62011" [id=563, type=Constant];
-"564 Constant_62010" [id=564, type=Constant];
-"565 Constant_62009" [id=565, type=Constant];
-"566 Constant_62008" [id=566, type=Constant];
-"567 onnx^^Conv_560" [id=567, label="567 onnx::Conv_560", type=Constant];
-"568 Constant_62081" [id=568, type=Constant];
-"569 Constant_62080" [id=569, type=Constant];
-"570 Constant_62079" [id=570, type=Constant];
-"571 Constant_62078" [id=571, type=Constant];
-"572 Reshape_543" [id=572, type=Constant];
-"573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [id=573, type=FakeQuantize];
-"574 Constant_62076" [id=574, type=Constant];
-"575 Constant_62075" [id=575, type=Constant];
-"576 Constant_62074" [id=576, type=Constant];
-"577 Constant_62073" [id=577, type=Constant];
-"578 onnx^^Conv_575" [id=578, label="578 onnx::Conv_575", type=Constant];
-"579 Constant_62071" [id=579, type=Constant];
-"580 Constant_62070" [id=580, type=Constant];
-"581 Constant_62069" [id=581, type=Constant];
-"582 Constant_62068" [id=582, type=Constant];
-"583 Reshape_527" [id=583, type=Constant];
-"584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=584, type=FakeQuantize];
-"585 Constant_62066" [id=585, type=Constant];
-"586 Constant_62065" [id=586, type=Constant];
-"587 Constant_62064" [id=587, type=Constant];
-"588 Constant_62063" [id=588, type=Constant];
-"589 onnx^^Conv_572" [id=589, label="589 onnx::Conv_572", type=Constant];
-"590 Constant_62061" [id=590, type=Constant];
-"591 Constant_62060" [id=591, type=Constant];
-"592 Constant_62059" [id=592, type=Constant];
-"593 Constant_62058" [id=593, type=Constant];
-"594 Reshape_511" [id=594, type=Constant];
-"595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=595, type=FakeQuantize];
-"596 Constant_62056" [id=596, type=Constant];
-"597 Constant_62055" [id=597, type=Constant];
-"598 Constant_62054" [id=598, type=Constant];
-"599 Constant_62053" [id=599, type=Constant];
-"600 onnx^^Conv_569" [id=600, label="600 onnx::Conv_569", type=Constant];
-"601 Reshape_607" [id=601, type=Constant];
-"602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [id=602, type=FakeQuantize];
-"603 Constant_62111" [id=603, type=Constant];
-"604 Constant_62110" [id=604, type=Constant];
-"605 Constant_62109" [id=605, type=Constant];
-"606 Constant_62108" [id=606, type=Constant];
-"607 onnx^^Conv_587" [id=607, label="607 onnx::Conv_587", type=Constant];
-"608 Constant_62106" [id=608, type=Constant];
-"609 Constant_62105" [id=609, type=Constant];
-"610 Constant_62104" [id=610, type=Constant];
-"611 Constant_62103" [id=611, type=Constant];
-"612 Reshape_591" [id=612, type=Constant];
-"613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=613, type=FakeQuantize];
-"614 Constant_62101" [id=614, type=Constant];
-"615 Constant_62100" [id=615, type=Constant];
-"616 Constant_62099" [id=616, type=Constant];
-"617 Constant_62098" [id=617, type=Constant];
-"618 onnx^^Conv_584" [id=618, label="618 onnx::Conv_584", type=Constant];
-"619 Constant_62096" [id=619, type=Constant];
-"620 Constant_62095" [id=620, type=Constant];
-"621 Constant_62094" [id=621, type=Constant];
-"622 Constant_62093" [id=622, type=Constant];
-"623 Reshape_575" [id=623, type=Constant];
-"624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=624, type=FakeQuantize];
-"625 Constant_62091" [id=625, type=Constant];
-"626 Constant_62090" [id=626, type=Constant];
-"627 Constant_62089" [id=627, type=Constant];
-"628 Constant_62088" [id=628, type=Constant];
-"629 onnx^^Conv_581" [id=629, label="629 onnx::Conv_581", type=Constant];
-"630 Reshape_656" [id=630, type=Constant];
-"631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [id=631, type=FakeQuantize];
-"632 Constant_62146" [id=632, type=Constant];
-"633 Constant_62145" [id=633, type=Constant];
-"634 Constant_62144" [id=634, type=Constant];
-"635 Constant_62143" [id=635, type=Constant];
-"636 onnx^^Conv_596" [id=636, label="636 onnx::Conv_596", type=Constant];
-"637 Constant_62141" [id=637, type=Constant];
-"638 Constant_62140" [id=638, type=Constant];
-"639 Constant_62139" [id=639, type=Constant];
-"640 Constant_62138" [id=640, type=Constant];
-"641 Reshape_640" [id=641, type=Constant];
-"642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [id=642, type=FakeQuantize];
-"643 Constant_62136" [id=643, type=Constant];
-"644 Constant_62135" [id=644, type=Constant];
-"645 Constant_62134" [id=645, type=Constant];
-"646 Constant_62133" [id=646, type=Constant];
-"647 onnx^^Conv_593" [id=647, label="647 onnx::Conv_593", type=Constant];
-"648 Constant_62131" [id=648, type=Constant];
-"649 Constant_62130" [id=649, type=Constant];
-"650 Constant_62129" [id=650, type=Constant];
-"651 Constant_62128" [id=651, type=Constant];
-"652 Reshape_624" [id=652, type=Constant];
-"653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [id=653, type=FakeQuantize];
-"654 Constant_62126" [id=654, type=Constant];
-"655 Constant_62125" [id=655, type=Constant];
-"656 Constant_62124" [id=656, type=Constant];
-"657 Constant_62123" [id=657, type=Constant];
-"658 onnx^^Conv_590" [id=658, label="658 onnx::Conv_590", type=Constant];
-"659 Reshape_705" [id=659, type=Constant];
-"660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [id=660, type=FakeQuantize];
-"661 Constant_62181" [id=661, type=Constant];
-"662 Constant_62180" [id=662, type=Constant];
-"663 Constant_62179" [id=663, type=Constant];
-"664 Constant_62178" [id=664, type=Constant];
-"665 onnx^^Conv_605" [id=665, label="665 onnx::Conv_605", type=Constant];
-"666 Constant_62176" [id=666, type=Constant];
-"667 Constant_62175" [id=667, type=Constant];
-"668 Constant_62174" [id=668, type=Constant];
-"669 Constant_62173" [id=669, type=Constant];
-"670 Reshape_689" [id=670, type=Constant];
-"671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [id=671, type=FakeQuantize];
-"672 Constant_62171" [id=672, type=Constant];
-"673 Constant_62170" [id=673, type=Constant];
-"674 Constant_62169" [id=674, type=Constant];
-"675 Constant_62168" [id=675, type=Constant];
-"676 onnx^^Conv_602" [id=676, label="676 onnx::Conv_602", type=Constant];
-"677 Constant_62166" [id=677, type=Constant];
-"678 Constant_62165" [id=678, type=Constant];
-"679 Constant_62164" [id=679, type=Constant];
-"680 Constant_62163" [id=680, type=Constant];
-"681 Reshape_673" [id=681, type=Constant];
-"682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [id=682, type=FakeQuantize];
-"683 Constant_62161" [id=683, type=Constant];
-"684 Constant_62160" [id=684, type=Constant];
-"685 Constant_62159" [id=685, type=Constant];
-"686 Constant_62158" [id=686, type=Constant];
-"687 onnx^^Conv_599" [id=687, label="687 onnx::Conv_599", type=Constant];
-"688 Reshape_754" [id=688, type=Constant];
-"689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [id=689, type=FakeQuantize];
-"690 Constant_62216" [id=690, type=Constant];
-"691 Constant_62215" [id=691, type=Constant];
-"692 Constant_62214" [id=692, type=Constant];
-"693 Constant_62213" [id=693, type=Constant];
-"694 onnx^^Conv_614" [id=694, label="694 onnx::Conv_614", type=Constant];
-"695 Constant_62211" [id=695, type=Constant];
-"696 Constant_62210" [id=696, type=Constant];
-"697 Constant_62209" [id=697, type=Constant];
-"698 Constant_62208" [id=698, type=Constant];
-"699 Reshape_738" [id=699, type=Constant];
-"700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [id=700, type=FakeQuantize];
-"701 Constant_62206" [id=701, type=Constant];
-"702 Constant_62205" [id=702, type=Constant];
-"703 Constant_62204" [id=703, type=Constant];
-"704 Constant_62203" [id=704, type=Constant];
-"705 onnx^^Conv_611" [id=705, label="705 onnx::Conv_611", type=Constant];
-"706 Constant_62201" [id=706, type=Constant];
-"707 Constant_62200" [id=707, type=Constant];
-"708 Constant_62199" [id=708, type=Constant];
-"709 Constant_62198" [id=709, type=Constant];
-"710 Reshape_722" [id=710, type=Constant];
-"711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [id=711, type=FakeQuantize];
-"712 Constant_62196" [id=712, type=Constant];
-"713 Constant_62195" [id=713, type=Constant];
-"714 Constant_62194" [id=714, type=Constant];
-"715 Constant_62193" [id=715, type=Constant];
-"716 onnx^^Conv_608" [id=716, label="716 onnx::Conv_608", type=Constant];
-"717 Reshape_803" [id=717, type=Constant];
-"718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [id=718, type=FakeQuantize];
-"719 Constant_62251" [id=719, type=Constant];
-"720 Constant_62250" [id=720, type=Constant];
-"721 Constant_62249" [id=721, type=Constant];
-"722 Constant_62248" [id=722, type=Constant];
-"723 onnx^^Conv_623" [id=723, label="723 onnx::Conv_623", type=Constant];
-"724 Constant_62246" [id=724, type=Constant];
-"725 Constant_62245" [id=725, type=Constant];
-"726 Constant_62244" [id=726, type=Constant];
-"727 Constant_62243" [id=727, type=Constant];
-"728 Reshape_787" [id=728, type=Constant];
-"729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [id=729, type=FakeQuantize];
-"730 Constant_62241" [id=730, type=Constant];
-"731 Constant_62240" [id=731, type=Constant];
-"732 Constant_62239" [id=732, type=Constant];
-"733 Constant_62238" [id=733, type=Constant];
-"734 onnx^^Conv_620" [id=734, label="734 onnx::Conv_620", type=Constant];
-"735 Constant_62236" [id=735, type=Constant];
-"736 Constant_62235" [id=736, type=Constant];
-"737 Constant_62234" [id=737, type=Constant];
-"738 Constant_62233" [id=738, type=Constant];
-"739 Reshape_771" [id=739, type=Constant];
-"740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [id=740, type=FakeQuantize];
-"741 Constant_62231" [id=741, type=Constant];
-"742 Constant_62230" [id=742, type=Constant];
-"743 Constant_62229" [id=743, type=Constant];
-"744 Constant_62228" [id=744, type=Constant];
-"745 onnx^^Conv_617" [id=745, label="745 onnx::Conv_617", type=Constant];
-"746 Constant_62301" [id=746, type=Constant];
-"747 Constant_62300" [id=747, type=Constant];
-"748 Constant_62299" [id=748, type=Constant];
-"749 Constant_62298" [id=749, type=Constant];
-"750 Reshape_852" [id=750, type=Constant];
-"751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [id=751, type=FakeQuantize];
-"752 Constant_62296" [id=752, type=Constant];
-"753 Constant_62295" [id=753, type=Constant];
-"754 Constant_62294" [id=754, type=Constant];
-"755 Constant_62293" [id=755, type=Constant];
-"756 onnx^^Conv_632" [id=756, label="756 onnx::Conv_632", type=Constant];
-"757 Constant_62291" [id=757, type=Constant];
-"758 Constant_62290" [id=758, type=Constant];
-"759 Constant_62289" [id=759, type=Constant];
-"760 Constant_62288" [id=760, type=Constant];
-"761 Reshape_836" [id=761, type=Constant];
-"762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [id=762, type=FakeQuantize];
-"763 Constant_62286" [id=763, type=Constant];
-"764 Constant_62285" [id=764, type=Constant];
-"765 Constant_62284" [id=765, type=Constant];
-"766 Constant_62283" [id=766, type=Constant];
-"767 onnx^^Conv_629" [id=767, label="767 onnx::Conv_629", type=Constant];
-"768 Constant_62281" [id=768, type=Constant];
-"769 Constant_62280" [id=769, type=Constant];
-"770 Constant_62279" [id=770, type=Constant];
-"771 Constant_62278" [id=771, type=Constant];
-"772 Reshape_820" [id=772, type=Constant];
-"773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [id=773, type=FakeQuantize];
-"774 Constant_62276" [id=774, type=Constant];
-"775 Constant_62275" [id=775, type=Constant];
-"776 Constant_62274" [id=776, type=Constant];
-"777 Constant_62273" [id=777, type=Constant];
-"778 onnx^^Conv_626" [id=778, label="778 onnx::Conv_626", type=Constant];
-"779 Reshape_916" [id=779, type=Constant];
-"780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [id=780, type=FakeQuantize];
-"781 Constant_62331" [id=781, type=Constant];
-"782 Constant_62330" [id=782, type=Constant];
-"783 Constant_62329" [id=783, type=Constant];
-"784 Constant_62328" [id=784, type=Constant];
-"785 onnx^^Conv_644" [id=785, label="785 onnx::Conv_644", type=Constant];
-"786 Constant_62326" [id=786, type=Constant];
-"787 Constant_62325" [id=787, type=Constant];
-"788 Constant_62324" [id=788, type=Constant];
-"789 Constant_62323" [id=789, type=Constant];
-"790 Reshape_900" [id=790, type=Constant];
-"791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [id=791, type=FakeQuantize];
-"792 Constant_62321" [id=792, type=Constant];
-"793 Constant_62320" [id=793, type=Constant];
-"794 Constant_62319" [id=794, type=Constant];
-"795 Constant_62318" [id=795, type=Constant];
-"796 onnx^^Conv_641" [id=796, label="796 onnx::Conv_641", type=Constant];
-"797 Constant_62316" [id=797, type=Constant];
-"798 Constant_62315" [id=798, type=Constant];
-"799 Constant_62314" [id=799, type=Constant];
-"800 Constant_62313" [id=800, type=Constant];
-"801 Reshape_884" [id=801, type=Constant];
-"802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [id=802, type=FakeQuantize];
-"803 Constant_62311" [id=803, type=Constant];
-"804 Constant_62310" [id=804, type=Constant];
-"805 Constant_62309" [id=805, type=Constant];
-"806 Constant_62308" [id=806, type=Constant];
-"807 onnx^^Conv_638" [id=807, label="807 onnx::Conv_638", type=Constant];
-"808 Reshape_965" [id=808, type=Constant];
-"809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [id=809, type=FakeQuantize];
-"810 Constant_62366" [id=810, type=Constant];
-"811 Constant_62365" [id=811, type=Constant];
-"812 Constant_62364" [id=812, type=Constant];
-"813 Constant_62363" [id=813, type=Constant];
-"814 onnx^^Conv_653" [id=814, label="814 onnx::Conv_653", type=Constant];
-"815 Constant_62361" [id=815, type=Constant];
-"816 Constant_62360" [id=816, type=Constant];
-"817 Constant_62359" [id=817, type=Constant];
-"818 Constant_62358" [id=818, type=Constant];
-"819 Reshape_949" [id=819, type=Constant];
-"820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [id=820, type=FakeQuantize];
-"821 Constant_62356" [id=821, type=Constant];
-"822 Constant_62355" [id=822, type=Constant];
-"823 Constant_62354" [id=823, type=Constant];
-"824 Constant_62353" [id=824, type=Constant];
-"825 onnx^^Conv_650" [id=825, label="825 onnx::Conv_650", type=Constant];
-"826 Constant_62351" [id=826, type=Constant];
-"827 Constant_62350" [id=827, type=Constant];
-"828 Constant_62349" [id=828, type=Constant];
-"829 Constant_62348" [id=829, type=Constant];
-"830 Reshape_933" [id=830, type=Constant];
-"831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [id=831, type=FakeQuantize];
-"832 Constant_62346" [id=832, type=Constant];
-"833 Constant_62345" [id=833, type=Constant];
-"834 Constant_62344" [id=834, type=Constant];
-"835 Constant_62343" [id=835, type=Constant];
-"836 onnx^^Conv_647" [id=836, label="836 onnx::Conv_647", type=Constant];
-"0 data" -> "1 Multiply_2745" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_2745" -> "2 Divide_1002" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_1002" -> "3 Divide_1002/fq_output_0" [label="[1, 3, 224, 224]", style=solid];
-"3 Divide_1002/fq_output_0" -> "4 /conv1/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"4 /conv1/Conv/WithoutBiases" -> "5 /conv1/Conv" [label="[1, 64, 112, 112]", style=solid];
-"5 /conv1/Conv" -> "6 /relu/Relu" [label="[1, 64, 112, 112]", style=solid];
-"6 /relu/Relu" -> "7 /relu/Relu/fq_output_0" [label="[1, 64, 112, 112]", style=solid];
-"7 /relu/Relu/fq_output_0" -> "8 /maxpool/MaxPool" [label="[1, 64, 112, 112]", style=solid];
-"8 /maxpool/MaxPool" -> "9 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"8 /maxpool/MaxPool" -> "10 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"9 /layer1/layer1.0/conv1/Conv/WithoutBiases" -> "11 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"10 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases" -> "12 /layer1/layer1.0/downsample/downsample.0/Conv" [label="[1, 256, 56, 56]", style=solid];
-"11 /layer1/layer1.0/conv1/Conv" -> "13 /layer1/layer1.0/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"12 /layer1/layer1.0/downsample/downsample.0/Conv" -> "14 /layer1/layer1.0/Add" [label="[1, 256, 56, 56]", style=solid];
-"13 /layer1/layer1.0/relu/Relu" -> "15 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"14 /layer1/layer1.0/Add" -> "16 /layer1/layer1.0/relu_2/Relu" [label="[1, 256, 56, 56]", style=solid];
-"15 /layer1/layer1.0/relu/Relu/fq_output_0" -> "17 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"16 /layer1/layer1.0/relu_2/Relu" -> "18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [label="[1, 256, 56, 56]", style=solid];
-"17 /layer1/layer1.0/conv2/Conv/WithoutBiases" -> "19 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"18 /layer1/layer1.0/relu_2/Relu/fq_output_0" -> "20 /layer1/layer1.1/Add" [label="[1, 256, 56, 56]", style=solid];
-"18 /layer1/layer1.0/relu_2/Relu/fq_output_0" -> "21 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[1, 256, 56, 56]", style=solid];
-"19 /layer1/layer1.0/conv2/Conv" -> "22 /layer1/layer1.0/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"20 /layer1/layer1.1/Add" -> "23 /layer1/layer1.1/relu_2/Relu" [label="[1, 256, 56, 56]", style=solid];
-"21 /layer1/layer1.1/conv1/Conv/WithoutBiases" -> "24 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"22 /layer1/layer1.0/relu_1/Relu" -> "25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"23 /layer1/layer1.1/relu_2/Relu" -> "26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [label="[1, 256, 56, 56]", style=solid];
-"24 /layer1/layer1.1/conv1/Conv" -> "27 /layer1/layer1.1/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"25 /layer1/layer1.0/relu_1/Relu/fq_output_0" -> "28 /layer1/layer1.0/conv3/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"26 /layer1/layer1.1/relu_2/Relu/fq_output_0" -> "29 /layer1/layer1.2/Add" [label="[1, 256, 56, 56]", style=solid];
-"26 /layer1/layer1.1/relu_2/Relu/fq_output_0" -> "30 /layer1/layer1.2/conv1/Conv/WithoutBiases" [label="[1, 256, 56, 56]", style=solid];
-"27 /layer1/layer1.1/relu/Relu" -> "31 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"28 /layer1/layer1.0/conv3/Conv/WithoutBiases" -> "32 /layer1/layer1.0/conv3/Conv" [label="[1, 256, 56, 56]", style=solid];
-"29 /layer1/layer1.2/Add" -> "33 /layer1/layer1.2/relu_2/Relu" [label="[1, 256, 56, 56]", style=solid];
-"30 /layer1/layer1.2/conv1/Conv/WithoutBiases" -> "34 /layer1/layer1.2/conv1/Conv" [label="[1, 64, 56, 56]", style=solid];
-"31 /layer1/layer1.1/relu/Relu/fq_output_0" -> "35 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"32 /layer1/layer1.0/conv3/Conv" -> "36 /layer1/layer1.0/conv3/Conv/fq_output_0" [label="[1, 256, 56, 56]", style=solid];
-"33 /layer1/layer1.2/relu_2/Relu" -> "37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [label="[1, 256, 56, 56]", style=solid];
-"34 /layer1/layer1.2/conv1/Conv" -> "38 /layer1/layer1.2/relu/Relu" [label="[1, 64, 56, 56]", style=solid];
-"35 /layer1/layer1.1/conv2/Conv/WithoutBiases" -> "39 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"36 /layer1/layer1.0/conv3/Conv/fq_output_0" -> "14 /layer1/layer1.0/Add" [label="[1, 256, 56, 56]", style=solid];
-"37 /layer1/layer1.2/relu_2/Relu/fq_output_0" -> "40 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[1, 256, 56, 56]", style=solid];
-"37 /layer1/layer1.2/relu_2/Relu/fq_output_0" -> "41 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 256, 56, 56]", style=solid];
-"38 /layer1/layer1.2/relu/Relu" -> "42 /layer1/layer1.2/relu/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"39 /layer1/layer1.1/conv2/Conv" -> "43 /layer1/layer1.1/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"40 /layer2/layer2.0/conv1/Conv/WithoutBiases" -> "44 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 56, 56]", style=solid];
-"41 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" -> "45 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 512, 28, 28]", style=solid];
-"42 /layer1/layer1.2/relu/Relu/fq_output_0" -> "46 /layer1/layer1.2/conv2/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"43 /layer1/layer1.1/relu_1/Relu" -> "47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"44 /layer2/layer2.0/conv1/Conv" -> "48 /layer2/layer2.0/relu/Relu" [label="[1, 128, 56, 56]", style=solid];
-"45 /layer2/layer2.0/downsample/downsample.0/Conv" -> "49 /layer2/layer2.0/Add" [label="[1, 512, 28, 28]", style=solid];
-"46 /layer1/layer1.2/conv2/Conv/WithoutBiases" -> "50 /layer1/layer1.2/conv2/Conv" [label="[1, 64, 56, 56]", style=solid];
-"47 /layer1/layer1.1/relu_1/Relu/fq_output_0" -> "51 /layer1/layer1.1/conv3/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"48 /layer2/layer2.0/relu/Relu" -> "52 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[1, 128, 56, 56]", style=solid];
-"49 /layer2/layer2.0/Add" -> "53 /layer2/layer2.0/relu_2/Relu" [label="[1, 512, 28, 28]", style=solid];
-"50 /layer1/layer1.2/conv2/Conv" -> "54 /layer1/layer1.2/relu_1/Relu" [label="[1, 64, 56, 56]", style=solid];
-"51 /layer1/layer1.1/conv3/Conv/WithoutBiases" -> "55 /layer1/layer1.1/conv3/Conv" [label="[1, 256, 56, 56]", style=solid];
-"52 /layer2/layer2.0/relu/Relu/fq_output_0" -> "56 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[1, 128, 56, 56]", style=solid];
-"53 /layer2/layer2.0/relu_2/Relu" -> "57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [label="[1, 512, 28, 28]", style=solid];
-"54 /layer1/layer1.2/relu_1/Relu" -> "58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [label="[1, 64, 56, 56]", style=solid];
-"55 /layer1/layer1.1/conv3/Conv" -> "20 /layer1/layer1.1/Add" [label="[1, 256, 56, 56]", style=solid];
-"56 /layer2/layer2.0/conv2/Conv/WithoutBiases" -> "59 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"57 /layer2/layer2.0/relu_2/Relu/fq_output_0" -> "60 /layer2/layer2.1/Add" [label="[1, 512, 28, 28]", style=solid];
-"57 /layer2/layer2.0/relu_2/Relu/fq_output_0" -> "61 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[1, 512, 28, 28]", style=solid];
-"58 /layer1/layer1.2/relu_1/Relu/fq_output_0" -> "62 /layer1/layer1.2/conv3/Conv/WithoutBiases" [label="[1, 64, 56, 56]", style=solid];
-"59 /layer2/layer2.0/conv2/Conv" -> "63 /layer2/layer2.0/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"60 /layer2/layer2.1/Add" -> "64 /layer2/layer2.1/relu_2/Relu" [label="[1, 512, 28, 28]", style=solid];
-"61 /layer2/layer2.1/conv1/Conv/WithoutBiases" -> "65 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"62 /layer1/layer1.2/conv3/Conv/WithoutBiases" -> "66 /layer1/layer1.2/conv3/Conv" [label="[1, 256, 56, 56]", style=solid];
-"63 /layer2/layer2.0/relu_1/Relu" -> "67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"64 /layer2/layer2.1/relu_2/Relu" -> "68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [label="[1, 512, 28, 28]", style=solid];
-"65 /layer2/layer2.1/conv1/Conv" -> "69 /layer2/layer2.1/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"66 /layer1/layer1.2/conv3/Conv" -> "29 /layer1/layer1.2/Add" [label="[1, 256, 56, 56]", style=solid];
-"67 /layer2/layer2.0/relu_1/Relu/fq_output_0" -> "70 /layer2/layer2.0/conv3/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"68 /layer2/layer2.1/relu_2/Relu/fq_output_0" -> "71 /layer2/layer2.2/Add" [label="[1, 512, 28, 28]", style=solid];
-"68 /layer2/layer2.1/relu_2/Relu/fq_output_0" -> "72 /layer2/layer2.2/conv1/Conv/WithoutBiases" [label="[1, 512, 28, 28]", style=solid];
-"69 /layer2/layer2.1/relu/Relu" -> "73 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"70 /layer2/layer2.0/conv3/Conv/WithoutBiases" -> "74 /layer2/layer2.0/conv3/Conv" [label="[1, 512, 28, 28]", style=solid];
-"71 /layer2/layer2.2/Add" -> "75 /layer2/layer2.2/relu_2/Relu" [label="[1, 512, 28, 28]", style=solid];
-"72 /layer2/layer2.2/conv1/Conv/WithoutBiases" -> "76 /layer2/layer2.2/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"73 /layer2/layer2.1/relu/Relu/fq_output_0" -> "77 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"74 /layer2/layer2.0/conv3/Conv" -> "78 /layer2/layer2.0/conv3/Conv/fq_output_0" [label="[1, 512, 28, 28]", style=solid];
-"75 /layer2/layer2.2/relu_2/Relu" -> "79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [label="[1, 512, 28, 28]", style=solid];
-"76 /layer2/layer2.2/conv1/Conv" -> "80 /layer2/layer2.2/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"77 /layer2/layer2.1/conv2/Conv/WithoutBiases" -> "81 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"78 /layer2/layer2.0/conv3/Conv/fq_output_0" -> "49 /layer2/layer2.0/Add" [label="[1, 512, 28, 28]", style=solid];
-"79 /layer2/layer2.2/relu_2/Relu/fq_output_0" -> "82 /layer2/layer2.3/Add" [label="[1, 512, 28, 28]", style=solid];
-"79 /layer2/layer2.2/relu_2/Relu/fq_output_0" -> "83 /layer2/layer2.3/conv1/Conv/WithoutBiases" [label="[1, 512, 28, 28]", style=solid];
-"80 /layer2/layer2.2/relu/Relu" -> "84 /layer2/layer2.2/relu/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"81 /layer2/layer2.1/conv2/Conv" -> "85 /layer2/layer2.1/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"82 /layer2/layer2.3/Add" -> "86 /layer2/layer2.3/relu_2/Relu" [label="[1, 512, 28, 28]", style=solid];
-"83 /layer2/layer2.3/conv1/Conv/WithoutBiases" -> "87 /layer2/layer2.3/conv1/Conv" [label="[1, 128, 28, 28]", style=solid];
-"84 /layer2/layer2.2/relu/Relu/fq_output_0" -> "88 /layer2/layer2.2/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"85 /layer2/layer2.1/relu_1/Relu" -> "89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"86 /layer2/layer2.3/relu_2/Relu" -> "90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [label="[1, 512, 28, 28]", style=solid];
-"87 /layer2/layer2.3/conv1/Conv" -> "91 /layer2/layer2.3/relu/Relu" [label="[1, 128, 28, 28]", style=solid];
-"88 /layer2/layer2.2/conv2/Conv/WithoutBiases" -> "92 /layer2/layer2.2/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"89 /layer2/layer2.1/relu_1/Relu/fq_output_0" -> "93 /layer2/layer2.1/conv3/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"90 /layer2/layer2.3/relu_2/Relu/fq_output_0" -> "94 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[1, 512, 28, 28]", style=solid];
-"90 /layer2/layer2.3/relu_2/Relu/fq_output_0" -> "95 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 512, 28, 28]", style=solid];
-"91 /layer2/layer2.3/relu/Relu" -> "96 /layer2/layer2.3/relu/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"92 /layer2/layer2.2/conv2/Conv" -> "97 /layer2/layer2.2/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"93 /layer2/layer2.1/conv3/Conv/WithoutBiases" -> "98 /layer2/layer2.1/conv3/Conv" [label="[1, 512, 28, 28]", style=solid];
-"94 /layer3/layer3.0/conv1/Conv/WithoutBiases" -> "99 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 28, 28]", style=solid];
-"95 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" -> "100 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"96 /layer2/layer2.3/relu/Relu/fq_output_0" -> "101 /layer2/layer2.3/conv2/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"97 /layer2/layer2.2/relu_1/Relu" -> "102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"98 /layer2/layer2.1/conv3/Conv" -> "60 /layer2/layer2.1/Add" [label="[1, 512, 28, 28]", style=solid];
-"99 /layer3/layer3.0/conv1/Conv" -> "103 /layer3/layer3.0/relu/Relu" [label="[1, 256, 28, 28]", style=solid];
-"100 /layer3/layer3.0/downsample/downsample.0/Conv" -> "104 /layer3/layer3.0/Add" [label="[1, 1024, 14, 14]", style=solid];
-"101 /layer2/layer2.3/conv2/Conv/WithoutBiases" -> "105 /layer2/layer2.3/conv2/Conv" [label="[1, 128, 28, 28]", style=solid];
-"102 /layer2/layer2.2/relu_1/Relu/fq_output_0" -> "106 /layer2/layer2.2/conv3/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"103 /layer3/layer3.0/relu/Relu" -> "107 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[1, 256, 28, 28]", style=solid];
-"104 /layer3/layer3.0/Add" -> "108 /layer3/layer3.0/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"105 /layer2/layer2.3/conv2/Conv" -> "109 /layer2/layer2.3/relu_1/Relu" [label="[1, 128, 28, 28]", style=solid];
-"106 /layer2/layer2.2/conv3/Conv/WithoutBiases" -> "110 /layer2/layer2.2/conv3/Conv" [label="[1, 512, 28, 28]", style=solid];
-"107 /layer3/layer3.0/relu/Relu/fq_output_0" -> "111 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[1, 256, 28, 28]", style=solid];
-"108 /layer3/layer3.0/relu_2/Relu" -> "112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"109 /layer2/layer2.3/relu_1/Relu" -> "113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [label="[1, 128, 28, 28]", style=solid];
-"110 /layer2/layer2.2/conv3/Conv" -> "71 /layer2/layer2.2/Add" [label="[1, 512, 28, 28]", style=solid];
-"111 /layer3/layer3.0/conv2/Conv/WithoutBiases" -> "114 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"112 /layer3/layer3.0/relu_2/Relu/fq_output_0" -> "115 /layer3/layer3.1/Add" [label="[1, 1024, 14, 14]", style=solid];
-"112 /layer3/layer3.0/relu_2/Relu/fq_output_0" -> "116 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"113 /layer2/layer2.3/relu_1/Relu/fq_output_0" -> "117 /layer2/layer2.3/conv3/Conv/WithoutBiases" [label="[1, 128, 28, 28]", style=solid];
-"114 /layer3/layer3.0/conv2/Conv" -> "118 /layer3/layer3.0/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"115 /layer3/layer3.1/Add" -> "119 /layer3/layer3.1/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"116 /layer3/layer3.1/conv1/Conv/WithoutBiases" -> "120 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"117 /layer2/layer2.3/conv3/Conv/WithoutBiases" -> "121 /layer2/layer2.3/conv3/Conv" [label="[1, 512, 28, 28]", style=solid];
-"118 /layer3/layer3.0/relu_1/Relu" -> "122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"119 /layer3/layer3.1/relu_2/Relu" -> "123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"120 /layer3/layer3.1/conv1/Conv" -> "124 /layer3/layer3.1/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"121 /layer2/layer2.3/conv3/Conv" -> "82 /layer2/layer2.3/Add" [label="[1, 512, 28, 28]", style=solid];
-"122 /layer3/layer3.0/relu_1/Relu/fq_output_0" -> "125 /layer3/layer3.0/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"123 /layer3/layer3.1/relu_2/Relu/fq_output_0" -> "126 /layer3/layer3.2/Add" [label="[1, 1024, 14, 14]", style=solid];
-"123 /layer3/layer3.1/relu_2/Relu/fq_output_0" -> "127 /layer3/layer3.2/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"124 /layer3/layer3.1/relu/Relu" -> "128 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"125 /layer3/layer3.0/conv3/Conv/WithoutBiases" -> "129 /layer3/layer3.0/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"126 /layer3/layer3.2/Add" -> "130 /layer3/layer3.2/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"127 /layer3/layer3.2/conv1/Conv/WithoutBiases" -> "131 /layer3/layer3.2/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"128 /layer3/layer3.1/relu/Relu/fq_output_0" -> "132 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"129 /layer3/layer3.0/conv3/Conv" -> "133 /layer3/layer3.0/conv3/Conv/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"130 /layer3/layer3.2/relu_2/Relu" -> "134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"131 /layer3/layer3.2/conv1/Conv" -> "135 /layer3/layer3.2/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"132 /layer3/layer3.1/conv2/Conv/WithoutBiases" -> "136 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"133 /layer3/layer3.0/conv3/Conv/fq_output_0" -> "104 /layer3/layer3.0/Add" [label="[1, 1024, 14, 14]", style=solid];
-"134 /layer3/layer3.2/relu_2/Relu/fq_output_0" -> "137 /layer3/layer3.3/Add" [label="[1, 1024, 14, 14]", style=solid];
-"134 /layer3/layer3.2/relu_2/Relu/fq_output_0" -> "138 /layer3/layer3.3/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"135 /layer3/layer3.2/relu/Relu" -> "139 /layer3/layer3.2/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"136 /layer3/layer3.1/conv2/Conv" -> "140 /layer3/layer3.1/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"137 /layer3/layer3.3/Add" -> "141 /layer3/layer3.3/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"138 /layer3/layer3.3/conv1/Conv/WithoutBiases" -> "142 /layer3/layer3.3/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"139 /layer3/layer3.2/relu/Relu/fq_output_0" -> "143 /layer3/layer3.2/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"140 /layer3/layer3.1/relu_1/Relu" -> "144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"141 /layer3/layer3.3/relu_2/Relu" -> "145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"142 /layer3/layer3.3/conv1/Conv" -> "146 /layer3/layer3.3/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"143 /layer3/layer3.2/conv2/Conv/WithoutBiases" -> "147 /layer3/layer3.2/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"144 /layer3/layer3.1/relu_1/Relu/fq_output_0" -> "148 /layer3/layer3.1/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"145 /layer3/layer3.3/relu_2/Relu/fq_output_0" -> "149 /layer3/layer3.4/Add" [label="[1, 1024, 14, 14]", style=solid];
-"145 /layer3/layer3.3/relu_2/Relu/fq_output_0" -> "150 /layer3/layer3.4/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"146 /layer3/layer3.3/relu/Relu" -> "151 /layer3/layer3.3/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"147 /layer3/layer3.2/conv2/Conv" -> "152 /layer3/layer3.2/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"148 /layer3/layer3.1/conv3/Conv/WithoutBiases" -> "153 /layer3/layer3.1/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"149 /layer3/layer3.4/Add" -> "154 /layer3/layer3.4/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"150 /layer3/layer3.4/conv1/Conv/WithoutBiases" -> "155 /layer3/layer3.4/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"151 /layer3/layer3.3/relu/Relu/fq_output_0" -> "156 /layer3/layer3.3/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"152 /layer3/layer3.2/relu_1/Relu" -> "157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"153 /layer3/layer3.1/conv3/Conv" -> "115 /layer3/layer3.1/Add" [label="[1, 1024, 14, 14]", style=solid];
-"154 /layer3/layer3.4/relu_2/Relu" -> "158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"155 /layer3/layer3.4/conv1/Conv" -> "159 /layer3/layer3.4/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"156 /layer3/layer3.3/conv2/Conv/WithoutBiases" -> "160 /layer3/layer3.3/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"157 /layer3/layer3.2/relu_1/Relu/fq_output_0" -> "161 /layer3/layer3.2/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"158 /layer3/layer3.4/relu_2/Relu/fq_output_0" -> "162 /layer3/layer3.5/Add" [label="[1, 1024, 14, 14]", style=solid];
-"158 /layer3/layer3.4/relu_2/Relu/fq_output_0" -> "163 /layer3/layer3.5/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"159 /layer3/layer3.4/relu/Relu" -> "164 /layer3/layer3.4/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"160 /layer3/layer3.3/conv2/Conv" -> "165 /layer3/layer3.3/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"161 /layer3/layer3.2/conv3/Conv/WithoutBiases" -> "166 /layer3/layer3.2/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"162 /layer3/layer3.5/Add" -> "167 /layer3/layer3.5/relu_2/Relu" [label="[1, 1024, 14, 14]", style=solid];
-"163 /layer3/layer3.5/conv1/Conv/WithoutBiases" -> "168 /layer3/layer3.5/conv1/Conv" [label="[1, 256, 14, 14]", style=solid];
-"164 /layer3/layer3.4/relu/Relu/fq_output_0" -> "169 /layer3/layer3.4/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"165 /layer3/layer3.3/relu_1/Relu" -> "170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"166 /layer3/layer3.2/conv3/Conv" -> "126 /layer3/layer3.2/Add" [label="[1, 1024, 14, 14]", style=solid];
-"167 /layer3/layer3.5/relu_2/Relu" -> "171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [label="[1, 1024, 14, 14]", style=solid];
-"168 /layer3/layer3.5/conv1/Conv" -> "172 /layer3/layer3.5/relu/Relu" [label="[1, 256, 14, 14]", style=solid];
-"169 /layer3/layer3.4/conv2/Conv/WithoutBiases" -> "173 /layer3/layer3.4/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"170 /layer3/layer3.3/relu_1/Relu/fq_output_0" -> "174 /layer3/layer3.3/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"171 /layer3/layer3.5/relu_2/Relu/fq_output_0" -> "175 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"171 /layer3/layer3.5/relu_2/Relu/fq_output_0" -> "176 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1, 1024, 14, 14]", style=solid];
-"172 /layer3/layer3.5/relu/Relu" -> "177 /layer3/layer3.5/relu/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"173 /layer3/layer3.4/conv2/Conv" -> "178 /layer3/layer3.4/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"174 /layer3/layer3.3/conv3/Conv/WithoutBiases" -> "179 /layer3/layer3.3/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"175 /layer4/layer4.0/conv1/Conv/WithoutBiases" -> "180 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 14, 14]", style=solid];
-"176 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" -> "181 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 2048, 7, 7]", style=solid];
-"177 /layer3/layer3.5/relu/Relu/fq_output_0" -> "182 /layer3/layer3.5/conv2/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"178 /layer3/layer3.4/relu_1/Relu" -> "183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"179 /layer3/layer3.3/conv3/Conv" -> "137 /layer3/layer3.3/Add" [label="[1, 1024, 14, 14]", style=solid];
-"180 /layer4/layer4.0/conv1/Conv" -> "184 /layer4/layer4.0/relu/Relu" [label="[1, 512, 14, 14]", style=solid];
-"181 /layer4/layer4.0/downsample/downsample.0/Conv" -> "185 /layer4/layer4.0/Add" [label="[1, 2048, 7, 7]", style=solid];
-"182 /layer3/layer3.5/conv2/Conv/WithoutBiases" -> "186 /layer3/layer3.5/conv2/Conv" [label="[1, 256, 14, 14]", style=solid];
-"183 /layer3/layer3.4/relu_1/Relu/fq_output_0" -> "187 /layer3/layer3.4/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"184 /layer4/layer4.0/relu/Relu" -> "188 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[1, 512, 14, 14]", style=solid];
-"185 /layer4/layer4.0/Add" -> "189 /layer4/layer4.0/relu_2/Relu" [label="[1, 2048, 7, 7]", style=solid];
-"186 /layer3/layer3.5/conv2/Conv" -> "190 /layer3/layer3.5/relu_1/Relu" [label="[1, 256, 14, 14]", style=solid];
-"187 /layer3/layer3.4/conv3/Conv/WithoutBiases" -> "191 /layer3/layer3.4/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"188 /layer4/layer4.0/relu/Relu/fq_output_0" -> "192 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[1, 512, 14, 14]", style=solid];
-"189 /layer4/layer4.0/relu_2/Relu" -> "193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [label="[1, 2048, 7, 7]", style=solid];
-"190 /layer3/layer3.5/relu_1/Relu" -> "194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [label="[1, 256, 14, 14]", style=solid];
-"191 /layer3/layer3.4/conv3/Conv" -> "149 /layer3/layer3.4/Add" [label="[1, 1024, 14, 14]", style=solid];
-"192 /layer4/layer4.0/conv2/Conv/WithoutBiases" -> "195 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"193 /layer4/layer4.0/relu_2/Relu/fq_output_0" -> "196 /layer4/layer4.1/Add" [label="[1, 2048, 7, 7]", style=solid];
-"193 /layer4/layer4.0/relu_2/Relu/fq_output_0" -> "197 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[1, 2048, 7, 7]", style=solid];
-"194 /layer3/layer3.5/relu_1/Relu/fq_output_0" -> "198 /layer3/layer3.5/conv3/Conv/WithoutBiases" [label="[1, 256, 14, 14]", style=solid];
-"195 /layer4/layer4.0/conv2/Conv" -> "199 /layer4/layer4.0/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"196 /layer4/layer4.1/Add" -> "200 /layer4/layer4.1/relu_2/Relu" [label="[1, 2048, 7, 7]", style=solid];
-"197 /layer4/layer4.1/conv1/Conv/WithoutBiases" -> "201 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"198 /layer3/layer3.5/conv3/Conv/WithoutBiases" -> "202 /layer3/layer3.5/conv3/Conv" [label="[1, 1024, 14, 14]", style=solid];
-"199 /layer4/layer4.0/relu_1/Relu" -> "203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"200 /layer4/layer4.1/relu_2/Relu" -> "204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [label="[1, 2048, 7, 7]", style=solid];
-"201 /layer4/layer4.1/conv1/Conv" -> "205 /layer4/layer4.1/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"202 /layer3/layer3.5/conv3/Conv" -> "162 /layer3/layer3.5/Add" [label="[1, 1024, 14, 14]", style=solid];
-"203 /layer4/layer4.0/relu_1/Relu/fq_output_0" -> "206 /layer4/layer4.0/conv3/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"204 /layer4/layer4.1/relu_2/Relu/fq_output_0" -> "207 /layer4/layer4.2/Add" [label="[1, 2048, 7, 7]", style=solid];
-"204 /layer4/layer4.1/relu_2/Relu/fq_output_0" -> "208 /layer4/layer4.2/conv1/Conv/WithoutBiases" [label="[1, 2048, 7, 7]", style=solid];
-"205 /layer4/layer4.1/relu/Relu" -> "209 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"206 /layer4/layer4.0/conv3/Conv/WithoutBiases" -> "210 /layer4/layer4.0/conv3/Conv" [label="[1, 2048, 7, 7]", style=solid];
-"207 /layer4/layer4.2/Add" -> "211 /layer4/layer4.2/relu_2/Relu" [label="[1, 2048, 7, 7]", style=solid];
-"208 /layer4/layer4.2/conv1/Conv/WithoutBiases" -> "212 /layer4/layer4.2/conv1/Conv" [label="[1, 512, 7, 7]", style=solid];
-"209 /layer4/layer4.1/relu/Relu/fq_output_0" -> "213 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"210 /layer4/layer4.0/conv3/Conv" -> "214 /layer4/layer4.0/conv3/Conv/fq_output_0" [label="[1, 2048, 7, 7]", style=solid];
-"211 /layer4/layer4.2/relu_2/Relu" -> "215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [label="[1, 2048, 7, 7]", style=solid];
-"212 /layer4/layer4.2/conv1/Conv" -> "216 /layer4/layer4.2/relu/Relu" [label="[1, 512, 7, 7]", style=solid];
-"213 /layer4/layer4.1/conv2/Conv/WithoutBiases" -> "217 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"214 /layer4/layer4.0/conv3/Conv/fq_output_0" -> "185 /layer4/layer4.0/Add" [label="[1, 2048, 7, 7]", style=solid];
-"215 /layer4/layer4.2/relu_2/Relu/fq_output_0" -> "218 /avgpool/GlobalAveragePool" [label="[1, 2048, 7, 7]", style=solid];
-"216 /layer4/layer4.2/relu/Relu" -> "219 /layer4/layer4.2/relu/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"217 /layer4/layer4.1/conv2/Conv" -> "220 /layer4/layer4.1/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"218 /avgpool/GlobalAveragePool" -> "221 /avgpool/GlobalAveragePool/fq_output_0" [label="[1, 2048, 1, 1]", style=solid];
-"219 /layer4/layer4.2/relu/Relu/fq_output_0" -> "222 /layer4/layer4.2/conv2/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"220 /layer4/layer4.1/relu_1/Relu" -> "223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"221 /avgpool/GlobalAveragePool/fq_output_0" -> "224 /Flatten" [label="[1, 2048, 1, 1]", style=solid];
-"222 /layer4/layer4.2/conv2/Conv/WithoutBiases" -> "225 /layer4/layer4.2/conv2/Conv" [label="[1, 512, 7, 7]", style=solid];
-"223 /layer4/layer4.1/relu_1/Relu/fq_output_0" -> "226 /layer4/layer4.1/conv3/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"224 /Flatten" -> "227 /fc/Gemm/WithoutBiases" [label="[1, 2048]", style=solid];
-"225 /layer4/layer4.2/conv2/Conv" -> "228 /layer4/layer4.2/relu_1/Relu" [label="[1, 512, 7, 7]", style=solid];
-"226 /layer4/layer4.1/conv3/Conv/WithoutBiases" -> "229 /layer4/layer4.1/conv3/Conv" [label="[1, 2048, 7, 7]", style=solid];
-"227 /fc/Gemm/WithoutBiases" -> "230 prob" [label="[1, 1000]", style=solid];
-"228 /layer4/layer4.2/relu_1/Relu" -> "231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [label="[1, 512, 7, 7]", style=solid];
-"229 /layer4/layer4.1/conv3/Conv" -> "196 /layer4/layer4.1/Add" [label="[1, 2048, 7, 7]", style=solid];
-"230 prob" -> "232 prob/sink_port_0" [label="[1, 1000]", style=solid];
-"231 /layer4/layer4.2/relu_1/Relu/fq_output_0" -> "233 /layer4/layer4.2/conv3/Conv/WithoutBiases" [label="[1, 512, 7, 7]", style=solid];
-"233 /layer4/layer4.2/conv3/Conv/WithoutBiases" -> "234 /layer4/layer4.2/conv3/Conv" [label="[1, 2048, 7, 7]", style=solid];
-"234 /layer4/layer4.2/conv3/Conv" -> "207 /layer4/layer4.2/Add" [label="[1, 2048, 7, 7]", style=solid];
-"235 Constant_2819" -> "230 prob" [label="[1, 1000]", style=solid];
-"236 /fc/Gemm/WithoutBiases/fq_weights_1" -> "227 /fc/Gemm/WithoutBiases" [label="[1000, 2048]", style=solid];
-"237 Constant_62386" -> "236 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"238 Constant_62385" -> "236 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"239 Constant_62384" -> "236 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"240 Constant_62383" -> "236 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"241 fc.weight" -> "236 /fc/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 2048]", style=solid];
-"242 Constant_981" -> "224 /Flatten" [label="[2]", style=dashed];
-"243 Constant_62381" -> "221 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"244 Constant_62380" -> "221 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"245 Constant_62379" -> "221 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"246 Constant_62378" -> "221 /avgpool/GlobalAveragePool/fq_output_0" [label="[]", style=solid];
-"247 Range_977" -> "218 /avgpool/GlobalAveragePool" [label="[2]", style=dashed];
-"248 Constant_62376" -> "215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"249 Constant_62375" -> "215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"250 Constant_62374" -> "215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"251 Constant_62373" -> "215 /layer4/layer4.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"252 Constant_62341" -> "204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"253 Constant_62340" -> "204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"254 Constant_62339" -> "204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"255 Constant_62338" -> "204 /layer4/layer4.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"256 Constant_62306" -> "193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"257 Constant_62305" -> "193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"258 Constant_62304" -> "193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"259 Constant_62303" -> "193 /layer4/layer4.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"260 Reshape_867" -> "181 /layer4/layer4.0/downsample/downsample.0/Conv" [label="[1, 2048, 1, 1]", style=solid];
-"261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "176 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases" [label="[2048, 1024, 1, 1]", style=solid];
-"262 Constant_62266" -> "261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"263 Constant_62265" -> "261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"264 Constant_62264" -> "261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"265 Constant_62263" -> "261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"266 onnx^^Conv_635" -> "261 /layer4/layer4.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1024, 1, 1]", style=solid];
-"267 Constant_62261" -> "171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"268 Constant_62260" -> "171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"269 Constant_62259" -> "171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"270 Constant_62258" -> "171 /layer3/layer3.5/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"271 Constant_62226" -> "158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"272 Constant_62225" -> "158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"273 Constant_62224" -> "158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"274 Constant_62223" -> "158 /layer3/layer3.4/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"275 Constant_62191" -> "145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"276 Constant_62190" -> "145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"277 Constant_62189" -> "145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"278 Constant_62188" -> "145 /layer3/layer3.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"279 Constant_62156" -> "134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"280 Constant_62155" -> "134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"281 Constant_62154" -> "134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"282 Constant_62153" -> "134 /layer3/layer3.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"283 Constant_62121" -> "123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"284 Constant_62120" -> "123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"285 Constant_62119" -> "123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"286 Constant_62118" -> "123 /layer3/layer3.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"287 Constant_62086" -> "112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"288 Constant_62085" -> "112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"289 Constant_62084" -> "112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"290 Constant_62083" -> "112 /layer3/layer3.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"291 Reshape_558" -> "100 /layer3/layer3.0/downsample/downsample.0/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "95 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases" [label="[1024, 512, 1, 1]", style=solid];
-"293 Constant_62046" -> "292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"294 Constant_62045" -> "292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"295 Constant_62044" -> "292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"296 Constant_62043" -> "292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"297 onnx^^Conv_578" -> "292 /layer3/layer3.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[1024, 512, 1, 1]", style=solid];
-"298 Constant_62041" -> "90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"299 Constant_62040" -> "90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"300 Constant_62039" -> "90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"301 Constant_62038" -> "90 /layer2/layer2.3/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"302 Constant_62006" -> "79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"303 Constant_62005" -> "79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"304 Constant_62004" -> "79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"305 Constant_62003" -> "79 /layer2/layer2.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"306 Constant_61971" -> "68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"307 Constant_61970" -> "68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"308 Constant_61969" -> "68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"309 Constant_61968" -> "68 /layer2/layer2.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"310 Constant_61936" -> "57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"311 Constant_61935" -> "57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"312 Constant_61934" -> "57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"313 Constant_61933" -> "57 /layer2/layer2.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"314 Reshape_347" -> "45 /layer2/layer2.0/downsample/downsample.0/Conv" [label="[1, 512, 1, 1]", style=solid];
-"315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "41 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases" [label="[512, 256, 1, 1]", style=solid];
-"316 Constant_61896" -> "315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"317 Constant_61895" -> "315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"318 Constant_61894" -> "315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"319 Constant_61893" -> "315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"320 onnx^^Conv_539" -> "315 /layer2/layer2.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[512, 256, 1, 1]", style=solid];
-"321 Constant_61891" -> "37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"322 Constant_61890" -> "37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"323 Constant_61889" -> "37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"324 Constant_61888" -> "37 /layer1/layer1.2/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"325 Constant_61856" -> "26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"326 Constant_61855" -> "26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"327 Constant_61854" -> "26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"328 Constant_61853" -> "26 /layer1/layer1.1/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"329 Constant_61821" -> "18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"330 Constant_61820" -> "18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"331 Constant_61819" -> "18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"332 Constant_61818" -> "18 /layer1/layer1.0/relu_2/Relu/fq_output_0" [label="[]", style=solid];
-"333 Reshape_185" -> "12 /layer1/layer1.0/downsample/downsample.0/Conv" [label="[1, 256, 1, 1]", style=solid];
-"334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" -> "10 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases" [label="[256, 64, 1, 1]", style=solid];
-"335 Constant_61781" -> "334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"336 Constant_61780" -> "334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"337 Constant_61779" -> "334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"338 Constant_61778" -> "334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"339 onnx^^Conv_509" -> "334 /layer1/layer1.0/downsample/downsample.0/Conv/WithoutBiases/fq_weights_1" [label="[256, 64, 1, 1]", style=solid];
-"340 Constant_61776" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"341 Constant_61775" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"342 Constant_61774" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"343 Constant_61773" -> "7 /relu/Relu/fq_output_0" [label="[]", style=solid];
-"344 Reshape_121" -> "5 /conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"345 /conv1/Conv/WithoutBiases/fq_weights_1" -> "4 /conv1/Conv/WithoutBiases" [label="[64, 3, 7, 7]", style=solid];
-"346 Constant_61771" -> "345 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"347 Constant_61770" -> "345 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"348 Constant_61769" -> "345 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"349 Constant_61768" -> "345 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"350 Gather_2818" -> "345 /conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 3, 7, 7]", style=solid];
-"351 Constant_61766" -> "3 Divide_1002/fq_output_0" [label="[]", style=solid];
-"352 Constant_61765" -> "3 Divide_1002/fq_output_0" [label="[]", style=solid];
-"353 Constant_61764" -> "3 Divide_1002/fq_output_0" [label="[]", style=solid];
-"354 Constant_61763" -> "3 Divide_1002/fq_output_0" [label="[]", style=solid];
-"355 Gather_2815" -> "2 Divide_1002" [label="[1, 3, 1, 1]", style=solid];
-"356 Gather_2812" -> "1 Multiply_2745" [label="[1, 3, 1, 1]", style=solid];
-"357 Constant_61816" -> "36 /layer1/layer1.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"358 Constant_61815" -> "36 /layer1/layer1.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"359 Constant_61814" -> "36 /layer1/layer1.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"360 Constant_61813" -> "36 /layer1/layer1.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"361 Reshape_170" -> "32 /layer1/layer1.0/conv3/Conv" [label="[1, 256, 1, 1]", style=solid];
-"362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" -> "28 /layer1/layer1.0/conv3/Conv/WithoutBiases" [label="[256, 64, 1, 1]", style=solid];
-"363 Constant_61811" -> "362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"364 Constant_61810" -> "362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"365 Constant_61809" -> "362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"366 Constant_61808" -> "362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"367 onnx^^Conv_506" -> "362 /layer1/layer1.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 64, 1, 1]", style=solid];
-"368 Constant_61806" -> "25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"369 Constant_61805" -> "25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"370 Constant_61804" -> "25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"371 Constant_61803" -> "25 /layer1/layer1.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"372 Reshape_154" -> "19 /layer1/layer1.0/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "17 /layer1/layer1.0/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"374 Constant_61801" -> "373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"375 Constant_61800" -> "373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"376 Constant_61799" -> "373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"377 Constant_61798" -> "373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"378 onnx^^Conv_503" -> "373 /layer1/layer1.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"379 Constant_61796" -> "15 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"380 Constant_61795" -> "15 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"381 Constant_61794" -> "15 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"382 Constant_61793" -> "15 /layer1/layer1.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"383 Reshape_138" -> "11 /layer1/layer1.0/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "9 /layer1/layer1.0/conv1/Conv/WithoutBiases" [label="[64, 64, 1, 1]", style=solid];
-"385 Constant_61791" -> "384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"386 Constant_61790" -> "384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"387 Constant_61789" -> "384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"388 Constant_61788" -> "384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"389 onnx^^Conv_500" -> "384 /layer1/layer1.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 1, 1]", style=solid];
-"390 Reshape_234" -> "55 /layer1/layer1.1/conv3/Conv" [label="[1, 256, 1, 1]", style=solid];
-"391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" -> "51 /layer1/layer1.1/conv3/Conv/WithoutBiases" [label="[256, 64, 1, 1]", style=solid];
-"392 Constant_61846" -> "391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"393 Constant_61845" -> "391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"394 Constant_61844" -> "391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"395 Constant_61843" -> "391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"396 onnx^^Conv_518" -> "391 /layer1/layer1.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 64, 1, 1]", style=solid];
-"397 Constant_61841" -> "47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"398 Constant_61840" -> "47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"399 Constant_61839" -> "47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"400 Constant_61838" -> "47 /layer1/layer1.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"401 Reshape_218" -> "39 /layer1/layer1.1/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "35 /layer1/layer1.1/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"403 Constant_61836" -> "402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"404 Constant_61835" -> "402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"405 Constant_61834" -> "402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"406 Constant_61833" -> "402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"407 onnx^^Conv_515" -> "402 /layer1/layer1.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"408 Constant_61831" -> "31 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"409 Constant_61830" -> "31 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"410 Constant_61829" -> "31 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"411 Constant_61828" -> "31 /layer1/layer1.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"412 Reshape_202" -> "24 /layer1/layer1.1/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "21 /layer1/layer1.1/conv1/Conv/WithoutBiases" [label="[64, 256, 1, 1]", style=solid];
-"414 Constant_61826" -> "413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"415 Constant_61825" -> "413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"416 Constant_61824" -> "413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"417 Constant_61823" -> "413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"418 onnx^^Conv_512" -> "413 /layer1/layer1.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 256, 1, 1]", style=solid];
-"419 Reshape_283" -> "66 /layer1/layer1.2/conv3/Conv" [label="[1, 256, 1, 1]", style=solid];
-"420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" -> "62 /layer1/layer1.2/conv3/Conv/WithoutBiases" [label="[256, 64, 1, 1]", style=solid];
-"421 Constant_61881" -> "420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"422 Constant_61880" -> "420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"423 Constant_61879" -> "420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"424 Constant_61878" -> "420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"425 onnx^^Conv_527" -> "420 /layer1/layer1.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[256, 64, 1, 1]", style=solid];
-"426 Constant_61876" -> "58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"427 Constant_61875" -> "58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"428 Constant_61874" -> "58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"429 Constant_61873" -> "58 /layer1/layer1.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"430 Reshape_267" -> "50 /layer1/layer1.2/conv2/Conv" [label="[1, 64, 1, 1]", style=solid];
-"431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" -> "46 /layer1/layer1.2/conv2/Conv/WithoutBiases" [label="[64, 64, 3, 3]", style=solid];
-"432 Constant_61871" -> "431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"433 Constant_61870" -> "431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"434 Constant_61869" -> "431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"435 Constant_61868" -> "431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"436 onnx^^Conv_524" -> "431 /layer1/layer1.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"437 Constant_61866" -> "42 /layer1/layer1.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"438 Constant_61865" -> "42 /layer1/layer1.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"439 Constant_61864" -> "42 /layer1/layer1.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"440 Constant_61863" -> "42 /layer1/layer1.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"441 Reshape_251" -> "34 /layer1/layer1.2/conv1/Conv" [label="[1, 64, 1, 1]", style=solid];
-"442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" -> "30 /layer1/layer1.2/conv1/Conv/WithoutBiases" [label="[64, 256, 1, 1]", style=solid];
-"443 Constant_61861" -> "442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"444 Constant_61860" -> "442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"445 Constant_61859" -> "442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"446 Constant_61858" -> "442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"447 onnx^^Conv_521" -> "442 /layer1/layer1.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[64, 256, 1, 1]", style=solid];
-"448 Constant_61931" -> "78 /layer2/layer2.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"449 Constant_61930" -> "78 /layer2/layer2.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"450 Constant_61929" -> "78 /layer2/layer2.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"451 Constant_61928" -> "78 /layer2/layer2.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"452 Reshape_332" -> "74 /layer2/layer2.0/conv3/Conv" [label="[1, 512, 1, 1]", style=solid];
-"453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" -> "70 /layer2/layer2.0/conv3/Conv/WithoutBiases" [label="[512, 128, 1, 1]", style=solid];
-"454 Constant_61926" -> "453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"455 Constant_61925" -> "453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"456 Constant_61924" -> "453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"457 Constant_61923" -> "453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"458 onnx^^Conv_536" -> "453 /layer2/layer2.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 128, 1, 1]", style=solid];
-"459 Constant_61921" -> "67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"460 Constant_61920" -> "67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"461 Constant_61919" -> "67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"462 Constant_61918" -> "67 /layer2/layer2.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"463 Reshape_316" -> "59 /layer2/layer2.0/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "56 /layer2/layer2.0/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"465 Constant_61916" -> "464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"466 Constant_61915" -> "464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"467 Constant_61914" -> "464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"468 Constant_61913" -> "464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"469 onnx^^Conv_533" -> "464 /layer2/layer2.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"470 Constant_61911" -> "52 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"471 Constant_61910" -> "52 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"472 Constant_61909" -> "52 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"473 Constant_61908" -> "52 /layer2/layer2.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"474 Reshape_300" -> "44 /layer2/layer2.0/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "40 /layer2/layer2.0/conv1/Conv/WithoutBiases" [label="[128, 256, 1, 1]", style=solid];
-"476 Constant_61906" -> "475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"477 Constant_61905" -> "475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"478 Constant_61904" -> "475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"479 Constant_61903" -> "475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"480 onnx^^Conv_530" -> "475 /layer2/layer2.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 256, 1, 1]", style=solid];
-"481 Reshape_396" -> "98 /layer2/layer2.1/conv3/Conv" [label="[1, 512, 1, 1]", style=solid];
-"482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" -> "93 /layer2/layer2.1/conv3/Conv/WithoutBiases" [label="[512, 128, 1, 1]", style=solid];
-"483 Constant_61961" -> "482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"484 Constant_61960" -> "482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"485 Constant_61959" -> "482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"486 Constant_61958" -> "482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"487 onnx^^Conv_548" -> "482 /layer2/layer2.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 128, 1, 1]", style=solid];
-"488 Constant_61956" -> "89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"489 Constant_61955" -> "89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"490 Constant_61954" -> "89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"491 Constant_61953" -> "89 /layer2/layer2.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"492 Reshape_380" -> "81 /layer2/layer2.1/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "77 /layer2/layer2.1/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"494 Constant_61951" -> "493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"495 Constant_61950" -> "493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"496 Constant_61949" -> "493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"497 Constant_61948" -> "493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"498 onnx^^Conv_545" -> "493 /layer2/layer2.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"499 Constant_61946" -> "73 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"500 Constant_61945" -> "73 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"501 Constant_61944" -> "73 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"502 Constant_61943" -> "73 /layer2/layer2.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"503 Reshape_364" -> "65 /layer2/layer2.1/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "61 /layer2/layer2.1/conv1/Conv/WithoutBiases" [label="[128, 512, 1, 1]", style=solid];
-"505 Constant_61941" -> "504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"506 Constant_61940" -> "504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"507 Constant_61939" -> "504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"508 Constant_61938" -> "504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"509 onnx^^Conv_542" -> "504 /layer2/layer2.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 512, 1, 1]", style=solid];
-"510 Reshape_445" -> "110 /layer2/layer2.2/conv3/Conv" [label="[1, 512, 1, 1]", style=solid];
-"511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" -> "106 /layer2/layer2.2/conv3/Conv/WithoutBiases" [label="[512, 128, 1, 1]", style=solid];
-"512 Constant_61996" -> "511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"513 Constant_61995" -> "511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"514 Constant_61994" -> "511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"515 Constant_61993" -> "511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"516 onnx^^Conv_557" -> "511 /layer2/layer2.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 128, 1, 1]", style=solid];
-"517 Constant_61991" -> "102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"518 Constant_61990" -> "102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"519 Constant_61989" -> "102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"520 Constant_61988" -> "102 /layer2/layer2.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"521 Reshape_429" -> "92 /layer2/layer2.2/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" -> "88 /layer2/layer2.2/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"523 Constant_61986" -> "522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"524 Constant_61985" -> "522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"525 Constant_61984" -> "522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"526 Constant_61983" -> "522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"527 onnx^^Conv_554" -> "522 /layer2/layer2.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"528 Constant_61981" -> "84 /layer2/layer2.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"529 Constant_61980" -> "84 /layer2/layer2.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"530 Constant_61979" -> "84 /layer2/layer2.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"531 Constant_61978" -> "84 /layer2/layer2.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"532 Reshape_413" -> "76 /layer2/layer2.2/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" -> "72 /layer2/layer2.2/conv1/Conv/WithoutBiases" [label="[128, 512, 1, 1]", style=solid];
-"534 Constant_61976" -> "533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"535 Constant_61975" -> "533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"536 Constant_61974" -> "533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"537 Constant_61973" -> "533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"538 onnx^^Conv_551" -> "533 /layer2/layer2.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 512, 1, 1]", style=solid];
-"539 Reshape_494" -> "121 /layer2/layer2.3/conv3/Conv" [label="[1, 512, 1, 1]", style=solid];
-"540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" -> "117 /layer2/layer2.3/conv3/Conv/WithoutBiases" [label="[512, 128, 1, 1]", style=solid];
-"541 Constant_62031" -> "540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"542 Constant_62030" -> "540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"543 Constant_62029" -> "540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"544 Constant_62028" -> "540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"545 onnx^^Conv_566" -> "540 /layer2/layer2.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[512, 128, 1, 1]", style=solid];
-"546 Constant_62026" -> "113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"547 Constant_62025" -> "113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"548 Constant_62024" -> "113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"549 Constant_62023" -> "113 /layer2/layer2.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"550 Reshape_478" -> "105 /layer2/layer2.3/conv2/Conv" [label="[1, 128, 1, 1]", style=solid];
-"551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" -> "101 /layer2/layer2.3/conv2/Conv/WithoutBiases" [label="[128, 128, 3, 3]", style=solid];
-"552 Constant_62021" -> "551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"553 Constant_62020" -> "551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"554 Constant_62019" -> "551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"555 Constant_62018" -> "551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"556 onnx^^Conv_563" -> "551 /layer2/layer2.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"557 Constant_62016" -> "96 /layer2/layer2.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"558 Constant_62015" -> "96 /layer2/layer2.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"559 Constant_62014" -> "96 /layer2/layer2.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"560 Constant_62013" -> "96 /layer2/layer2.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"561 Reshape_462" -> "87 /layer2/layer2.3/conv1/Conv" [label="[1, 128, 1, 1]", style=solid];
-"562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" -> "83 /layer2/layer2.3/conv1/Conv/WithoutBiases" [label="[128, 512, 1, 1]", style=solid];
-"563 Constant_62011" -> "562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"564 Constant_62010" -> "562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"565 Constant_62009" -> "562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"566 Constant_62008" -> "562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"567 onnx^^Conv_560" -> "562 /layer2/layer2.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[128, 512, 1, 1]", style=solid];
-"568 Constant_62081" -> "133 /layer3/layer3.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"569 Constant_62080" -> "133 /layer3/layer3.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"570 Constant_62079" -> "133 /layer3/layer3.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"571 Constant_62078" -> "133 /layer3/layer3.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"572 Reshape_543" -> "129 /layer3/layer3.0/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" -> "125 /layer3/layer3.0/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"574 Constant_62076" -> "573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"575 Constant_62075" -> "573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"576 Constant_62074" -> "573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"577 Constant_62073" -> "573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"578 onnx^^Conv_575" -> "573 /layer3/layer3.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"579 Constant_62071" -> "122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"580 Constant_62070" -> "122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"581 Constant_62069" -> "122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"582 Constant_62068" -> "122 /layer3/layer3.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"583 Reshape_527" -> "114 /layer3/layer3.0/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "111 /layer3/layer3.0/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"585 Constant_62066" -> "584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"586 Constant_62065" -> "584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"587 Constant_62064" -> "584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"588 Constant_62063" -> "584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"589 onnx^^Conv_572" -> "584 /layer3/layer3.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"590 Constant_62061" -> "107 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"591 Constant_62060" -> "107 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"592 Constant_62059" -> "107 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"593 Constant_62058" -> "107 /layer3/layer3.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"594 Reshape_511" -> "99 /layer3/layer3.0/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "94 /layer3/layer3.0/conv1/Conv/WithoutBiases" [label="[256, 512, 1, 1]", style=solid];
-"596 Constant_62056" -> "595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"597 Constant_62055" -> "595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"598 Constant_62054" -> "595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"599 Constant_62053" -> "595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"600 onnx^^Conv_569" -> "595 /layer3/layer3.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 512, 1, 1]", style=solid];
-"601 Reshape_607" -> "153 /layer3/layer3.1/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" -> "148 /layer3/layer3.1/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"603 Constant_62111" -> "602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"604 Constant_62110" -> "602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"605 Constant_62109" -> "602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"606 Constant_62108" -> "602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"607 onnx^^Conv_587" -> "602 /layer3/layer3.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"608 Constant_62106" -> "144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"609 Constant_62105" -> "144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"610 Constant_62104" -> "144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"611 Constant_62103" -> "144 /layer3/layer3.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"612 Reshape_591" -> "136 /layer3/layer3.1/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "132 /layer3/layer3.1/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"614 Constant_62101" -> "613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"615 Constant_62100" -> "613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"616 Constant_62099" -> "613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"617 Constant_62098" -> "613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"618 onnx^^Conv_584" -> "613 /layer3/layer3.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"619 Constant_62096" -> "128 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"620 Constant_62095" -> "128 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"621 Constant_62094" -> "128 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"622 Constant_62093" -> "128 /layer3/layer3.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"623 Reshape_575" -> "120 /layer3/layer3.1/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "116 /layer3/layer3.1/conv1/Conv/WithoutBiases" [label="[256, 1024, 1, 1]", style=solid];
-"625 Constant_62091" -> "624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"626 Constant_62090" -> "624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"627 Constant_62089" -> "624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"628 Constant_62088" -> "624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"629 onnx^^Conv_581" -> "624 /layer3/layer3.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1024, 1, 1]", style=solid];
-"630 Reshape_656" -> "166 /layer3/layer3.2/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" -> "161 /layer3/layer3.2/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"632 Constant_62146" -> "631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"633 Constant_62145" -> "631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"634 Constant_62144" -> "631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"635 Constant_62143" -> "631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"636 onnx^^Conv_596" -> "631 /layer3/layer3.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"637 Constant_62141" -> "157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"638 Constant_62140" -> "157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"639 Constant_62139" -> "157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"640 Constant_62138" -> "157 /layer3/layer3.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"641 Reshape_640" -> "147 /layer3/layer3.2/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" -> "143 /layer3/layer3.2/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"643 Constant_62136" -> "642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"644 Constant_62135" -> "642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"645 Constant_62134" -> "642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"646 Constant_62133" -> "642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"647 onnx^^Conv_593" -> "642 /layer3/layer3.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"648 Constant_62131" -> "139 /layer3/layer3.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"649 Constant_62130" -> "139 /layer3/layer3.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"650 Constant_62129" -> "139 /layer3/layer3.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"651 Constant_62128" -> "139 /layer3/layer3.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"652 Reshape_624" -> "131 /layer3/layer3.2/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" -> "127 /layer3/layer3.2/conv1/Conv/WithoutBiases" [label="[256, 1024, 1, 1]", style=solid];
-"654 Constant_62126" -> "653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"655 Constant_62125" -> "653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"656 Constant_62124" -> "653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"657 Constant_62123" -> "653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"658 onnx^^Conv_590" -> "653 /layer3/layer3.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1024, 1, 1]", style=solid];
-"659 Reshape_705" -> "179 /layer3/layer3.3/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" -> "174 /layer3/layer3.3/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"661 Constant_62181" -> "660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"662 Constant_62180" -> "660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"663 Constant_62179" -> "660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"664 Constant_62178" -> "660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"665 onnx^^Conv_605" -> "660 /layer3/layer3.3/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"666 Constant_62176" -> "170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"667 Constant_62175" -> "170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"668 Constant_62174" -> "170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"669 Constant_62173" -> "170 /layer3/layer3.3/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"670 Reshape_689" -> "160 /layer3/layer3.3/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" -> "156 /layer3/layer3.3/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"672 Constant_62171" -> "671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"673 Constant_62170" -> "671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"674 Constant_62169" -> "671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"675 Constant_62168" -> "671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"676 onnx^^Conv_602" -> "671 /layer3/layer3.3/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"677 Constant_62166" -> "151 /layer3/layer3.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"678 Constant_62165" -> "151 /layer3/layer3.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"679 Constant_62164" -> "151 /layer3/layer3.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"680 Constant_62163" -> "151 /layer3/layer3.3/relu/Relu/fq_output_0" [label="[]", style=solid];
-"681 Reshape_673" -> "142 /layer3/layer3.3/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" -> "138 /layer3/layer3.3/conv1/Conv/WithoutBiases" [label="[256, 1024, 1, 1]", style=solid];
-"683 Constant_62161" -> "682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"684 Constant_62160" -> "682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"685 Constant_62159" -> "682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"686 Constant_62158" -> "682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"687 onnx^^Conv_599" -> "682 /layer3/layer3.3/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1024, 1, 1]", style=solid];
-"688 Reshape_754" -> "191 /layer3/layer3.4/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" -> "187 /layer3/layer3.4/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"690 Constant_62216" -> "689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"691 Constant_62215" -> "689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"692 Constant_62214" -> "689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"693 Constant_62213" -> "689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"694 onnx^^Conv_614" -> "689 /layer3/layer3.4/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"695 Constant_62211" -> "183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"696 Constant_62210" -> "183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"697 Constant_62209" -> "183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"698 Constant_62208" -> "183 /layer3/layer3.4/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"699 Reshape_738" -> "173 /layer3/layer3.4/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" -> "169 /layer3/layer3.4/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"701 Constant_62206" -> "700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"702 Constant_62205" -> "700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"703 Constant_62204" -> "700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"704 Constant_62203" -> "700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"705 onnx^^Conv_611" -> "700 /layer3/layer3.4/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"706 Constant_62201" -> "164 /layer3/layer3.4/relu/Relu/fq_output_0" [label="[]", style=solid];
-"707 Constant_62200" -> "164 /layer3/layer3.4/relu/Relu/fq_output_0" [label="[]", style=solid];
-"708 Constant_62199" -> "164 /layer3/layer3.4/relu/Relu/fq_output_0" [label="[]", style=solid];
-"709 Constant_62198" -> "164 /layer3/layer3.4/relu/Relu/fq_output_0" [label="[]", style=solid];
-"710 Reshape_722" -> "155 /layer3/layer3.4/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" -> "150 /layer3/layer3.4/conv1/Conv/WithoutBiases" [label="[256, 1024, 1, 1]", style=solid];
-"712 Constant_62196" -> "711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"713 Constant_62195" -> "711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"714 Constant_62194" -> "711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"715 Constant_62193" -> "711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"716 onnx^^Conv_608" -> "711 /layer3/layer3.4/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1024, 1, 1]", style=solid];
-"717 Reshape_803" -> "202 /layer3/layer3.5/conv3/Conv" [label="[1, 1024, 1, 1]", style=solid];
-"718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" -> "198 /layer3/layer3.5/conv3/Conv/WithoutBiases" [label="[1024, 256, 1, 1]", style=solid];
-"719 Constant_62251" -> "718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"720 Constant_62250" -> "718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"721 Constant_62249" -> "718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"722 Constant_62248" -> "718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 1, 1, 1]", style=solid];
-"723 onnx^^Conv_623" -> "718 /layer3/layer3.5/conv3/Conv/WithoutBiases/fq_weights_1" [label="[1024, 256, 1, 1]", style=solid];
-"724 Constant_62246" -> "194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"725 Constant_62245" -> "194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"726 Constant_62244" -> "194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"727 Constant_62243" -> "194 /layer3/layer3.5/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"728 Reshape_787" -> "186 /layer3/layer3.5/conv2/Conv" [label="[1, 256, 1, 1]", style=solid];
-"729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" -> "182 /layer3/layer3.5/conv2/Conv/WithoutBiases" [label="[256, 256, 3, 3]", style=solid];
-"730 Constant_62241" -> "729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"731 Constant_62240" -> "729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"732 Constant_62239" -> "729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"733 Constant_62238" -> "729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"734 onnx^^Conv_620" -> "729 /layer3/layer3.5/conv2/Conv/WithoutBiases/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"735 Constant_62236" -> "177 /layer3/layer3.5/relu/Relu/fq_output_0" [label="[]", style=solid];
-"736 Constant_62235" -> "177 /layer3/layer3.5/relu/Relu/fq_output_0" [label="[]", style=solid];
-"737 Constant_62234" -> "177 /layer3/layer3.5/relu/Relu/fq_output_0" [label="[]", style=solid];
-"738 Constant_62233" -> "177 /layer3/layer3.5/relu/Relu/fq_output_0" [label="[]", style=solid];
-"739 Reshape_771" -> "168 /layer3/layer3.5/conv1/Conv" [label="[1, 256, 1, 1]", style=solid];
-"740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" -> "163 /layer3/layer3.5/conv1/Conv/WithoutBiases" [label="[256, 1024, 1, 1]", style=solid];
-"741 Constant_62231" -> "740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"742 Constant_62230" -> "740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"743 Constant_62229" -> "740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"744 Constant_62228" -> "740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"745 onnx^^Conv_617" -> "740 /layer3/layer3.5/conv1/Conv/WithoutBiases/fq_weights_1" [label="[256, 1024, 1, 1]", style=solid];
-"746 Constant_62301" -> "214 /layer4/layer4.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"747 Constant_62300" -> "214 /layer4/layer4.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"748 Constant_62299" -> "214 /layer4/layer4.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"749 Constant_62298" -> "214 /layer4/layer4.0/conv3/Conv/fq_output_0" [label="[]", style=solid];
-"750 Reshape_852" -> "210 /layer4/layer4.0/conv3/Conv" [label="[1, 2048, 1, 1]", style=solid];
-"751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" -> "206 /layer4/layer4.0/conv3/Conv/WithoutBiases" [label="[2048, 512, 1, 1]", style=solid];
-"752 Constant_62296" -> "751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"753 Constant_62295" -> "751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"754 Constant_62294" -> "751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"755 Constant_62293" -> "751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"756 onnx^^Conv_632" -> "751 /layer4/layer4.0/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 512, 1, 1]", style=solid];
-"757 Constant_62291" -> "203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"758 Constant_62290" -> "203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"759 Constant_62289" -> "203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"760 Constant_62288" -> "203 /layer4/layer4.0/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"761 Reshape_836" -> "195 /layer4/layer4.0/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" -> "192 /layer4/layer4.0/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"763 Constant_62286" -> "762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"764 Constant_62285" -> "762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"765 Constant_62284" -> "762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"766 Constant_62283" -> "762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"767 onnx^^Conv_629" -> "762 /layer4/layer4.0/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"768 Constant_62281" -> "188 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"769 Constant_62280" -> "188 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"770 Constant_62279" -> "188 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"771 Constant_62278" -> "188 /layer4/layer4.0/relu/Relu/fq_output_0" [label="[]", style=solid];
-"772 Reshape_820" -> "180 /layer4/layer4.0/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" -> "175 /layer4/layer4.0/conv1/Conv/WithoutBiases" [label="[512, 1024, 1, 1]", style=solid];
-"774 Constant_62276" -> "773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"775 Constant_62275" -> "773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"776 Constant_62274" -> "773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"777 Constant_62273" -> "773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"778 onnx^^Conv_626" -> "773 /layer4/layer4.0/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1024, 1, 1]", style=solid];
-"779 Reshape_916" -> "229 /layer4/layer4.1/conv3/Conv" [label="[1, 2048, 1, 1]", style=solid];
-"780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" -> "226 /layer4/layer4.1/conv3/Conv/WithoutBiases" [label="[2048, 512, 1, 1]", style=solid];
-"781 Constant_62331" -> "780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"782 Constant_62330" -> "780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"783 Constant_62329" -> "780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"784 Constant_62328" -> "780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"785 onnx^^Conv_644" -> "780 /layer4/layer4.1/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 512, 1, 1]", style=solid];
-"786 Constant_62326" -> "223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"787 Constant_62325" -> "223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"788 Constant_62324" -> "223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"789 Constant_62323" -> "223 /layer4/layer4.1/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"790 Reshape_900" -> "217 /layer4/layer4.1/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" -> "213 /layer4/layer4.1/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"792 Constant_62321" -> "791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"793 Constant_62320" -> "791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"794 Constant_62319" -> "791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"795 Constant_62318" -> "791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"796 onnx^^Conv_641" -> "791 /layer4/layer4.1/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"797 Constant_62316" -> "209 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"798 Constant_62315" -> "209 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"799 Constant_62314" -> "209 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"800 Constant_62313" -> "209 /layer4/layer4.1/relu/Relu/fq_output_0" [label="[]", style=solid];
-"801 Reshape_884" -> "201 /layer4/layer4.1/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" -> "197 /layer4/layer4.1/conv1/Conv/WithoutBiases" [label="[512, 2048, 1, 1]", style=solid];
-"803 Constant_62311" -> "802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"804 Constant_62310" -> "802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"805 Constant_62309" -> "802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"806 Constant_62308" -> "802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"807 onnx^^Conv_638" -> "802 /layer4/layer4.1/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 2048, 1, 1]", style=solid];
-"808 Reshape_965" -> "234 /layer4/layer4.2/conv3/Conv" [label="[1, 2048, 1, 1]", style=solid];
-"809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" -> "233 /layer4/layer4.2/conv3/Conv/WithoutBiases" [label="[2048, 512, 1, 1]", style=solid];
-"810 Constant_62366" -> "809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"811 Constant_62365" -> "809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"812 Constant_62364" -> "809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"813 Constant_62363" -> "809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 1, 1, 1]", style=solid];
-"814 onnx^^Conv_653" -> "809 /layer4/layer4.2/conv3/Conv/WithoutBiases/fq_weights_1" [label="[2048, 512, 1, 1]", style=solid];
-"815 Constant_62361" -> "231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"816 Constant_62360" -> "231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"817 Constant_62359" -> "231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"818 Constant_62358" -> "231 /layer4/layer4.2/relu_1/Relu/fq_output_0" [label="[]", style=solid];
-"819 Reshape_949" -> "225 /layer4/layer4.2/conv2/Conv" [label="[1, 512, 1, 1]", style=solid];
-"820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" -> "222 /layer4/layer4.2/conv2/Conv/WithoutBiases" [label="[512, 512, 3, 3]", style=solid];
-"821 Constant_62356" -> "820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"822 Constant_62355" -> "820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"823 Constant_62354" -> "820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"824 Constant_62353" -> "820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"825 onnx^^Conv_650" -> "820 /layer4/layer4.2/conv2/Conv/WithoutBiases/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"826 Constant_62351" -> "219 /layer4/layer4.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"827 Constant_62350" -> "219 /layer4/layer4.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"828 Constant_62349" -> "219 /layer4/layer4.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"829 Constant_62348" -> "219 /layer4/layer4.2/relu/Relu/fq_output_0" [label="[]", style=solid];
-"830 Reshape_933" -> "212 /layer4/layer4.2/conv1/Conv" [label="[1, 512, 1, 1]", style=solid];
-"831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" -> "208 /layer4/layer4.2/conv1/Conv/WithoutBiases" [label="[512, 2048, 1, 1]", style=solid];
-"832 Constant_62346" -> "831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"833 Constant_62345" -> "831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"834 Constant_62344" -> "831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"835 Constant_62343" -> "831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"836 onnx^^Conv_647" -> "831 /layer4/layer4.2/conv1/Conv/WithoutBiases/fq_weights_1" [label="[512, 2048, 1, 1]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_performance_transformer.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_performance_transformer.dot
deleted file mode 100644
index ccdd526e94d..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_performance_transformer.dot
+++ /dev/null
@@ -1,3842 +0,0 @@
-strict digraph {
-"0 input" [id=0, type=Parameter];
-"1 Multiply_6579" [id=1, type=Multiply];
-"2 Divide_2169" [id=2, type=Add];
-"3 Divide_2169/fq_output_0" [id=3, type=FakeQuantize];
-"4 /patch_embed/proj/Conv/WithoutBiases" [id=4, type=Convolution];
-"5 /patch_embed/proj/Conv" [id=5, type=Add];
-"6 /patch_embed/Reshape" [id=6, type=Reshape];
-"7 /patch_embed/Shape" [id=7, type=ShapeOf];
-"8 /patch_embed/Transpose" [id=8, type=Transpose];
-"9 /patch_embed/Slice" [id=9, type=StridedSlice];
-"10 /patch_embed/norm/Div" [id=10, type=MVN];
-"11 /patch_embed/Concat" [id=11, type=Concat];
-"12 /patch_embed/norm/Mul" [id=12, type=Multiply];
-"13 /patch_embed/norm/Add_1" [id=13, type=Add];
-"14 /layers/layers.0/blocks.0/Add" [id=14, type=Add];
-"15 /layers/layers.0/blocks.0/norm1/Div" [id=15, type=MVN];
-"16 /layers/layers.0/blocks.0/Add_1" [id=16, type=Add];
-"17 /layers/layers.0/blocks.0/norm2/Div" [id=17, type=MVN];
-"18 /layers/layers.0/blocks.0/norm1/Mul" [id=18, type=Multiply];
-"19 /layers/layers.0/blocks.1/Add" [id=19, type=Add];
-"20 /layers/layers.0/blocks.1/norm1/Div" [id=20, type=MVN];
-"21 /layers/layers.0/blocks.0/norm2/Mul" [id=21, type=Multiply];
-"22 /layers/layers.0/blocks.0/norm1/Add_1" [id=22, type=Add];
-"23 /layers/layers.0/blocks.1/Add_1" [id=23, type=Add];
-"24 /layers/layers.0/blocks.1/norm2/Div" [id=24, type=MVN];
-"25 /layers/layers.0/blocks.1/norm1/Mul" [id=25, type=Multiply];
-"26 /layers/layers.0/blocks.0/norm2/Add_1" [id=26, type=Add];
-"27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [id=27, type=FakeQuantize];
-"28 /layers/layers.0/downsample/Reshape" [id=28, type=Reshape];
-"29 /layers/layers.0/blocks.1/norm2/Mul" [id=29, type=Multiply];
-"30 /layers/layers.0/blocks.1/norm1/Add_1" [id=30, type=Add];
-"31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [id=31, type=FakeQuantize];
-"32 /layers/layers.0/blocks.0/Reshape_1" [id=32, type=Reshape];
-"33 /layers/layers.0/downsample/Slice" [id=33, type=StridedSlice];
-"34 /layers/layers.0/downsample/Slice_2" [id=34, type=StridedSlice];
-"35 /layers/layers.0/blocks.1/norm2/Add_1" [id=35, type=Add];
-"36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [id=36, type=FakeQuantize];
-"37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [id=37, type=MatMul];
-"38 /layers/layers.0/blocks.0/Transpose" [id=38, type=Transpose];
-"39 /layers/layers.0/downsample/Slice_1" [id=39, type=StridedSlice];
-"40 /layers/layers.0/downsample/Slice_4" [id=40, type=StridedSlice];
-"41 /layers/layers.0/downsample/Slice_3" [id=41, type=StridedSlice];
-"42 /layers/layers.0/downsample/Slice_5" [id=42, type=StridedSlice];
-"43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [id=43, type=FakeQuantize];
-"44 /layers/layers.0/blocks.1/Reshape" [id=44, type=Reshape];
-"45 /layers/layers.0/blocks.0/mlp/fc1/Add" [id=45, type=Add];
-"46 /layers/layers.0/blocks.0/Reshape_2" [id=46, type=Reshape];
-"47 /layers/layers.0/downsample/Concat" [id=47, type=Concat];
-"48 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [id=48, type=MatMul];
-"49 /layers/layers.0/blocks.1/Slice" [id=49, type=StridedSlice];
-"50 /layers/layers.0/blocks.1/Slice_1" [id=50, type=StridedSlice];
-"51 /layers/layers.0/blocks.0/mlp/act/Mul_1" [id=51, type=Gelu];
-"52 /layers/layers.0/blocks.0/Reshape_3" [id=52, type=Reshape];
-"53 /layers/layers.0/downsample/Reshape_1" [id=53, type=Reshape];
-"54 /layers/layers.0/blocks.1/mlp/fc1/Add" [id=54, type=Add];
-"55 /layers/layers.0/blocks.1/Concat" [id=55, type=Concat];
-"56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [id=56, type=FakeQuantize];
-"57 /layers/layers.0/blocks.0/attn/qkv/MatMul" [id=57, type=MatMul];
-"58 /layers/layers.0/downsample/norm/Div" [id=58, type=MVN];
-"59 /layers/layers.0/blocks.1/mlp/act/Mul_1" [id=59, type=Gelu];
-"60 /layers/layers.0/blocks.1/Slice_2" [id=60, type=StridedSlice];
-"61 /layers/layers.0/blocks.1/Slice_3" [id=61, type=StridedSlice];
-"62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [id=62, type=MatMul];
-"63 /layers/layers.0/blocks.0/attn/qkv/Add" [id=63, type=Add];
-"64 /layers/layers.0/downsample/norm/Mul" [id=64, type=Multiply];
-"65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [id=65, type=FakeQuantize];
-"66 /layers/layers.0/blocks.1/Concat_1" [id=66, type=Concat];
-"67 /layers/layers.0/blocks.0/mlp/fc2/Add" [id=67, type=Add];
-"68 /layers/layers.0/blocks.0/attn/Reshape" [id=68, type=Reshape];
-"69 /layers/layers.0/downsample/norm/Add_1" [id=69, type=Add];
-"70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [id=70, type=MatMul];
-"71 /layers/layers.0/blocks.1/Reshape_1" [id=71, type=Reshape];
-"72 /layers/layers.0/blocks.0/attn/Transpose" [id=72, type=Transpose];
-"73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [id=73, type=FakeQuantize];
-"74 /layers/layers.0/blocks.1/mlp/fc2/Add" [id=74, type=Add];
-"75 /layers/layers.0/blocks.1/Transpose" [id=75, type=Transpose];
-"76 /layers/layers.0/blocks.0/attn/Gather" [id=76, type=Gather];
-"77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [id=77, type=FakeQuantize];
-"78 /layers/layers.0/blocks.0/attn/Gather_2" [id=78, type=Gather];
-"79 /layers/layers.0/downsample/reduction/MatMul" [id=79, type=MatMul];
-"80 /layers/layers.0/blocks.1/Reshape_2" [id=80, type=Reshape];
-"81 /layers/layers.0/blocks.0/attn/Mul" [id=81, type=Multiply];
-"82 /layers/layers.0/blocks.0/attn/Gather_1" [id=82, type=Gather];
-"83 /layers/layers.0/blocks.0/attn/MatMul_1" [id=83, type=MatMul];
-"84 /layers/layers.1/blocks.0/Add" [id=84, type=Add];
-"85 /layers/layers.1/blocks.0/norm1/Div" [id=85, type=MVN];
-"86 /layers/layers.0/blocks.1/Reshape_3" [id=86, type=Reshape];
-"87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [id=87, type=FakeQuantize];
-"88 /layers/layers.0/blocks.0/attn/MatMul" [id=88, type=MatMul];
-"89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [id=89, type=FakeQuantize];
-"90 /layers/layers.1/blocks.0/Add_1" [id=90, type=Add];
-"91 /layers/layers.1/blocks.0/norm2/Div" [id=91, type=MVN];
-"92 /layers/layers.1/blocks.0/norm1/Mul" [id=92, type=Multiply];
-"93 /layers/layers.0/blocks.1/attn/qkv/MatMul" [id=93, type=MatMul];
-"94 /layers/layers.0/blocks.0/attn/Add" [id=94, type=Add];
-"95 /layers/layers.0/blocks.0/attn/Transpose_2" [id=95, type=Transpose];
-"96 /layers/layers.1/blocks.1/Add" [id=96, type=Add];
-"97 /layers/layers.1/blocks.1/norm1/Div" [id=97, type=MVN];
-"98 /layers/layers.1/blocks.0/norm2/Mul" [id=98, type=Multiply];
-"99 /layers/layers.1/blocks.0/norm1/Add_1" [id=99, type=Add];
-"100 /layers/layers.0/blocks.1/attn/qkv/Add" [id=100, type=Add];
-"101 /layers/layers.0/blocks.0/attn/softmax/Softmax" [id=101, type=Softmax];
-"102 /layers/layers.0/blocks.0/attn/Reshape_1" [id=102, type=Reshape];
-"103 /layers/layers.1/blocks.1/Add_1" [id=103, type=Add];
-"104 /layers/layers.1/blocks.1/norm2/Div" [id=104, type=MVN];
-"105 /layers/layers.1/blocks.1/norm1/Mul" [id=105, type=Multiply];
-"106 /layers/layers.1/blocks.0/norm2/Add_1" [id=106, type=Add];
-"107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [id=107, type=FakeQuantize];
-"108 /layers/layers.0/blocks.1/attn/Reshape" [id=108, type=Reshape];
-"109 /layers/layers.0/blocks.0/attn/proj/MatMul" [id=109, type=MatMul];
-"110 /layers/layers.1/downsample/Reshape" [id=110, type=Reshape];
-"111 /layers/layers.1/blocks.1/norm2/Mul" [id=111, type=Multiply];
-"112 /layers/layers.1/blocks.1/norm1/Add_1" [id=112, type=Add];
-"113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [id=113, type=FakeQuantize];
-"114 /layers/layers.1/blocks.0/Reshape_1" [id=114, type=Reshape];
-"115 /layers/layers.0/blocks.1/attn/Transpose" [id=115, type=Transpose];
-"116 /layers/layers.0/blocks.0/attn/proj/Add" [id=116, type=Add];
-"117 /layers/layers.1/downsample/Slice" [id=117, type=StridedSlice];
-"118 /layers/layers.1/downsample/Slice_2" [id=118, type=StridedSlice];
-"119 /layers/layers.1/blocks.1/norm2/Add_1" [id=119, type=Add];
-"120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [id=120, type=FakeQuantize];
-"121 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [id=121, type=MatMul];
-"122 /layers/layers.1/blocks.0/Transpose" [id=122, type=Transpose];
-"123 /layers/layers.0/blocks.1/attn/Gather" [id=123, type=Gather];
-"124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [id=124, type=FakeQuantize];
-"125 /layers/layers.0/blocks.1/attn/Gather_2" [id=125, type=Gather];
-"126 /layers/layers.0/blocks.0/Reshape_4" [id=126, type=Reshape];
-"127 /layers/layers.1/downsample/Slice_1" [id=127, type=StridedSlice];
-"128 /layers/layers.1/downsample/Slice_4" [id=128, type=StridedSlice];
-"129 /layers/layers.1/downsample/Slice_3" [id=129, type=StridedSlice];
-"130 /layers/layers.1/downsample/Slice_5" [id=130, type=StridedSlice];
-"131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [id=131, type=FakeQuantize];
-"132 /layers/layers.1/blocks.1/Reshape" [id=132, type=Reshape];
-"133 /layers/layers.1/blocks.0/mlp/fc1/Add" [id=133, type=Add];
-"134 /layers/layers.1/blocks.0/Reshape_2" [id=134, type=Reshape];
-"135 /layers/layers.0/blocks.1/attn/Mul" [id=135, type=Multiply];
-"136 /layers/layers.0/blocks.1/attn/Gather_1" [id=136, type=Gather];
-"137 /layers/layers.0/blocks.1/attn/MatMul_1" [id=137, type=MatMul];
-"138 /layers/layers.0/blocks.0/Reshape_5" [id=138, type=Reshape];
-"139 /layers/layers.1/downsample/Concat" [id=139, type=Concat];
-"140 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [id=140, type=MatMul];
-"141 /layers/layers.1/blocks.1/Slice" [id=141, type=StridedSlice];
-"142 /layers/layers.1/blocks.1/Slice_1" [id=142, type=StridedSlice];
-"143 /layers/layers.1/blocks.0/mlp/act/Mul_1" [id=143, type=Gelu];
-"144 /layers/layers.1/blocks.0/Reshape_3" [id=144, type=Reshape];
-"145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [id=145, type=FakeQuantize];
-"146 /layers/layers.0/blocks.1/attn/MatMul" [id=146, type=MatMul];
-"147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [id=147, type=FakeQuantize];
-"148 /layers/layers.0/blocks.0/Transpose_1" [id=148, type=Transpose];
-"149 /layers/layers.1/downsample/Reshape_1" [id=149, type=Reshape];
-"150 /layers/layers.1/blocks.1/mlp/fc1/Add" [id=150, type=Add];
-"151 /layers/layers.1/blocks.1/Concat" [id=151, type=Concat];
-"152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [id=152, type=FakeQuantize];
-"153 /layers/layers.1/blocks.0/attn/qkv/MatMul" [id=153, type=MatMul];
-"154 /layers/layers.0/blocks.1/attn/Add" [id=154, type=Add];
-"155 /layers/layers.0/blocks.1/attn/Transpose_2" [id=155, type=Transpose];
-"156 /layers/layers.0/blocks.0/Reshape_6" [id=156, type=Reshape];
-"157 /layers/layers.1/downsample/norm/Div" [id=157, type=MVN];
-"158 /layers/layers.1/blocks.1/mlp/act/Mul_1" [id=158, type=Gelu];
-"159 /layers/layers.1/blocks.1/Slice_2" [id=159, type=StridedSlice];
-"160 /layers/layers.1/blocks.1/Slice_3" [id=160, type=StridedSlice];
-"161 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [id=161, type=MatMul];
-"162 /layers/layers.1/blocks.0/attn/qkv/Add" [id=162, type=Add];
-"163 /layers/layers.0/blocks.1/attn/Reshape_1" [id=163, type=Reshape];
-"164 /layers/layers.0/blocks.1/attn/Reshape_3" [id=164, type=Reshape];
-"165 /layers/layers.0/blocks.0/Reshape_7" [id=165, type=Reshape];
-"166 /layers/layers.1/downsample/norm/Mul" [id=166, type=Multiply];
-"167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [id=167, type=FakeQuantize];
-"168 /layers/layers.1/blocks.1/Concat_1" [id=168, type=Concat];
-"169 /layers/layers.1/blocks.0/mlp/fc2/Add" [id=169, type=Add];
-"170 /layers/layers.1/blocks.0/attn/Reshape" [id=170, type=Reshape];
-"171 /layers/layers.0/blocks.1/attn/Add_1" [id=171, type=Add];
-"172 /layers/layers.0/blocks.1/attn/proj/MatMul" [id=172, type=MatMul];
-"173 /layers/layers.1/downsample/norm/Add_1" [id=173, type=Add];
-"174 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [id=174, type=MatMul];
-"175 /layers/layers.1/blocks.1/Reshape_1" [id=175, type=Reshape];
-"176 /layers/layers.1/blocks.0/attn/Transpose" [id=176, type=Transpose];
-"177 /layers/layers.0/blocks.1/attn/Reshape_2" [id=177, type=Reshape];
-"178 /layers/layers.0/blocks.1/attn/proj/Add" [id=178, type=Add];
-"179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [id=179, type=FakeQuantize];
-"180 /layers/layers.1/blocks.1/mlp/fc2/Add" [id=180, type=Add];
-"181 /layers/layers.1/blocks.1/Transpose" [id=181, type=Transpose];
-"182 /layers/layers.1/blocks.0/attn/Gather" [id=182, type=Gather];
-"183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [id=183, type=FakeQuantize];
-"184 /layers/layers.1/blocks.0/attn/Gather_2" [id=184, type=Gather];
-"185 /layers/layers.0/blocks.1/attn/softmax/Softmax" [id=185, type=Softmax];
-"186 /layers/layers.0/blocks.1/Reshape_4" [id=186, type=Reshape];
-"187 /layers/layers.1/downsample/reduction/MatMul" [id=187, type=MatMul];
-"188 /layers/layers.1/blocks.1/Reshape_2" [id=188, type=Reshape];
-"189 /layers/layers.1/blocks.0/attn/Mul" [id=189, type=Multiply];
-"190 /layers/layers.1/blocks.0/attn/Gather_1" [id=190, type=Gather];
-"191 /layers/layers.1/blocks.0/attn/MatMul_1" [id=191, type=MatMul];
-"192 /layers/layers.0/blocks.1/Reshape_5" [id=192, type=Reshape];
-"193 /layers/layers.2/blocks.0/Add" [id=193, type=Add];
-"194 /layers/layers.2/blocks.0/norm1/Div" [id=194, type=MVN];
-"195 /layers/layers.1/blocks.1/Reshape_3" [id=195, type=Reshape];
-"196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [id=196, type=FakeQuantize];
-"197 /layers/layers.1/blocks.0/attn/MatMul" [id=197, type=MatMul];
-"198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [id=198, type=FakeQuantize];
-"199 /layers/layers.0/blocks.1/Transpose_1" [id=199, type=Transpose];
-"200 /layers/layers.2/blocks.0/Add_1" [id=200, type=Add];
-"201 /layers/layers.2/blocks.0/norm2/Div" [id=201, type=MVN];
-"202 /layers/layers.2/blocks.0/norm1/Mul" [id=202, type=Multiply];
-"203 /layers/layers.1/blocks.1/attn/qkv/MatMul" [id=203, type=MatMul];
-"204 /layers/layers.1/blocks.0/attn/Add" [id=204, type=Add];
-"205 /layers/layers.1/blocks.0/attn/Transpose_2" [id=205, type=Transpose];
-"206 /layers/layers.0/blocks.1/Reshape_6" [id=206, type=Reshape];
-"207 /layers/layers.2/blocks.1/Add" [id=207, type=Add];
-"208 /layers/layers.2/blocks.1/norm1/Div" [id=208, type=MVN];
-"209 /layers/layers.2/blocks.0/norm2/Mul" [id=209, type=Multiply];
-"210 /layers/layers.2/blocks.0/norm1/Add_1" [id=210, type=Add];
-"211 /layers/layers.1/blocks.1/attn/qkv/Add" [id=211, type=Add];
-"212 /layers/layers.1/blocks.0/attn/softmax/Softmax" [id=212, type=Softmax];
-"213 /layers/layers.1/blocks.0/attn/Reshape_1" [id=213, type=Reshape];
-"214 /layers/layers.0/blocks.1/Slice_4" [id=214, type=StridedSlice];
-"215 /layers/layers.0/blocks.1/Slice_5" [id=215, type=StridedSlice];
-"216 /layers/layers.2/blocks.1/Add_1" [id=216, type=Add];
-"217 /layers/layers.2/blocks.1/norm2/Div" [id=217, type=MVN];
-"218 /layers/layers.2/blocks.1/norm1/Mul" [id=218, type=Multiply];
-"219 /layers/layers.2/blocks.0/norm2/Add_1" [id=219, type=Add];
-"220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [id=220, type=FakeQuantize];
-"221 /layers/layers.1/blocks.1/attn/Reshape" [id=221, type=Reshape];
-"222 /layers/layers.1/blocks.0/attn/proj/MatMul" [id=222, type=MatMul];
-"223 /layers/layers.0/blocks.1/Concat_2" [id=223, type=Concat];
-"224 /layers/layers.2/blocks.2/Add" [id=224, type=Add];
-"225 /layers/layers.2/blocks.2/norm1/Div" [id=225, type=MVN];
-"226 /layers/layers.2/blocks.1/norm2/Mul" [id=226, type=Multiply];
-"227 /layers/layers.2/blocks.1/norm1/Add_1" [id=227, type=Add];
-"228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [id=228, type=FakeQuantize];
-"229 /layers/layers.2/blocks.0/Reshape_1" [id=229, type=Reshape];
-"230 /layers/layers.1/blocks.1/attn/Transpose" [id=230, type=Transpose];
-"231 /layers/layers.1/blocks.0/attn/proj/Add" [id=231, type=Add];
-"232 /layers/layers.0/blocks.1/Slice_6" [id=232, type=StridedSlice];
-"233 /layers/layers.0/blocks.1/Slice_7" [id=233, type=StridedSlice];
-"234 /layers/layers.2/blocks.2/Add_1" [id=234, type=Add];
-"235 /layers/layers.2/blocks.2/norm2/Div" [id=235, type=MVN];
-"236 /layers/layers.2/blocks.2/norm1/Mul" [id=236, type=Multiply];
-"237 /layers/layers.2/blocks.1/norm2/Add_1" [id=237, type=Add];
-"238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [id=238, type=FakeQuantize];
-"239 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [id=239, type=MatMul];
-"240 /layers/layers.2/blocks.0/Transpose" [id=240, type=Transpose];
-"241 /layers/layers.1/blocks.1/attn/Gather" [id=241, type=Gather];
-"242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [id=242, type=FakeQuantize];
-"243 /layers/layers.1/blocks.1/attn/Gather_2" [id=243, type=Gather];
-"244 /layers/layers.1/blocks.0/Reshape_4" [id=244, type=Reshape];
-"245 /layers/layers.0/blocks.1/Concat_3" [id=245, type=Concat];
-"246 /layers/layers.2/blocks.3/Add" [id=246, type=Add];
-"247 /layers/layers.2/blocks.3/norm1/Div" [id=247, type=MVN];
-"248 /layers/layers.2/blocks.2/norm2/Mul" [id=248, type=Multiply];
-"249 /layers/layers.2/blocks.2/norm1/Add_1" [id=249, type=Add];
-"250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [id=250, type=FakeQuantize];
-"251 /layers/layers.2/blocks.1/Reshape" [id=251, type=Reshape];
-"252 /layers/layers.2/blocks.0/mlp/fc1/Add" [id=252, type=Add];
-"253 /layers/layers.2/blocks.0/Reshape_2" [id=253, type=Reshape];
-"254 /layers/layers.1/blocks.1/attn/Mul" [id=254, type=Multiply];
-"255 /layers/layers.1/blocks.1/attn/Gather_1" [id=255, type=Gather];
-"256 /layers/layers.1/blocks.1/attn/MatMul_1" [id=256, type=MatMul];
-"257 /layers/layers.1/blocks.0/Reshape_5" [id=257, type=Reshape];
-"258 /layers/layers.0/blocks.1/Reshape_7" [id=258, type=Reshape];
-"259 /layers/layers.2/blocks.3/Add_1" [id=259, type=Add];
-"260 /layers/layers.2/blocks.3/norm2/Div" [id=260, type=MVN];
-"261 /layers/layers.2/blocks.3/norm1/Mul" [id=261, type=Multiply];
-"262 /layers/layers.2/blocks.2/norm2/Add_1" [id=262, type=Add];
-"263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [id=263, type=FakeQuantize];
-"264 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [id=264, type=MatMul];
-"265 /layers/layers.2/blocks.1/Slice" [id=265, type=StridedSlice];
-"266 /layers/layers.2/blocks.1/Slice_1" [id=266, type=StridedSlice];
-"267 /layers/layers.2/blocks.0/mlp/act/Mul_1" [id=267, type=Gelu];
-"268 /layers/layers.2/blocks.0/Reshape_3" [id=268, type=Reshape];
-"269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [id=269, type=FakeQuantize];
-"270 /layers/layers.1/blocks.1/attn/MatMul" [id=270, type=MatMul];
-"271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [id=271, type=FakeQuantize];
-"272 /layers/layers.1/blocks.0/Transpose_1" [id=272, type=Transpose];
-"273 /layers/layers.2/blocks.4/Add" [id=273, type=Add];
-"274 /layers/layers.2/blocks.4/norm1/Div" [id=274, type=MVN];
-"275 /layers/layers.2/blocks.3/norm2/Mul" [id=275, type=Multiply];
-"276 /layers/layers.2/blocks.3/norm1/Add_1" [id=276, type=Add];
-"277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [id=277, type=FakeQuantize];
-"278 /layers/layers.2/blocks.2/Reshape_1" [id=278, type=Reshape];
-"279 /layers/layers.2/blocks.1/mlp/fc1/Add" [id=279, type=Add];
-"280 /layers/layers.2/blocks.1/Concat" [id=280, type=Concat];
-"281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [id=281, type=FakeQuantize];
-"282 /layers/layers.2/blocks.0/attn/qkv/MatMul" [id=282, type=MatMul];
-"283 /layers/layers.1/blocks.1/attn/Add" [id=283, type=Add];
-"284 /layers/layers.1/blocks.1/attn/Transpose_2" [id=284, type=Transpose];
-"285 /layers/layers.1/blocks.0/Reshape_6" [id=285, type=Reshape];
-"286 /layers/layers.2/blocks.4/Add_1" [id=286, type=Add];
-"287 /layers/layers.2/blocks.4/norm2/Div" [id=287, type=MVN];
-"288 /layers/layers.2/blocks.4/norm1/Mul" [id=288, type=Multiply];
-"289 /layers/layers.2/blocks.3/norm2/Add_1" [id=289, type=Add];
-"290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [id=290, type=FakeQuantize];
-"291 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [id=291, type=MatMul];
-"292 /layers/layers.2/blocks.2/Transpose" [id=292, type=Transpose];
-"293 /layers/layers.2/blocks.1/mlp/act/Mul_1" [id=293, type=Gelu];
-"294 /layers/layers.2/blocks.1/Slice_2" [id=294, type=StridedSlice];
-"295 /layers/layers.2/blocks.1/Slice_3" [id=295, type=StridedSlice];
-"296 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [id=296, type=MatMul];
-"297 /layers/layers.2/blocks.0/attn/qkv/Add" [id=297, type=Add];
-"298 /layers/layers.1/blocks.1/attn/Reshape_1" [id=298, type=Reshape];
-"299 /layers/layers.1/blocks.1/attn/Reshape_3" [id=299, type=Reshape];
-"300 /layers/layers.1/blocks.0/Reshape_7" [id=300, type=Reshape];
-"301 /layers/layers.2/blocks.5/Add" [id=301, type=Add];
-"302 /layers/layers.2/blocks.5/norm1/Div" [id=302, type=MVN];
-"303 /layers/layers.2/blocks.4/norm2/Mul" [id=303, type=Multiply];
-"304 /layers/layers.2/blocks.4/norm1/Add_1" [id=304, type=Add];
-"305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [id=305, type=FakeQuantize];
-"306 /layers/layers.2/blocks.3/Reshape" [id=306, type=Reshape];
-"307 /layers/layers.2/blocks.2/mlp/fc1/Add" [id=307, type=Add];
-"308 /layers/layers.2/blocks.2/Reshape_2" [id=308, type=Reshape];
-"309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [id=309, type=FakeQuantize];
-"310 /layers/layers.2/blocks.1/Concat_1" [id=310, type=Concat];
-"311 /layers/layers.2/blocks.0/mlp/fc2/Add" [id=311, type=Add];
-"312 /layers/layers.2/blocks.0/attn/Reshape" [id=312, type=Reshape];
-"313 /layers/layers.1/blocks.1/attn/Add_1" [id=313, type=Add];
-"314 /layers/layers.1/blocks.1/attn/proj/MatMul" [id=314, type=MatMul];
-"315 /layers/layers.2/blocks.5/Add_1" [id=315, type=Add];
-"316 /layers/layers.2/blocks.5/norm2/Div" [id=316, type=MVN];
-"317 /layers/layers.2/blocks.5/norm1/Mul" [id=317, type=Multiply];
-"318 /layers/layers.2/blocks.4/norm2/Add_1" [id=318, type=Add];
-"319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [id=319, type=FakeQuantize];
-"320 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [id=320, type=MatMul];
-"321 /layers/layers.2/blocks.3/Slice" [id=321, type=StridedSlice];
-"322 /layers/layers.2/blocks.3/Slice_1" [id=322, type=StridedSlice];
-"323 /layers/layers.2/blocks.2/mlp/act/Mul_1" [id=323, type=Gelu];
-"324 /layers/layers.2/blocks.2/Reshape_3" [id=324, type=Reshape];
-"325 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [id=325, type=MatMul];
-"326 /layers/layers.2/blocks.1/Reshape_1" [id=326, type=Reshape];
-"327 /layers/layers.2/blocks.0/attn/Transpose" [id=327, type=Transpose];
-"328 /layers/layers.1/blocks.1/attn/Reshape_2" [id=328, type=Reshape];
-"329 /layers/layers.1/blocks.1/attn/proj/Add" [id=329, type=Add];
-"330 /layers/layers.2/downsample/Reshape" [id=330, type=Reshape];
-"331 /layers/layers.2/blocks.5/norm2/Mul" [id=331, type=Multiply];
-"332 /layers/layers.2/blocks.5/norm1/Add_1" [id=332, type=Add];
-"333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [id=333, type=FakeQuantize];
-"334 /layers/layers.2/blocks.4/Reshape_1" [id=334, type=Reshape];
-"335 /layers/layers.2/blocks.3/mlp/fc1/Add" [id=335, type=Add];
-"336 /layers/layers.2/blocks.3/Concat" [id=336, type=Concat];
-"337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [id=337, type=FakeQuantize];
-"338 /layers/layers.2/blocks.2/attn/qkv/MatMul" [id=338, type=MatMul];
-"339 /layers/layers.2/blocks.1/mlp/fc2/Add" [id=339, type=Add];
-"340 /layers/layers.2/blocks.1/Transpose" [id=340, type=Transpose];
-"341 /layers/layers.2/blocks.0/attn/Gather" [id=341, type=Gather];
-"342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [id=342, type=FakeQuantize];
-"343 /layers/layers.2/blocks.0/attn/Gather_2" [id=343, type=Gather];
-"344 /layers/layers.1/blocks.1/attn/softmax/Softmax" [id=344, type=Softmax];
-"345 /layers/layers.1/blocks.1/Reshape_4" [id=345, type=Reshape];
-"346 /layers/layers.2/downsample/Slice" [id=346, type=StridedSlice];
-"347 /layers/layers.2/downsample/Slice_2" [id=347, type=StridedSlice];
-"348 /layers/layers.2/blocks.5/norm2/Add_1" [id=348, type=Add];
-"349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [id=349, type=FakeQuantize];
-"350 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [id=350, type=MatMul];
-"351 /layers/layers.2/blocks.4/Transpose" [id=351, type=Transpose];
-"352 /layers/layers.2/blocks.3/mlp/act/Mul_1" [id=352, type=Gelu];
-"353 /layers/layers.2/blocks.3/Slice_2" [id=353, type=StridedSlice];
-"354 /layers/layers.2/blocks.3/Slice_3" [id=354, type=StridedSlice];
-"355 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [id=355, type=MatMul];
-"356 /layers/layers.2/blocks.2/attn/qkv/Add" [id=356, type=Add];
-"357 /layers/layers.2/blocks.1/Reshape_2" [id=357, type=Reshape];
-"358 /layers/layers.2/blocks.0/attn/Mul" [id=358, type=Multiply];
-"359 /layers/layers.2/blocks.0/attn/Gather_1" [id=359, type=Gather];
-"360 /layers/layers.2/blocks.0/attn/MatMul_1" [id=360, type=MatMul];
-"361 /layers/layers.1/blocks.1/Reshape_5" [id=361, type=Reshape];
-"362 /layers/layers.2/downsample/Slice_1" [id=362, type=StridedSlice];
-"363 /layers/layers.2/downsample/Slice_4" [id=363, type=StridedSlice];
-"364 /layers/layers.2/downsample/Slice_3" [id=364, type=StridedSlice];
-"365 /layers/layers.2/downsample/Slice_5" [id=365, type=StridedSlice];
-"366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [id=366, type=FakeQuantize];
-"367 /layers/layers.2/blocks.5/Reshape" [id=367, type=Reshape];
-"368 /layers/layers.2/blocks.4/mlp/fc1/Add" [id=368, type=Add];
-"369 /layers/layers.2/blocks.4/Reshape_2" [id=369, type=Reshape];
-"370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [id=370, type=FakeQuantize];
-"371 /layers/layers.2/blocks.3/Concat_1" [id=371, type=Concat];
-"372 /layers/layers.2/blocks.2/mlp/fc2/Add" [id=372, type=Add];
-"373 /layers/layers.2/blocks.2/attn/Reshape" [id=373, type=Reshape];
-"374 /layers/layers.2/blocks.1/Reshape_3" [id=374, type=Reshape];
-"375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [id=375, type=FakeQuantize];
-"376 /layers/layers.2/blocks.0/attn/MatMul" [id=376, type=MatMul];
-"377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [id=377, type=FakeQuantize];
-"378 /layers/layers.1/blocks.1/Transpose_1" [id=378, type=Transpose];
-"379 /layers/layers.2/downsample/Concat" [id=379, type=Concat];
-"380 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [id=380, type=MatMul];
-"381 /layers/layers.2/blocks.5/Slice" [id=381, type=StridedSlice];
-"382 /layers/layers.2/blocks.5/Slice_1" [id=382, type=StridedSlice];
-"383 /layers/layers.2/blocks.4/mlp/act/Mul_1" [id=383, type=Gelu];
-"384 /layers/layers.2/blocks.4/Reshape_3" [id=384, type=Reshape];
-"385 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [id=385, type=MatMul];
-"386 /layers/layers.2/blocks.3/Reshape_1" [id=386, type=Reshape];
-"387 /layers/layers.2/blocks.2/attn/Transpose" [id=387, type=Transpose];
-"388 /layers/layers.2/blocks.1/attn/qkv/MatMul" [id=388, type=MatMul];
-"389 /layers/layers.2/blocks.0/attn/Add" [id=389, type=Add];
-"390 /layers/layers.2/blocks.0/attn/Transpose_2" [id=390, type=Transpose];
-"391 /layers/layers.1/blocks.1/Reshape_6" [id=391, type=Reshape];
-"392 /layers/layers.2/downsample/Reshape_1" [id=392, type=Reshape];
-"393 /layers/layers.2/blocks.5/mlp/fc1/Add" [id=393, type=Add];
-"394 /layers/layers.2/blocks.5/Concat" [id=394, type=Concat];
-"395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [id=395, type=FakeQuantize];
-"396 /layers/layers.2/blocks.4/attn/qkv/MatMul" [id=396, type=MatMul];
-"397 /layers/layers.2/blocks.3/mlp/fc2/Add" [id=397, type=Add];
-"398 /layers/layers.2/blocks.3/Transpose" [id=398, type=Transpose];
-"399 /layers/layers.2/blocks.2/attn/Gather" [id=399, type=Gather];
-"400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [id=400, type=FakeQuantize];
-"401 /layers/layers.2/blocks.2/attn/Gather_2" [id=401, type=Gather];
-"402 /layers/layers.2/blocks.1/attn/qkv/Add" [id=402, type=Add];
-"403 /layers/layers.2/blocks.0/attn/softmax/Softmax" [id=403, type=Softmax];
-"404 /layers/layers.2/blocks.0/attn/Reshape_1" [id=404, type=Reshape];
-"405 /layers/layers.1/blocks.1/Slice_4" [id=405, type=StridedSlice];
-"406 /layers/layers.1/blocks.1/Slice_5" [id=406, type=StridedSlice];
-"407 /layers/layers.2/downsample/norm/Div" [id=407, type=MVN];
-"408 /layers/layers.2/blocks.5/mlp/act/Mul_1" [id=408, type=Gelu];
-"409 /layers/layers.2/blocks.5/Slice_2" [id=409, type=StridedSlice];
-"410 /layers/layers.2/blocks.5/Slice_3" [id=410, type=StridedSlice];
-"411 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [id=411, type=MatMul];
-"412 /layers/layers.2/blocks.4/attn/qkv/Add" [id=412, type=Add];
-"413 /layers/layers.2/blocks.3/Reshape_2" [id=413, type=Reshape];
-"414 /layers/layers.2/blocks.2/attn/Mul" [id=414, type=Multiply];
-"415 /layers/layers.2/blocks.2/attn/Gather_1" [id=415, type=Gather];
-"416 /layers/layers.2/blocks.2/attn/MatMul_1" [id=416, type=MatMul];
-"417 /layers/layers.2/blocks.1/attn/Reshape" [id=417, type=Reshape];
-"418 /layers/layers.2/blocks.0/attn/proj/MatMul" [id=418, type=MatMul];
-"419 /layers/layers.1/blocks.1/Concat_2" [id=419, type=Concat];
-"420 /layers/layers.2/downsample/norm/Mul" [id=420, type=Multiply];
-"421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [id=421, type=FakeQuantize];
-"422 /layers/layers.2/blocks.5/Concat_1" [id=422, type=Concat];
-"423 /layers/layers.2/blocks.4/mlp/fc2/Add" [id=423, type=Add];
-"424 /layers/layers.2/blocks.4/attn/Reshape" [id=424, type=Reshape];
-"425 /layers/layers.2/blocks.3/Reshape_3" [id=425, type=Reshape];
-"426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [id=426, type=FakeQuantize];
-"427 /layers/layers.2/blocks.2/attn/MatMul" [id=427, type=MatMul];
-"428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [id=428, type=FakeQuantize];
-"429 /layers/layers.2/blocks.1/attn/Transpose" [id=429, type=Transpose];
-"430 /layers/layers.2/blocks.0/attn/proj/Add" [id=430, type=Add];
-"431 /layers/layers.1/blocks.1/Slice_6" [id=431, type=StridedSlice];
-"432 /layers/layers.1/blocks.1/Slice_7" [id=432, type=StridedSlice];
-"433 /layers/layers.2/downsample/norm/Add_1" [id=433, type=Add];
-"434 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [id=434, type=MatMul];
-"435 /layers/layers.2/blocks.5/Reshape_1" [id=435, type=Reshape];
-"436 /layers/layers.2/blocks.4/attn/Transpose" [id=436, type=Transpose];
-"437 /layers/layers.2/blocks.3/attn/qkv/MatMul" [id=437, type=MatMul];
-"438 /layers/layers.2/blocks.2/attn/Add" [id=438, type=Add];
-"439 /layers/layers.2/blocks.2/attn/Transpose_2" [id=439, type=Transpose];
-"440 /layers/layers.2/blocks.1/attn/Gather" [id=440, type=Gather];
-"441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [id=441, type=FakeQuantize];
-"442 /layers/layers.2/blocks.1/attn/Gather_2" [id=442, type=Gather];
-"443 /layers/layers.2/blocks.0/Reshape_4" [id=443, type=Reshape];
-"444 /layers/layers.1/blocks.1/Concat_3" [id=444, type=Concat];
-"445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [id=445, type=FakeQuantize];
-"446 /layers/layers.2/blocks.5/mlp/fc2/Add" [id=446, type=Add];
-"447 /layers/layers.2/blocks.5/Transpose" [id=447, type=Transpose];
-"448 /layers/layers.2/blocks.4/attn/Gather" [id=448, type=Gather];
-"449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [id=449, type=FakeQuantize];
-"450 /layers/layers.2/blocks.4/attn/Gather_2" [id=450, type=Gather];
-"451 /layers/layers.2/blocks.3/attn/qkv/Add" [id=451, type=Add];
-"452 /layers/layers.2/blocks.2/attn/softmax/Softmax" [id=452, type=Softmax];
-"453 /layers/layers.2/blocks.2/attn/Reshape_1" [id=453, type=Reshape];
-"454 /layers/layers.2/blocks.1/attn/Mul" [id=454, type=Multiply];
-"455 /layers/layers.2/blocks.1/attn/Gather_1" [id=455, type=Gather];
-"456 /layers/layers.2/blocks.1/attn/MatMul_1" [id=456, type=MatMul];
-"457 /layers/layers.2/blocks.0/Reshape_5" [id=457, type=Reshape];
-"458 /layers/layers.1/blocks.1/Reshape_7" [id=458, type=Reshape];
-"459 /layers/layers.2/downsample/reduction/MatMul" [id=459, type=MatMul];
-"460 /layers/layers.2/blocks.5/Reshape_2" [id=460, type=Reshape];
-"461 /layers/layers.2/blocks.4/attn/Mul" [id=461, type=Multiply];
-"462 /layers/layers.2/blocks.4/attn/Gather_1" [id=462, type=Gather];
-"463 /layers/layers.2/blocks.4/attn/MatMul_1" [id=463, type=MatMul];
-"464 /layers/layers.2/blocks.3/attn/Reshape" [id=464, type=Reshape];
-"465 /layers/layers.2/blocks.2/attn/proj/MatMul" [id=465, type=MatMul];
-"466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [id=466, type=FakeQuantize];
-"467 /layers/layers.2/blocks.1/attn/MatMul" [id=467, type=MatMul];
-"468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [id=468, type=FakeQuantize];
-"469 /layers/layers.2/blocks.0/Transpose_1" [id=469, type=Transpose];
-"470 /layers/layers.3/blocks.0/Add" [id=470, type=Add];
-"471 /layers/layers.3/blocks.0/norm1/Div" [id=471, type=MVN];
-"472 /layers/layers.2/blocks.5/Reshape_3" [id=472, type=Reshape];
-"473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [id=473, type=FakeQuantize];
-"474 /layers/layers.2/blocks.4/attn/MatMul" [id=474, type=MatMul];
-"475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [id=475, type=FakeQuantize];
-"476 /layers/layers.2/blocks.3/attn/Transpose" [id=476, type=Transpose];
-"477 /layers/layers.2/blocks.2/attn/proj/Add" [id=477, type=Add];
-"478 /layers/layers.2/blocks.1/attn/Add" [id=478, type=Add];
-"479 /layers/layers.2/blocks.1/attn/Transpose_2" [id=479, type=Transpose];
-"480 /layers/layers.2/blocks.0/Reshape_6" [id=480, type=Reshape];
-"481 /layers/layers.3/blocks.0/Add_1" [id=481, type=Add];
-"482 /layers/layers.3/blocks.0/norm2/Div" [id=482, type=MVN];
-"483 /layers/layers.3/blocks.0/norm1/Mul" [id=483, type=Multiply];
-"484 /layers/layers.2/blocks.5/attn/qkv/MatMul" [id=484, type=MatMul];
-"485 /layers/layers.2/blocks.4/attn/Add" [id=485, type=Add];
-"486 /layers/layers.2/blocks.4/attn/Transpose_2" [id=486, type=Transpose];
-"487 /layers/layers.2/blocks.3/attn/Gather" [id=487, type=Gather];
-"488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [id=488, type=FakeQuantize];
-"489 /layers/layers.2/blocks.3/attn/Gather_2" [id=489, type=Gather];
-"490 /layers/layers.2/blocks.2/Reshape_4" [id=490, type=Reshape];
-"491 /layers/layers.2/blocks.1/attn/Reshape_1" [id=491, type=Reshape];
-"492 /layers/layers.2/blocks.1/attn/Reshape_3" [id=492, type=Reshape];
-"493 /layers/layers.2/blocks.0/Reshape_7" [id=493, type=Reshape];
-"494 /layers/layers.3/blocks.1/Add" [id=494, type=Add];
-"495 /layers/layers.3/blocks.1/norm1/Div" [id=495, type=MVN];
-"496 /layers/layers.3/blocks.0/norm2/Mul" [id=496, type=Multiply];
-"497 /layers/layers.3/blocks.0/norm1/Add_1" [id=497, type=Add];
-"498 /layers/layers.2/blocks.5/attn/qkv/Add" [id=498, type=Add];
-"499 /layers/layers.2/blocks.4/attn/softmax/Softmax" [id=499, type=Softmax];
-"500 /layers/layers.2/blocks.4/attn/Reshape_1" [id=500, type=Reshape];
-"501 /layers/layers.2/blocks.3/attn/Mul" [id=501, type=Multiply];
-"502 /layers/layers.2/blocks.3/attn/Gather_1" [id=502, type=Gather];
-"503 /layers/layers.2/blocks.3/attn/MatMul_1" [id=503, type=MatMul];
-"504 /layers/layers.2/blocks.2/Reshape_5" [id=504, type=Reshape];
-"505 /layers/layers.2/blocks.1/attn/Add_1" [id=505, type=Add];
-"506 /layers/layers.2/blocks.1/attn/proj/MatMul" [id=506, type=MatMul];
-"507 /layers/layers.3/blocks.1/Add_1" [id=507, type=Add];
-"508 /layers/layers.3/blocks.1/norm2/Div" [id=508, type=MVN];
-"509 /layers/layers.3/blocks.1/norm1/Mul" [id=509, type=Multiply];
-"510 /layers/layers.3/blocks.0/norm2/Add_1" [id=510, type=Add];
-"511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [id=511, type=FakeQuantize];
-"512 /layers/layers.2/blocks.5/attn/Reshape" [id=512, type=Reshape];
-"513 /layers/layers.2/blocks.4/attn/proj/MatMul" [id=513, type=MatMul];
-"514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [id=514, type=FakeQuantize];
-"515 /layers/layers.2/blocks.3/attn/MatMul" [id=515, type=MatMul];
-"516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [id=516, type=FakeQuantize];
-"517 /layers/layers.2/blocks.2/Transpose_1" [id=517, type=Transpose];
-"518 /layers/layers.2/blocks.1/attn/Reshape_2" [id=518, type=Reshape];
-"519 /layers/layers.2/blocks.1/attn/proj/Add" [id=519, type=Add];
-"520 /norm/Div" [id=520, type=MVN];
-"521 /layers/layers.3/blocks.1/norm2/Mul" [id=521, type=Multiply];
-"522 /layers/layers.3/blocks.1/norm1/Add_1" [id=522, type=Add];
-"523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [id=523, type=FakeQuantize];
-"524 /layers/layers.3/blocks.0/Reshape_1" [id=524, type=Reshape];
-"525 /layers/layers.2/blocks.5/attn/Transpose" [id=525, type=Transpose];
-"526 /layers/layers.2/blocks.4/attn/proj/Add" [id=526, type=Add];
-"527 /layers/layers.2/blocks.3/attn/Add" [id=527, type=Add];
-"528 /layers/layers.2/blocks.3/attn/Transpose_2" [id=528, type=Transpose];
-"529 /layers/layers.2/blocks.2/Reshape_6" [id=529, type=Reshape];
-"530 /layers/layers.2/blocks.1/attn/softmax/Softmax" [id=530, type=Softmax];
-"531 /layers/layers.2/blocks.1/Reshape_4" [id=531, type=Reshape];
-"532 /norm/Mul" [id=532, type=Multiply];
-"533 /layers/layers.3/blocks.1/norm2/Add_1" [id=533, type=Add];
-"534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [id=534, type=FakeQuantize];
-"535 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [id=535, type=MatMul];
-"536 /layers/layers.3/blocks.0/Transpose" [id=536, type=Reshape];
-"537 /layers/layers.2/blocks.5/attn/Gather" [id=537, type=Gather];
-"538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [id=538, type=FakeQuantize];
-"539 /layers/layers.2/blocks.5/attn/Gather_2" [id=539, type=Gather];
-"540 /layers/layers.2/blocks.4/Reshape_4" [id=540, type=Reshape];
-"541 /layers/layers.2/blocks.3/attn/Reshape_1" [id=541, type=Reshape];
-"542 /layers/layers.2/blocks.3/attn/Reshape_3" [id=542, type=Reshape];
-"543 /layers/layers.2/blocks.2/Reshape_7" [id=543, type=Reshape];
-"544 /layers/layers.2/blocks.1/Reshape_5" [id=544, type=Reshape];
-"545 /norm/Add_1" [id=545, type=Add];
-"546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [id=546, type=FakeQuantize];
-"547 /layers/layers.3/blocks.1/Reshape_1" [id=547, type=Reshape];
-"548 /layers/layers.3/blocks.0/mlp/fc1/Add" [id=548, type=Add];
-"549 /layers/layers.3/blocks.0/Reshape_2" [id=549, type=Reshape];
-"550 /layers/layers.2/blocks.5/attn/Mul" [id=550, type=Multiply];
-"551 /layers/layers.2/blocks.5/attn/Gather_1" [id=551, type=Gather];
-"552 /layers/layers.2/blocks.5/attn/MatMul_1" [id=552, type=MatMul];
-"553 /layers/layers.2/blocks.4/Reshape_5" [id=553, type=Reshape];
-"554 /layers/layers.2/blocks.3/attn/Add_1" [id=554, type=Add];
-"555 /layers/layers.2/blocks.3/attn/proj/MatMul" [id=555, type=MatMul];
-"556 /layers/layers.2/blocks.1/Transpose_1" [id=556, type=Transpose];
-"557 ReduceMean_6037" [id=557, type=ReduceMean];
-"558 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [id=558, type=MatMul];
-"559 /layers/layers.3/blocks.1/Transpose" [id=559, type=Reshape];
-"560 /layers/layers.3/blocks.0/mlp/act/Mul_1" [id=560, type=Gelu];
-"561 /layers/layers.3/blocks.0/Reshape_3" [id=561, type=Reshape];
-"562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [id=562, type=FakeQuantize];
-"563 /layers/layers.2/blocks.5/attn/MatMul" [id=563, type=MatMul];
-"564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [id=564, type=FakeQuantize];
-"565 /layers/layers.2/blocks.4/Transpose_1" [id=565, type=Transpose];
-"566 /layers/layers.2/blocks.3/attn/Reshape_2" [id=566, type=Reshape];
-"567 /layers/layers.2/blocks.3/attn/proj/Add" [id=567, type=Add];
-"568 /layers/layers.2/blocks.1/Reshape_6" [id=568, type=Reshape];
-"569 ReduceMean_6037/fq_output_0" [id=569, type=FakeQuantize];
-"570 /layers/layers.3/blocks.1/mlp/fc1/Add" [id=570, type=Add];
-"571 /layers/layers.3/blocks.1/Reshape_2" [id=571, type=Reshape];
-"572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [id=572, type=FakeQuantize];
-"573 /layers/layers.3/blocks.0/attn/qkv/MatMul" [id=573, type=MatMul];
-"574 /layers/layers.2/blocks.5/attn/Add" [id=574, type=Add];
-"575 /layers/layers.2/blocks.5/attn/Transpose_2" [id=575, type=Transpose];
-"576 /layers/layers.2/blocks.4/Reshape_6" [id=576, type=Reshape];
-"577 /layers/layers.2/blocks.3/attn/softmax/Softmax" [id=577, type=Softmax];
-"578 /layers/layers.2/blocks.3/Reshape_4" [id=578, type=Reshape];
-"579 /layers/layers.2/blocks.1/Slice_4" [id=579, type=StridedSlice];
-"580 /layers/layers.2/blocks.1/Slice_5" [id=580, type=StridedSlice];
-"581 /avgpool/GlobalAveragePool" [id=581, type=Reshape];
-"582 /layers/layers.3/blocks.1/mlp/act/Mul_1" [id=582, type=Gelu];
-"583 /layers/layers.3/blocks.1/Reshape_3" [id=583, type=Reshape];
-"584 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [id=584, type=MatMul];
-"585 /layers/layers.3/blocks.0/attn/qkv/Add" [id=585, type=Add];
-"586 /layers/layers.2/blocks.5/attn/Reshape_1" [id=586, type=Reshape];
-"587 /layers/layers.2/blocks.5/attn/Reshape_3" [id=587, type=Reshape];
-"588 /layers/layers.2/blocks.4/Reshape_7" [id=588, type=Reshape];
-"589 /layers/layers.2/blocks.3/Reshape_5" [id=589, type=Reshape];
-"590 /layers/layers.2/blocks.1/Concat_2" [id=590, type=Concat];
-"591 /Flatten" [id=591, type=Reshape];
-"592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [id=592, type=FakeQuantize];
-"593 /layers/layers.3/blocks.1/attn/qkv/MatMul" [id=593, type=MatMul];
-"594 /layers/layers.3/blocks.0/mlp/fc2/Add" [id=594, type=Add];
-"595 /layers/layers.3/blocks.0/attn/Reshape" [id=595, type=Reshape];
-"596 /layers/layers.2/blocks.5/attn/Add_1" [id=596, type=Add];
-"597 /layers/layers.2/blocks.5/attn/proj/MatMul" [id=597, type=MatMul];
-"598 /layers/layers.2/blocks.3/Transpose_1" [id=598, type=Transpose];
-"599 /layers/layers.2/blocks.1/Slice_6" [id=599, type=StridedSlice];
-"600 /layers/layers.2/blocks.1/Slice_7" [id=600, type=StridedSlice];
-"601 /head/Gemm/WithoutBiases" [id=601, type=MatMul];
-"602 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [id=602, type=MatMul];
-"603 /layers/layers.3/blocks.1/attn/qkv/Add" [id=603, type=Add];
-"604 /layers/layers.3/blocks.0/attn/Transpose" [id=604, type=Transpose];
-"605 /layers/layers.2/blocks.5/attn/Reshape_2" [id=605, type=Reshape];
-"606 /layers/layers.2/blocks.5/attn/proj/Add" [id=606, type=Add];
-"607 /layers/layers.2/blocks.3/Reshape_6" [id=607, type=Reshape];
-"608 /layers/layers.2/blocks.1/Concat_3" [id=608, type=Concat];
-"609 probs" [id=609, type=Add];
-"610 /layers/layers.3/blocks.1/mlp/fc2/Add" [id=610, type=Add];
-"611 /layers/layers.3/blocks.1/attn/Reshape" [id=611, type=Reshape];
-"612 /layers/layers.3/blocks.0/attn/Gather" [id=612, type=Gather];
-"613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [id=613, type=FakeQuantize];
-"614 /layers/layers.3/blocks.0/attn/Gather_2" [id=614, type=Gather];
-"615 /layers/layers.2/blocks.5/attn/softmax/Softmax" [id=615, type=Softmax];
-"616 /layers/layers.2/blocks.5/Reshape_4" [id=616, type=Reshape];
-"617 /layers/layers.2/blocks.3/Slice_4" [id=617, type=StridedSlice];
-"618 /layers/layers.2/blocks.3/Slice_5" [id=618, type=StridedSlice];
-"619 /layers/layers.2/blocks.1/Reshape_7" [id=619, type=Reshape];
-"620 probs/sink_port_0" [id=620, type=Result];
-"621 /layers/layers.3/blocks.1/attn/Transpose" [id=621, type=Transpose];
-"622 /layers/layers.3/blocks.0/attn/Mul" [id=622, type=Multiply];
-"623 /layers/layers.3/blocks.0/attn/Gather_1" [id=623, type=Gather];
-"624 /layers/layers.3/blocks.0/attn/MatMul_1" [id=624, type=MatMul];
-"625 /layers/layers.2/blocks.5/Reshape_5" [id=625, type=Reshape];
-"626 /layers/layers.2/blocks.3/Concat_2" [id=626, type=Concat];
-"627 /layers/layers.3/blocks.1/attn/Gather" [id=627, type=Gather];
-"628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [id=628, type=FakeQuantize];
-"629 /layers/layers.3/blocks.1/attn/Gather_2" [id=629, type=Gather];
-"630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [id=630, type=FakeQuantize];
-"631 /layers/layers.3/blocks.0/attn/MatMul" [id=631, type=MatMul];
-"632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [id=632, type=FakeQuantize];
-"633 /layers/layers.2/blocks.5/Transpose_1" [id=633, type=Transpose];
-"634 /layers/layers.2/blocks.3/Slice_6" [id=634, type=StridedSlice];
-"635 /layers/layers.2/blocks.3/Slice_7" [id=635, type=StridedSlice];
-"636 /layers/layers.3/blocks.1/attn/Mul" [id=636, type=Multiply];
-"637 /layers/layers.3/blocks.1/attn/Gather_1" [id=637, type=Gather];
-"638 /layers/layers.3/blocks.1/attn/MatMul_1" [id=638, type=MatMul];
-"639 /layers/layers.3/blocks.0/attn/Add" [id=639, type=Add];
-"640 /layers/layers.3/blocks.0/attn/Transpose_2" [id=640, type=Transpose];
-"641 /layers/layers.2/blocks.5/Reshape_6" [id=641, type=Reshape];
-"642 /layers/layers.2/blocks.3/Concat_3" [id=642, type=Concat];
-"643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [id=643, type=FakeQuantize];
-"644 /layers/layers.3/blocks.1/attn/MatMul" [id=644, type=MatMul];
-"645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [id=645, type=FakeQuantize];
-"646 /layers/layers.3/blocks.0/attn/softmax/Softmax" [id=646, type=Softmax];
-"647 /layers/layers.3/blocks.0/attn/Reshape_1" [id=647, type=Reshape];
-"648 /layers/layers.2/blocks.5/Slice_4" [id=648, type=StridedSlice];
-"649 /layers/layers.2/blocks.5/Slice_5" [id=649, type=StridedSlice];
-"650 /layers/layers.2/blocks.3/Reshape_7" [id=650, type=Reshape];
-"651 /layers/layers.3/blocks.1/attn/Add" [id=651, type=Add];
-"652 /layers/layers.3/blocks.1/attn/Transpose_2" [id=652, type=Transpose];
-"653 /layers/layers.3/blocks.0/attn/proj/MatMul" [id=653, type=MatMul];
-"654 /layers/layers.2/blocks.5/Concat_2" [id=654, type=Concat];
-"655 /layers/layers.3/blocks.1/attn/softmax/Softmax" [id=655, type=Softmax];
-"656 /layers/layers.3/blocks.1/attn/Reshape_1" [id=656, type=Reshape];
-"657 /layers/layers.3/blocks.0/attn/proj/Add" [id=657, type=Add];
-"658 /layers/layers.2/blocks.5/Slice_6" [id=658, type=StridedSlice];
-"659 /layers/layers.2/blocks.5/Slice_7" [id=659, type=StridedSlice];
-"660 /layers/layers.3/blocks.1/attn/proj/MatMul" [id=660, type=MatMul];
-"661 /layers/layers.3/blocks.0/Reshape_4" [id=661, type=Reshape];
-"662 /layers/layers.2/blocks.5/Concat_3" [id=662, type=Concat];
-"663 /layers/layers.3/blocks.1/attn/proj/Add" [id=663, type=Add];
-"664 /layers/layers.3/blocks.0/Reshape_5" [id=664, type=Reshape];
-"665 /layers/layers.2/blocks.5/Reshape_7" [id=665, type=Reshape];
-"666 /layers/layers.3/blocks.1/Reshape_4" [id=666, type=Reshape];
-"667 /layers/layers.3/blocks.0/Transpose_1" [id=667, type=Reshape];
-"668 /layers/layers.3/blocks.1/Reshape_5" [id=668, type=Reshape];
-"669 /layers/layers.3/blocks.0/Reshape_6" [id=669, type=Reshape];
-"670 /layers/layers.3/blocks.1/Transpose_1" [id=670, type=Reshape];
-"671 /layers/layers.3/blocks.0/Reshape_7" [id=671, type=Reshape];
-"672 /layers/layers.3/blocks.1/Reshape_6" [id=672, type=Reshape];
-"673 /layers/layers.3/blocks.1/Reshape_7" [id=673, type=Reshape];
-"674 Constant_7401" [id=674, type=Constant];
-"675 /head/Gemm/WithoutBiases/fq_weights_1" [id=675, type=FakeQuantize];
-"676 Constant_28109" [id=676, type=Constant];
-"677 Constant_28108" [id=677, type=Constant];
-"678 Constant_28107" [id=678, type=Constant];
-"679 Constant_28106" [id=679, type=Constant];
-"680 head.weight" [id=680, type=Constant];
-"681 Constant_2148" [id=681, type=Constant];
-"682 Constant_6567" [id=682, type=Constant];
-"683 Constant_28104" [id=683, type=Constant];
-"684 Constant_28103" [id=684, type=Constant];
-"685 Constant_28102" [id=685, type=Constant];
-"686 Constant_28101" [id=686, type=Constant];
-"687 Constant_6036" [id=687, type=Constant];
-"688 Constant_7400" [id=688, type=Constant];
-"689 Constant_7399" [id=689, type=Constant];
-"690 Constant_2123" [id=690, type=Constant];
-"691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [id=691, type=FakeQuantize];
-"692 Constant_28099" [id=692, type=Constant];
-"693 Constant_28098" [id=693, type=Constant];
-"694 Constant_28097" [id=694, type=Constant];
-"695 Constant_28096" [id=695, type=Constant];
-"696 Transpose_6564" [id=696, type=Constant];
-"697 Constant_28094" [id=697, type=Constant];
-"698 Constant_28093" [id=698, type=Constant];
-"699 Constant_28092" [id=699, type=Constant];
-"700 Constant_28091" [id=700, type=Constant];
-"701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [id=701, type=FakeQuantize];
-"702 Constant_28089" [id=702, type=Constant];
-"703 Constant_28088" [id=703, type=Constant];
-"704 Constant_28087" [id=704, type=Constant];
-"705 Constant_28086" [id=705, type=Constant];
-"706 Transpose_6560" [id=706, type=Constant];
-"707 Constant_28084" [id=707, type=Constant];
-"708 Constant_28083" [id=708, type=Constant];
-"709 Constant_28082" [id=709, type=Constant];
-"710 Constant_28081" [id=710, type=Constant];
-"711 Constant_7396" [id=711, type=Constant];
-"712 Constant_7395" [id=712, type=Constant];
-"713 Constant_2097" [id=713, type=Constant];
-"714 /layers/layers.3/blocks.1/Constant_7" [id=714, type=Constant];
-"715 /layers/layers.3/blocks.1/Constant_6" [id=715, type=Constant];
-"716 Constant_6554" [id=716, type=Constant];
-"717 /layers/layers.3/blocks.1/Constant_5" [id=717, type=Constant];
-"718 /layers/layers.3/blocks.1/Constant_4" [id=718, type=Constant];
-"719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [id=719, type=FakeQuantize];
-"720 Constant_28079" [id=720, type=Constant];
-"721 Constant_28078" [id=721, type=Constant];
-"722 Constant_28077" [id=722, type=Constant];
-"723 Constant_28076" [id=723, type=Constant];
-"724 Transpose_6552" [id=724, type=Constant];
-"725 /layers/layers.3/blocks.1/attn/Constant_2" [id=725, type=Constant];
-"726 Constant_2070" [id=726, type=Constant];
-"727 Constant_28074" [id=727, type=Constant];
-"728 Constant_28073" [id=728, type=Constant];
-"729 Constant_28072" [id=729, type=Constant];
-"730 Constant_28071" [id=730, type=Constant];
-"731 Constant_2060" [id=731, type=Constant];
-"732 /patch_embed/Constant" [id=732, type=Constant];
-"733 Constant_2054" [id=733, type=Constant];
-"734 /layers/layers.3/blocks.1/attn/Constant" [id=734, type=Constant];
-"735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [id=735, type=FakeQuantize];
-"736 Constant_28059" [id=736, type=Constant];
-"737 Constant_28058" [id=737, type=Constant];
-"738 Constant_28057" [id=738, type=Constant];
-"739 Constant_28056" [id=739, type=Constant];
-"740 Transpose_6549" [id=740, type=Constant];
-"741 /layers/layers.3/blocks.1/Constant_3" [id=741, type=Constant];
-"742 /layers/layers.3/blocks.1/Constant_2" [id=742, type=Constant];
-"743 Constant_6544" [id=743, type=Constant];
-"744 /layers/layers.3/blocks.1/Constant_1" [id=744, type=Constant];
-"745 Constant_28054" [id=745, type=Constant];
-"746 Constant_28053" [id=746, type=Constant];
-"747 Constant_28052" [id=747, type=Constant];
-"748 Constant_28051" [id=748, type=Constant];
-"749 Constant_7391" [id=749, type=Constant];
-"750 Constant_7390" [id=750, type=Constant];
-"751 Constant_2017" [id=751, type=Constant];
-"752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [id=752, type=FakeQuantize];
-"753 Constant_28049" [id=753, type=Constant];
-"754 Constant_28048" [id=754, type=Constant];
-"755 Constant_28047" [id=755, type=Constant];
-"756 Constant_28046" [id=756, type=Constant];
-"757 Transpose_6541" [id=757, type=Constant];
-"758 Constant_28044" [id=758, type=Constant];
-"759 Constant_28043" [id=759, type=Constant];
-"760 Constant_28042" [id=760, type=Constant];
-"761 Constant_28041" [id=761, type=Constant];
-"762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [id=762, type=FakeQuantize];
-"763 Constant_28039" [id=763, type=Constant];
-"764 Constant_28038" [id=764, type=Constant];
-"765 Constant_28037" [id=765, type=Constant];
-"766 Constant_28036" [id=766, type=Constant];
-"767 Transpose_6537" [id=767, type=Constant];
-"768 Constant_28034" [id=768, type=Constant];
-"769 Constant_28033" [id=769, type=Constant];
-"770 Constant_28032" [id=770, type=Constant];
-"771 Constant_28031" [id=771, type=Constant];
-"772 Constant_7387" [id=772, type=Constant];
-"773 Constant_7386" [id=773, type=Constant];
-"774 Constant_1991" [id=774, type=Constant];
-"775 /layers/layers.3/blocks.0/Constant_7" [id=775, type=Constant];
-"776 /layers/layers.3/blocks.0/Constant_6" [id=776, type=Constant];
-"777 Constant_6531" [id=777, type=Constant];
-"778 /layers/layers.3/blocks.0/Constant_5" [id=778, type=Constant];
-"779 /layers/layers.3/blocks.0/Constant_4" [id=779, type=Constant];
-"780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [id=780, type=FakeQuantize];
-"781 Constant_28029" [id=781, type=Constant];
-"782 Constant_28028" [id=782, type=Constant];
-"783 Constant_28027" [id=783, type=Constant];
-"784 Constant_28026" [id=784, type=Constant];
-"785 Transpose_6529" [id=785, type=Constant];
-"786 /layers/layers.3/blocks.0/attn/Constant_2" [id=786, type=Constant];
-"787 Constant_1964" [id=787, type=Constant];
-"788 Constant_28024" [id=788, type=Constant];
-"789 Constant_28023" [id=789, type=Constant];
-"790 Constant_28022" [id=790, type=Constant];
-"791 Constant_28021" [id=791, type=Constant];
-"792 Constant_1954" [id=792, type=Constant];
-"793 Constant_1948" [id=793, type=Constant];
-"794 /layers/layers.3/blocks.0/attn/Constant" [id=794, type=Constant];
-"795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [id=795, type=FakeQuantize];
-"796 Constant_28009" [id=796, type=Constant];
-"797 Constant_28008" [id=797, type=Constant];
-"798 Constant_28007" [id=798, type=Constant];
-"799 Constant_28006" [id=799, type=Constant];
-"800 Transpose_6526" [id=800, type=Constant];
-"801 /layers/layers.3/blocks.0/Constant_3" [id=801, type=Constant];
-"802 /layers/layers.3/blocks.0/Constant_2" [id=802, type=Constant];
-"803 Constant_6521" [id=803, type=Constant];
-"804 /layers/layers.3/blocks.0/Constant_1" [id=804, type=Constant];
-"805 Constant_28004" [id=805, type=Constant];
-"806 Constant_28003" [id=806, type=Constant];
-"807 Constant_28002" [id=807, type=Constant];
-"808 Constant_28001" [id=808, type=Constant];
-"809 Constant_7382" [id=809, type=Constant];
-"810 Constant_7381" [id=810, type=Constant];
-"811 Constant_1911" [id=811, type=Constant];
-"812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [id=812, type=FakeQuantize];
-"813 Constant_27999" [id=813, type=Constant];
-"814 Constant_27998" [id=814, type=Constant];
-"815 Constant_27997" [id=815, type=Constant];
-"816 Constant_27996" [id=816, type=Constant];
-"817 Transpose_6518" [id=817, type=Constant];
-"818 Constant_27994" [id=818, type=Constant];
-"819 Constant_27993" [id=819, type=Constant];
-"820 Constant_27992" [id=820, type=Constant];
-"821 Constant_27991" [id=821, type=Constant];
-"822 Constant_7380" [id=822, type=Constant];
-"823 Constant_7379" [id=823, type=Constant];
-"824 Constant_1897" [id=824, type=Constant];
-"825 /layers/layers.2/downsample/Constant_25" [id=825, type=Constant];
-"826 Constant_5751" [id=826, type=Constant];
-"827 Constant_5748" [id=827, type=Constant];
-"828 Constant_5745" [id=828, type=Constant];
-"829 Constant_5715" [id=829, type=Constant];
-"830 Constant_5712" [id=830, type=Constant];
-"831 Constant_5709" [id=831, type=Constant];
-"832 /layers/layers.2/downsample/Constant" [id=832, type=Constant];
-"833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [id=833, type=FakeQuantize];
-"834 Constant_27989" [id=834, type=Constant];
-"835 Constant_27988" [id=835, type=Constant];
-"836 Constant_27987" [id=836, type=Constant];
-"837 Constant_27986" [id=837, type=Constant];
-"838 Transpose_6514" [id=838, type=Constant];
-"839 Constant_27984" [id=839, type=Constant];
-"840 Constant_27983" [id=840, type=Constant];
-"841 Constant_27982" [id=841, type=Constant];
-"842 Constant_27981" [id=842, type=Constant];
-"843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [id=843, type=FakeQuantize];
-"844 Constant_27979" [id=844, type=Constant];
-"845 Constant_27978" [id=845, type=Constant];
-"846 Constant_27977" [id=846, type=Constant];
-"847 Constant_27976" [id=847, type=Constant];
-"848 Transpose_6510" [id=848, type=Constant];
-"849 Constant_27974" [id=849, type=Constant];
-"850 Constant_27973" [id=850, type=Constant];
-"851 Constant_27972" [id=851, type=Constant];
-"852 Constant_27971" [id=852, type=Constant];
-"853 Constant_7376" [id=853, type=Constant];
-"854 Constant_7375" [id=854, type=Constant];
-"855 Constant_1832" [id=855, type=Constant];
-"856 /layers/layers.2/blocks.5/Constant_31" [id=856, type=Constant];
-"857 Constant_5679" [id=857, type=Constant];
-"858 Constant_5676" [id=858, type=Constant];
-"859 Constant_5673" [id=859, type=Constant];
-"860 Constant_5655" [id=860, type=Constant];
-"861 Constant_5652" [id=861, type=Constant];
-"862 Constant_5649" [id=862, type=Constant];
-"863 /layers/layers.2/blocks.5/Constant_18" [id=863, type=Constant];
-"864 Constant_1779" [id=864, type=Constant];
-"865 /layers/layers.2/blocks.5/Constant_17" [id=865, type=Constant];
-"866 /layers/layers.2/blocks.5/Constant_16" [id=866, type=Constant];
-"867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [id=867, type=FakeQuantize];
-"868 Constant_27969" [id=868, type=Constant];
-"869 Constant_27968" [id=869, type=Constant];
-"870 Constant_27967" [id=870, type=Constant];
-"871 Constant_27966" [id=871, type=Constant];
-"872 Transpose_6506" [id=872, type=Constant];
-"873 /layers/layers.2/blocks.5/attn/Constant_4" [id=873, type=Constant];
-"874 Constant_1763" [id=874, type=Constant];
-"875 Constant_27964" [id=875, type=Constant];
-"876 Constant_27963" [id=876, type=Constant];
-"877 Constant_27962" [id=877, type=Constant];
-"878 Constant_27961" [id=878, type=Constant];
-"879 Constant_1744" [id=879, type=Constant];
-"880 Constant_1738" [id=880, type=Constant];
-"881 /layers/layers.2/blocks.5/attn/Constant" [id=881, type=Constant];
-"882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [id=882, type=FakeQuantize];
-"883 Constant_27949" [id=883, type=Constant];
-"884 Constant_27948" [id=884, type=Constant];
-"885 Constant_27947" [id=885, type=Constant];
-"886 Constant_27946" [id=886, type=Constant];
-"887 Transpose_6503" [id=887, type=Constant];
-"888 /layers/layers.2/blocks.5/Constant_15" [id=888, type=Constant];
-"889 /layers/layers.2/blocks.5/Constant_14" [id=889, type=Constant];
-"890 Constant_1722" [id=890, type=Constant];
-"891 /layers/layers.2/blocks.5/Constant_13" [id=891, type=Constant];
-"892 Constant_5631" [id=892, type=Constant];
-"893 Constant_5628" [id=893, type=Constant];
-"894 Constant_5625" [id=894, type=Constant];
-"895 Constant_5607" [id=895, type=Constant];
-"896 Constant_5604" [id=896, type=Constant];
-"897 Constant_5601" [id=897, type=Constant];
-"898 /layers/layers.2/blocks.5/Constant" [id=898, type=Constant];
-"899 Constant_27484" [id=899, type=Constant];
-"900 Constant_27483" [id=900, type=Constant];
-"901 Constant_27482" [id=901, type=Constant];
-"902 Constant_27481" [id=902, type=Constant];
-"903 Constant_7371" [id=903, type=Constant];
-"904 Constant_7370" [id=904, type=Constant];
-"905 Constant_1659" [id=905, type=Constant];
-"906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [id=906, type=FakeQuantize];
-"907 Constant_27944" [id=907, type=Constant];
-"908 Constant_27943" [id=908, type=Constant];
-"909 Constant_27942" [id=909, type=Constant];
-"910 Constant_27941" [id=910, type=Constant];
-"911 Transpose_6499" [id=911, type=Constant];
-"912 Constant_27939" [id=912, type=Constant];
-"913 Constant_27938" [id=913, type=Constant];
-"914 Constant_27937" [id=914, type=Constant];
-"915 Constant_27936" [id=915, type=Constant];
-"916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [id=916, type=FakeQuantize];
-"917 Constant_27934" [id=917, type=Constant];
-"918 Constant_27933" [id=918, type=Constant];
-"919 Constant_27932" [id=919, type=Constant];
-"920 Constant_27931" [id=920, type=Constant];
-"921 Transpose_6495" [id=921, type=Constant];
-"922 Constant_27929" [id=922, type=Constant];
-"923 Constant_27928" [id=923, type=Constant];
-"924 Constant_27927" [id=924, type=Constant];
-"925 Constant_27926" [id=925, type=Constant];
-"926 Constant_7367" [id=926, type=Constant];
-"927 Constant_7366" [id=927, type=Constant];
-"928 Constant_1633" [id=928, type=Constant];
-"929 /layers/layers.2/blocks.4/Constant_7" [id=929, type=Constant];
-"930 /layers/layers.2/blocks.4/Constant_6" [id=930, type=Constant];
-"931 Constant_1622" [id=931, type=Constant];
-"932 /layers/layers.2/blocks.4/Constant_5" [id=932, type=Constant];
-"933 /layers/layers.2/blocks.4/Constant_4" [id=933, type=Constant];
-"934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [id=934, type=FakeQuantize];
-"935 Constant_27924" [id=935, type=Constant];
-"936 Constant_27923" [id=936, type=Constant];
-"937 Constant_27922" [id=937, type=Constant];
-"938 Constant_27921" [id=938, type=Constant];
-"939 Transpose_6491" [id=939, type=Constant];
-"940 /layers/layers.2/blocks.4/attn/Constant_2" [id=940, type=Constant];
-"941 Constant_1606" [id=941, type=Constant];
-"942 Constant_27919" [id=942, type=Constant];
-"943 Constant_27918" [id=943, type=Constant];
-"944 Constant_27917" [id=944, type=Constant];
-"945 Constant_27916" [id=945, type=Constant];
-"946 Constant_1596" [id=946, type=Constant];
-"947 Constant_1590" [id=947, type=Constant];
-"948 /layers/layers.2/blocks.4/attn/Constant" [id=948, type=Constant];
-"949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [id=949, type=FakeQuantize];
-"950 Constant_27904" [id=950, type=Constant];
-"951 Constant_27903" [id=951, type=Constant];
-"952 Constant_27902" [id=952, type=Constant];
-"953 Constant_27901" [id=953, type=Constant];
-"954 Transpose_6488" [id=954, type=Constant];
-"955 /layers/layers.2/blocks.4/Constant_3" [id=955, type=Constant];
-"956 /layers/layers.2/blocks.4/Constant_2" [id=956, type=Constant];
-"957 Constant_1574" [id=957, type=Constant];
-"958 /layers/layers.2/blocks.4/Constant_1" [id=958, type=Constant];
-"959 Constant_27899" [id=959, type=Constant];
-"960 Constant_27898" [id=960, type=Constant];
-"961 Constant_27897" [id=961, type=Constant];
-"962 Constant_27896" [id=962, type=Constant];
-"963 Constant_7362" [id=963, type=Constant];
-"964 Constant_7361" [id=964, type=Constant];
-"965 Constant_1553" [id=965, type=Constant];
-"966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [id=966, type=FakeQuantize];
-"967 Constant_27894" [id=967, type=Constant];
-"968 Constant_27893" [id=968, type=Constant];
-"969 Constant_27892" [id=969, type=Constant];
-"970 Constant_27891" [id=970, type=Constant];
-"971 Transpose_6484" [id=971, type=Constant];
-"972 Constant_27889" [id=972, type=Constant];
-"973 Constant_27888" [id=973, type=Constant];
-"974 Constant_27887" [id=974, type=Constant];
-"975 Constant_27886" [id=975, type=Constant];
-"976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [id=976, type=FakeQuantize];
-"977 Constant_27884" [id=977, type=Constant];
-"978 Constant_27883" [id=978, type=Constant];
-"979 Constant_27882" [id=979, type=Constant];
-"980 Constant_27881" [id=980, type=Constant];
-"981 Transpose_6480" [id=981, type=Constant];
-"982 Constant_27879" [id=982, type=Constant];
-"983 Constant_27878" [id=983, type=Constant];
-"984 Constant_27877" [id=984, type=Constant];
-"985 Constant_27876" [id=985, type=Constant];
-"986 Constant_7358" [id=986, type=Constant];
-"987 Constant_7357" [id=987, type=Constant];
-"988 Constant_1527" [id=988, type=Constant];
-"989 /layers/layers.2/blocks.3/Constant_31" [id=989, type=Constant];
-"990 Constant_5583" [id=990, type=Constant];
-"991 Constant_5580" [id=991, type=Constant];
-"992 Constant_5577" [id=992, type=Constant];
-"993 Constant_5559" [id=993, type=Constant];
-"994 Constant_5556" [id=994, type=Constant];
-"995 Constant_5553" [id=995, type=Constant];
-"996 /layers/layers.2/blocks.3/Constant_18" [id=996, type=Constant];
-"997 Constant_1474" [id=997, type=Constant];
-"998 /layers/layers.2/blocks.3/Constant_17" [id=998, type=Constant];
-"999 /layers/layers.2/blocks.3/Constant_16" [id=999, type=Constant];
-"1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [id=1000, type=FakeQuantize];
-"1001 Constant_27874" [id=1001, type=Constant];
-"1002 Constant_27873" [id=1002, type=Constant];
-"1003 Constant_27872" [id=1003, type=Constant];
-"1004 Constant_27871" [id=1004, type=Constant];
-"1005 Transpose_6476" [id=1005, type=Constant];
-"1006 /layers/layers.2/blocks.3/attn/Constant_4" [id=1006, type=Constant];
-"1007 Constant_1458" [id=1007, type=Constant];
-"1008 Constant_27869" [id=1008, type=Constant];
-"1009 Constant_27868" [id=1009, type=Constant];
-"1010 Constant_27867" [id=1010, type=Constant];
-"1011 Constant_27866" [id=1011, type=Constant];
-"1012 Constant_1439" [id=1012, type=Constant];
-"1013 Constant_1433" [id=1013, type=Constant];
-"1014 /layers/layers.2/blocks.3/attn/Constant" [id=1014, type=Constant];
-"1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [id=1015, type=FakeQuantize];
-"1016 Constant_27854" [id=1016, type=Constant];
-"1017 Constant_27853" [id=1017, type=Constant];
-"1018 Constant_27852" [id=1018, type=Constant];
-"1019 Constant_27851" [id=1019, type=Constant];
-"1020 Transpose_6473" [id=1020, type=Constant];
-"1021 /layers/layers.2/blocks.3/Constant_15" [id=1021, type=Constant];
-"1022 /layers/layers.2/blocks.3/Constant_14" [id=1022, type=Constant];
-"1023 Constant_1417" [id=1023, type=Constant];
-"1024 /layers/layers.2/blocks.3/Constant_13" [id=1024, type=Constant];
-"1025 Constant_5535" [id=1025, type=Constant];
-"1026 Constant_5532" [id=1026, type=Constant];
-"1027 Constant_5529" [id=1027, type=Constant];
-"1028 Constant_5511" [id=1028, type=Constant];
-"1029 Constant_5508" [id=1029, type=Constant];
-"1030 Constant_5505" [id=1030, type=Constant];
-"1031 /layers/layers.2/blocks.3/Constant" [id=1031, type=Constant];
-"1032 Constant_27479" [id=1032, type=Constant];
-"1033 Constant_27478" [id=1033, type=Constant];
-"1034 Constant_27477" [id=1034, type=Constant];
-"1035 Constant_27476" [id=1035, type=Constant];
-"1036 Constant_7353" [id=1036, type=Constant];
-"1037 Constant_7352" [id=1037, type=Constant];
-"1038 Constant_1354" [id=1038, type=Constant];
-"1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [id=1039, type=FakeQuantize];
-"1040 Constant_27849" [id=1040, type=Constant];
-"1041 Constant_27848" [id=1041, type=Constant];
-"1042 Constant_27847" [id=1042, type=Constant];
-"1043 Constant_27846" [id=1043, type=Constant];
-"1044 Transpose_6469" [id=1044, type=Constant];
-"1045 Constant_27844" [id=1045, type=Constant];
-"1046 Constant_27843" [id=1046, type=Constant];
-"1047 Constant_27842" [id=1047, type=Constant];
-"1048 Constant_27841" [id=1048, type=Constant];
-"1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [id=1049, type=FakeQuantize];
-"1050 Constant_27839" [id=1050, type=Constant];
-"1051 Constant_27838" [id=1051, type=Constant];
-"1052 Constant_27837" [id=1052, type=Constant];
-"1053 Constant_27836" [id=1053, type=Constant];
-"1054 Transpose_6465" [id=1054, type=Constant];
-"1055 Constant_27834" [id=1055, type=Constant];
-"1056 Constant_27833" [id=1056, type=Constant];
-"1057 Constant_27832" [id=1057, type=Constant];
-"1058 Constant_27831" [id=1058, type=Constant];
-"1059 Constant_7349" [id=1059, type=Constant];
-"1060 Constant_7348" [id=1060, type=Constant];
-"1061 Constant_1328" [id=1061, type=Constant];
-"1062 /layers/layers.2/blocks.2/Constant_7" [id=1062, type=Constant];
-"1063 /layers/layers.2/blocks.2/Constant_6" [id=1063, type=Constant];
-"1064 Constant_1317" [id=1064, type=Constant];
-"1065 /layers/layers.2/blocks.2/Constant_5" [id=1065, type=Constant];
-"1066 /layers/layers.2/blocks.2/Constant_4" [id=1066, type=Constant];
-"1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [id=1067, type=FakeQuantize];
-"1068 Constant_27829" [id=1068, type=Constant];
-"1069 Constant_27828" [id=1069, type=Constant];
-"1070 Constant_27827" [id=1070, type=Constant];
-"1071 Constant_27826" [id=1071, type=Constant];
-"1072 Transpose_6461" [id=1072, type=Constant];
-"1073 /layers/layers.2/blocks.2/attn/Constant_2" [id=1073, type=Constant];
-"1074 Constant_1301" [id=1074, type=Constant];
-"1075 Constant_27824" [id=1075, type=Constant];
-"1076 Constant_27823" [id=1076, type=Constant];
-"1077 Constant_27822" [id=1077, type=Constant];
-"1078 Constant_27821" [id=1078, type=Constant];
-"1079 Constant_1291" [id=1079, type=Constant];
-"1080 Constant_1285" [id=1080, type=Constant];
-"1081 /layers/layers.2/blocks.2/attn/Constant" [id=1081, type=Constant];
-"1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [id=1082, type=FakeQuantize];
-"1083 Constant_27809" [id=1083, type=Constant];
-"1084 Constant_27808" [id=1084, type=Constant];
-"1085 Constant_27807" [id=1085, type=Constant];
-"1086 Constant_27806" [id=1086, type=Constant];
-"1087 Transpose_6458" [id=1087, type=Constant];
-"1088 /layers/layers.2/blocks.2/Constant_3" [id=1088, type=Constant];
-"1089 /layers/layers.2/blocks.2/Constant_2" [id=1089, type=Constant];
-"1090 Constant_1269" [id=1090, type=Constant];
-"1091 /layers/layers.2/blocks.2/Constant_1" [id=1091, type=Constant];
-"1092 Constant_27804" [id=1092, type=Constant];
-"1093 Constant_27803" [id=1093, type=Constant];
-"1094 Constant_27802" [id=1094, type=Constant];
-"1095 Constant_27801" [id=1095, type=Constant];
-"1096 Constant_7344" [id=1096, type=Constant];
-"1097 Constant_7343" [id=1097, type=Constant];
-"1098 Constant_1248" [id=1098, type=Constant];
-"1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [id=1099, type=FakeQuantize];
-"1100 Constant_27799" [id=1100, type=Constant];
-"1101 Constant_27798" [id=1101, type=Constant];
-"1102 Constant_27797" [id=1102, type=Constant];
-"1103 Constant_27796" [id=1103, type=Constant];
-"1104 Transpose_6454" [id=1104, type=Constant];
-"1105 Constant_27794" [id=1105, type=Constant];
-"1106 Constant_27793" [id=1106, type=Constant];
-"1107 Constant_27792" [id=1107, type=Constant];
-"1108 Constant_27791" [id=1108, type=Constant];
-"1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [id=1109, type=FakeQuantize];
-"1110 Constant_27789" [id=1110, type=Constant];
-"1111 Constant_27788" [id=1111, type=Constant];
-"1112 Constant_27787" [id=1112, type=Constant];
-"1113 Constant_27786" [id=1113, type=Constant];
-"1114 Transpose_6450" [id=1114, type=Constant];
-"1115 Constant_27784" [id=1115, type=Constant];
-"1116 Constant_27783" [id=1116, type=Constant];
-"1117 Constant_27782" [id=1117, type=Constant];
-"1118 Constant_27781" [id=1118, type=Constant];
-"1119 Constant_7340" [id=1119, type=Constant];
-"1120 Constant_7339" [id=1120, type=Constant];
-"1121 Constant_1222" [id=1121, type=Constant];
-"1122 /layers/layers.2/blocks.1/Constant_31" [id=1122, type=Constant];
-"1123 Constant_5487" [id=1123, type=Constant];
-"1124 Constant_5484" [id=1124, type=Constant];
-"1125 Constant_5481" [id=1125, type=Constant];
-"1126 Constant_5463" [id=1126, type=Constant];
-"1127 Constant_5460" [id=1127, type=Constant];
-"1128 Constant_5457" [id=1128, type=Constant];
-"1129 /layers/layers.2/blocks.1/Constant_18" [id=1129, type=Constant];
-"1130 Constant_1169" [id=1130, type=Constant];
-"1131 /layers/layers.2/blocks.1/Constant_17" [id=1131, type=Constant];
-"1132 /layers/layers.2/blocks.1/Constant_16" [id=1132, type=Constant];
-"1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [id=1133, type=FakeQuantize];
-"1134 Constant_27779" [id=1134, type=Constant];
-"1135 Constant_27778" [id=1135, type=Constant];
-"1136 Constant_27777" [id=1136, type=Constant];
-"1137 Constant_27776" [id=1137, type=Constant];
-"1138 Transpose_6446" [id=1138, type=Constant];
-"1139 /layers/layers.2/blocks.1/attn/Constant_4" [id=1139, type=Constant];
-"1140 Constant_1153" [id=1140, type=Constant];
-"1141 Constant_27774" [id=1141, type=Constant];
-"1142 Constant_27773" [id=1142, type=Constant];
-"1143 Constant_27772" [id=1143, type=Constant];
-"1144 Constant_27771" [id=1144, type=Constant];
-"1145 Constant_1134" [id=1145, type=Constant];
-"1146 Constant_1128" [id=1146, type=Constant];
-"1147 /layers/layers.2/blocks.1/attn/Constant" [id=1147, type=Constant];
-"1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [id=1148, type=FakeQuantize];
-"1149 Constant_27759" [id=1149, type=Constant];
-"1150 Constant_27758" [id=1150, type=Constant];
-"1151 Constant_27757" [id=1151, type=Constant];
-"1152 Constant_27756" [id=1152, type=Constant];
-"1153 Transpose_6443" [id=1153, type=Constant];
-"1154 /layers/layers.2/blocks.1/Constant_15" [id=1154, type=Constant];
-"1155 /layers/layers.2/blocks.1/Constant_14" [id=1155, type=Constant];
-"1156 Constant_1112" [id=1156, type=Constant];
-"1157 /layers/layers.2/blocks.1/Constant_13" [id=1157, type=Constant];
-"1158 Constant_5439" [id=1158, type=Constant];
-"1159 Constant_5436" [id=1159, type=Constant];
-"1160 Constant_5433" [id=1160, type=Constant];
-"1161 Constant_5415" [id=1161, type=Constant];
-"1162 Constant_5412" [id=1162, type=Constant];
-"1163 Constant_5409" [id=1163, type=Constant];
-"1164 /layers/layers.2/blocks.1/Constant" [id=1164, type=Constant];
-"1165 Constant_27474" [id=1165, type=Constant];
-"1166 Constant_27473" [id=1166, type=Constant];
-"1167 Constant_27472" [id=1167, type=Constant];
-"1168 Constant_27471" [id=1168, type=Constant];
-"1169 Constant_7335" [id=1169, type=Constant];
-"1170 Constant_7334" [id=1170, type=Constant];
-"1171 Constant_1049" [id=1171, type=Constant];
-"1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [id=1172, type=FakeQuantize];
-"1173 Constant_27754" [id=1173, type=Constant];
-"1174 Constant_27753" [id=1174, type=Constant];
-"1175 Constant_27752" [id=1175, type=Constant];
-"1176 Constant_27751" [id=1176, type=Constant];
-"1177 Transpose_6439" [id=1177, type=Constant];
-"1178 Constant_27749" [id=1178, type=Constant];
-"1179 Constant_27748" [id=1179, type=Constant];
-"1180 Constant_27747" [id=1180, type=Constant];
-"1181 Constant_27746" [id=1181, type=Constant];
-"1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [id=1182, type=FakeQuantize];
-"1183 Constant_27744" [id=1183, type=Constant];
-"1184 Constant_27743" [id=1184, type=Constant];
-"1185 Constant_27742" [id=1185, type=Constant];
-"1186 Constant_27741" [id=1186, type=Constant];
-"1187 Transpose_6435" [id=1187, type=Constant];
-"1188 Constant_27739" [id=1188, type=Constant];
-"1189 Constant_27738" [id=1189, type=Constant];
-"1190 Constant_27737" [id=1190, type=Constant];
-"1191 Constant_27736" [id=1191, type=Constant];
-"1192 Constant_7331" [id=1192, type=Constant];
-"1193 Constant_7330" [id=1193, type=Constant];
-"1194 Constant_1023" [id=1194, type=Constant];
-"1195 /layers/layers.2/blocks.0/Constant_7" [id=1195, type=Constant];
-"1196 /layers/layers.2/blocks.0/Constant_6" [id=1196, type=Constant];
-"1197 Constant_1012" [id=1197, type=Constant];
-"1198 /layers/layers.2/blocks.0/Constant_5" [id=1198, type=Constant];
-"1199 /layers/layers.2/blocks.0/Constant_4" [id=1199, type=Constant];
-"1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [id=1200, type=FakeQuantize];
-"1201 Constant_27734" [id=1201, type=Constant];
-"1202 Constant_27733" [id=1202, type=Constant];
-"1203 Constant_27732" [id=1203, type=Constant];
-"1204 Constant_27731" [id=1204, type=Constant];
-"1205 Transpose_6431" [id=1205, type=Constant];
-"1206 /layers/layers.2/blocks.0/attn/Constant_2" [id=1206, type=Constant];
-"1207 Constant_996" [id=1207, type=Constant];
-"1208 Constant_27729" [id=1208, type=Constant];
-"1209 Constant_27728" [id=1209, type=Constant];
-"1210 Constant_27727" [id=1210, type=Constant];
-"1211 Constant_27726" [id=1211, type=Constant];
-"1212 Constant_986" [id=1212, type=Constant];
-"1213 Constant_980" [id=1213, type=Constant];
-"1214 /layers/layers.2/blocks.0/attn/Constant" [id=1214, type=Constant];
-"1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [id=1215, type=FakeQuantize];
-"1216 Constant_27714" [id=1216, type=Constant];
-"1217 Constant_27713" [id=1217, type=Constant];
-"1218 Constant_27712" [id=1218, type=Constant];
-"1219 Constant_27711" [id=1219, type=Constant];
-"1220 Transpose_6428" [id=1220, type=Constant];
-"1221 /layers/layers.2/blocks.0/Constant_3" [id=1221, type=Constant];
-"1222 /layers/layers.2/blocks.0/Constant_2" [id=1222, type=Constant];
-"1223 Constant_964" [id=1223, type=Constant];
-"1224 /layers/layers.2/blocks.0/Constant_1" [id=1224, type=Constant];
-"1225 Constant_27709" [id=1225, type=Constant];
-"1226 Constant_27708" [id=1226, type=Constant];
-"1227 Constant_27707" [id=1227, type=Constant];
-"1228 Constant_27706" [id=1228, type=Constant];
-"1229 Constant_7326" [id=1229, type=Constant];
-"1230 Constant_7325" [id=1230, type=Constant];
-"1231 Constant_943" [id=1231, type=Constant];
-"1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [id=1232, type=FakeQuantize];
-"1233 Constant_27704" [id=1233, type=Constant];
-"1234 Constant_27703" [id=1234, type=Constant];
-"1235 Constant_27702" [id=1235, type=Constant];
-"1236 Constant_27701" [id=1236, type=Constant];
-"1237 Transpose_6424" [id=1237, type=Constant];
-"1238 Constant_27699" [id=1238, type=Constant];
-"1239 Constant_27698" [id=1239, type=Constant];
-"1240 Constant_27697" [id=1240, type=Constant];
-"1241 Constant_27696" [id=1241, type=Constant];
-"1242 Constant_7324" [id=1242, type=Constant];
-"1243 Constant_7323" [id=1243, type=Constant];
-"1244 Constant_929" [id=1244, type=Constant];
-"1245 /layers/layers.1/downsample/Constant_25" [id=1245, type=Constant];
-"1246 Constant_5391" [id=1246, type=Constant];
-"1247 Constant_5388" [id=1247, type=Constant];
-"1248 Constant_5385" [id=1248, type=Constant];
-"1249 Constant_5355" [id=1249, type=Constant];
-"1250 Constant_5352" [id=1250, type=Constant];
-"1251 Constant_5349" [id=1251, type=Constant];
-"1252 /layers/layers.1/downsample/Constant" [id=1252, type=Constant];
-"1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [id=1253, type=FakeQuantize];
-"1254 Constant_27694" [id=1254, type=Constant];
-"1255 Constant_27693" [id=1255, type=Constant];
-"1256 Constant_27692" [id=1256, type=Constant];
-"1257 Constant_27691" [id=1257, type=Constant];
-"1258 Transpose_6420" [id=1258, type=Constant];
-"1259 Constant_27689" [id=1259, type=Constant];
-"1260 Constant_27688" [id=1260, type=Constant];
-"1261 Constant_27687" [id=1261, type=Constant];
-"1262 Constant_27686" [id=1262, type=Constant];
-"1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [id=1263, type=FakeQuantize];
-"1264 Constant_27684" [id=1264, type=Constant];
-"1265 Constant_27683" [id=1265, type=Constant];
-"1266 Constant_27682" [id=1266, type=Constant];
-"1267 Constant_27681" [id=1267, type=Constant];
-"1268 Transpose_6416" [id=1268, type=Constant];
-"1269 Constant_27679" [id=1269, type=Constant];
-"1270 Constant_27678" [id=1270, type=Constant];
-"1271 Constant_27677" [id=1271, type=Constant];
-"1272 Constant_27676" [id=1272, type=Constant];
-"1273 Constant_7320" [id=1273, type=Constant];
-"1274 Constant_7319" [id=1274, type=Constant];
-"1275 Constant_864" [id=1275, type=Constant];
-"1276 /layers/layers.1/blocks.1/Constant_31" [id=1276, type=Constant];
-"1277 Constant_5319" [id=1277, type=Constant];
-"1278 Constant_5316" [id=1278, type=Constant];
-"1279 Constant_5313" [id=1279, type=Constant];
-"1280 Constant_5295" [id=1280, type=Constant];
-"1281 Constant_5292" [id=1281, type=Constant];
-"1282 Constant_5289" [id=1282, type=Constant];
-"1283 /layers/layers.1/blocks.1/Constant_18" [id=1283, type=Constant];
-"1284 Constant_811" [id=1284, type=Constant];
-"1285 /layers/layers.1/blocks.1/Constant_17" [id=1285, type=Constant];
-"1286 /layers/layers.1/blocks.1/Constant_16" [id=1286, type=Constant];
-"1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [id=1287, type=FakeQuantize];
-"1288 Constant_27674" [id=1288, type=Constant];
-"1289 Constant_27673" [id=1289, type=Constant];
-"1290 Constant_27672" [id=1290, type=Constant];
-"1291 Constant_27671" [id=1291, type=Constant];
-"1292 Transpose_6412" [id=1292, type=Constant];
-"1293 /layers/layers.1/blocks.1/attn/Constant_4" [id=1293, type=Constant];
-"1294 Constant_795" [id=1294, type=Constant];
-"1295 Constant_27669" [id=1295, type=Constant];
-"1296 Constant_27668" [id=1296, type=Constant];
-"1297 Constant_27667" [id=1297, type=Constant];
-"1298 Constant_27666" [id=1298, type=Constant];
-"1299 Constant_776" [id=1299, type=Constant];
-"1300 Constant_770" [id=1300, type=Constant];
-"1301 /layers/layers.1/blocks.1/attn/Constant" [id=1301, type=Constant];
-"1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [id=1302, type=FakeQuantize];
-"1303 Constant_27654" [id=1303, type=Constant];
-"1304 Constant_27653" [id=1304, type=Constant];
-"1305 Constant_27652" [id=1305, type=Constant];
-"1306 Constant_27651" [id=1306, type=Constant];
-"1307 Transpose_6409" [id=1307, type=Constant];
-"1308 /layers/layers.1/blocks.1/Constant_15" [id=1308, type=Constant];
-"1309 /layers/layers.1/blocks.1/Constant_14" [id=1309, type=Constant];
-"1310 Constant_754" [id=1310, type=Constant];
-"1311 /layers/layers.1/blocks.1/Constant_13" [id=1311, type=Constant];
-"1312 Constant_5271" [id=1312, type=Constant];
-"1313 Constant_5268" [id=1313, type=Constant];
-"1314 Constant_5265" [id=1314, type=Constant];
-"1315 Constant_5247" [id=1315, type=Constant];
-"1316 Constant_5244" [id=1316, type=Constant];
-"1317 Constant_5241" [id=1317, type=Constant];
-"1318 /layers/layers.1/blocks.1/Constant" [id=1318, type=Constant];
-"1319 Constant_27469" [id=1319, type=Constant];
-"1320 Constant_27468" [id=1320, type=Constant];
-"1321 Constant_27467" [id=1321, type=Constant];
-"1322 Constant_27466" [id=1322, type=Constant];
-"1323 Constant_7315" [id=1323, type=Constant];
-"1324 Constant_7314" [id=1324, type=Constant];
-"1325 Constant_691" [id=1325, type=Constant];
-"1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [id=1326, type=FakeQuantize];
-"1327 Constant_27649" [id=1327, type=Constant];
-"1328 Constant_27648" [id=1328, type=Constant];
-"1329 Constant_27647" [id=1329, type=Constant];
-"1330 Constant_27646" [id=1330, type=Constant];
-"1331 Transpose_6405" [id=1331, type=Constant];
-"1332 Constant_27644" [id=1332, type=Constant];
-"1333 Constant_27643" [id=1333, type=Constant];
-"1334 Constant_27642" [id=1334, type=Constant];
-"1335 Constant_27641" [id=1335, type=Constant];
-"1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [id=1336, type=FakeQuantize];
-"1337 Constant_27639" [id=1337, type=Constant];
-"1338 Constant_27638" [id=1338, type=Constant];
-"1339 Constant_27637" [id=1339, type=Constant];
-"1340 Constant_27636" [id=1340, type=Constant];
-"1341 Transpose_6401" [id=1341, type=Constant];
-"1342 Constant_27634" [id=1342, type=Constant];
-"1343 Constant_27633" [id=1343, type=Constant];
-"1344 Constant_27632" [id=1344, type=Constant];
-"1345 Constant_27631" [id=1345, type=Constant];
-"1346 Constant_7311" [id=1346, type=Constant];
-"1347 Constant_7310" [id=1347, type=Constant];
-"1348 Constant_665" [id=1348, type=Constant];
-"1349 /layers/layers.1/blocks.0/Constant_7" [id=1349, type=Constant];
-"1350 /layers/layers.1/blocks.0/Constant_6" [id=1350, type=Constant];
-"1351 Constant_654" [id=1351, type=Constant];
-"1352 /layers/layers.1/blocks.0/Constant_5" [id=1352, type=Constant];
-"1353 /layers/layers.1/blocks.0/Constant_4" [id=1353, type=Constant];
-"1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [id=1354, type=FakeQuantize];
-"1355 Constant_27629" [id=1355, type=Constant];
-"1356 Constant_27628" [id=1356, type=Constant];
-"1357 Constant_27627" [id=1357, type=Constant];
-"1358 Constant_27626" [id=1358, type=Constant];
-"1359 Transpose_6397" [id=1359, type=Constant];
-"1360 /layers/layers.1/blocks.0/attn/Constant_2" [id=1360, type=Constant];
-"1361 Constant_638" [id=1361, type=Constant];
-"1362 Constant_27624" [id=1362, type=Constant];
-"1363 Constant_27623" [id=1363, type=Constant];
-"1364 Constant_27622" [id=1364, type=Constant];
-"1365 Constant_27621" [id=1365, type=Constant];
-"1366 Constant_628" [id=1366, type=Constant];
-"1367 Constant_622" [id=1367, type=Constant];
-"1368 /layers/layers.1/blocks.0/attn/Constant" [id=1368, type=Constant];
-"1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [id=1369, type=FakeQuantize];
-"1370 Constant_27609" [id=1370, type=Constant];
-"1371 Constant_27608" [id=1371, type=Constant];
-"1372 Constant_27607" [id=1372, type=Constant];
-"1373 Constant_27606" [id=1373, type=Constant];
-"1374 Transpose_6394" [id=1374, type=Constant];
-"1375 /layers/layers.1/blocks.0/Constant_3" [id=1375, type=Constant];
-"1376 /layers/layers.1/blocks.0/Constant_2" [id=1376, type=Constant];
-"1377 Constant_606" [id=1377, type=Constant];
-"1378 /layers/layers.1/blocks.0/Constant_1" [id=1378, type=Constant];
-"1379 Constant_27604" [id=1379, type=Constant];
-"1380 Constant_27603" [id=1380, type=Constant];
-"1381 Constant_27602" [id=1381, type=Constant];
-"1382 Constant_27601" [id=1382, type=Constant];
-"1383 Constant_7306" [id=1383, type=Constant];
-"1384 Constant_7305" [id=1384, type=Constant];
-"1385 Constant_585" [id=1385, type=Constant];
-"1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [id=1386, type=FakeQuantize];
-"1387 Constant_27599" [id=1387, type=Constant];
-"1388 Constant_27598" [id=1388, type=Constant];
-"1389 Constant_27597" [id=1389, type=Constant];
-"1390 Constant_27596" [id=1390, type=Constant];
-"1391 Transpose_6390" [id=1391, type=Constant];
-"1392 Constant_27594" [id=1392, type=Constant];
-"1393 Constant_27593" [id=1393, type=Constant];
-"1394 Constant_27592" [id=1394, type=Constant];
-"1395 Constant_27591" [id=1395, type=Constant];
-"1396 Constant_7304" [id=1396, type=Constant];
-"1397 Constant_7303" [id=1397, type=Constant];
-"1398 Constant_571" [id=1398, type=Constant];
-"1399 /layers/layers.0/downsample/Constant_25" [id=1399, type=Constant];
-"1400 Constant_5223" [id=1400, type=Constant];
-"1401 Constant_5220" [id=1401, type=Constant];
-"1402 Constant_5217" [id=1402, type=Constant];
-"1403 Constant_5187" [id=1403, type=Constant];
-"1404 Constant_5184" [id=1404, type=Constant];
-"1405 Constant_5181" [id=1405, type=Constant];
-"1406 /layers/layers.0/downsample/Constant" [id=1406, type=Constant];
-"1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [id=1407, type=FakeQuantize];
-"1408 Constant_27589" [id=1408, type=Constant];
-"1409 Constant_27588" [id=1409, type=Constant];
-"1410 Constant_27587" [id=1410, type=Constant];
-"1411 Constant_27586" [id=1411, type=Constant];
-"1412 Transpose_6386" [id=1412, type=Constant];
-"1413 Constant_27584" [id=1413, type=Constant];
-"1414 Constant_27583" [id=1414, type=Constant];
-"1415 Constant_27582" [id=1415, type=Constant];
-"1416 Constant_27581" [id=1416, type=Constant];
-"1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [id=1417, type=FakeQuantize];
-"1418 Constant_27579" [id=1418, type=Constant];
-"1419 Constant_27578" [id=1419, type=Constant];
-"1420 Constant_27577" [id=1420, type=Constant];
-"1421 Constant_27576" [id=1421, type=Constant];
-"1422 Transpose_6382" [id=1422, type=Constant];
-"1423 Constant_27574" [id=1423, type=Constant];
-"1424 Constant_27573" [id=1424, type=Constant];
-"1425 Constant_27572" [id=1425, type=Constant];
-"1426 Constant_27571" [id=1426, type=Constant];
-"1427 Constant_7300" [id=1427, type=Constant];
-"1428 Constant_7299" [id=1428, type=Constant];
-"1429 Constant_506" [id=1429, type=Constant];
-"1430 /layers/layers.0/blocks.1/Constant_31" [id=1430, type=Constant];
-"1431 Constant_5151" [id=1431, type=Constant];
-"1432 Constant_5148" [id=1432, type=Constant];
-"1433 Constant_5145" [id=1433, type=Constant];
-"1434 Constant_5127" [id=1434, type=Constant];
-"1435 Constant_5124" [id=1435, type=Constant];
-"1436 Constant_5121" [id=1436, type=Constant];
-"1437 /layers/layers.0/blocks.1/Constant_18" [id=1437, type=Constant];
-"1438 Constant_453" [id=1438, type=Constant];
-"1439 /layers/layers.0/blocks.1/Constant_17" [id=1439, type=Constant];
-"1440 /layers/layers.0/blocks.1/Constant_16" [id=1440, type=Constant];
-"1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [id=1441, type=FakeQuantize];
-"1442 Constant_27569" [id=1442, type=Constant];
-"1443 Constant_27568" [id=1443, type=Constant];
-"1444 Constant_27567" [id=1444, type=Constant];
-"1445 Constant_27566" [id=1445, type=Constant];
-"1446 Transpose_6378" [id=1446, type=Constant];
-"1447 /layers/layers.0/blocks.1/attn/Constant_4" [id=1447, type=Constant];
-"1448 Constant_437" [id=1448, type=Constant];
-"1449 Constant_27564" [id=1449, type=Constant];
-"1450 Constant_27563" [id=1450, type=Constant];
-"1451 Constant_27562" [id=1451, type=Constant];
-"1452 Constant_27561" [id=1452, type=Constant];
-"1453 Constant_418" [id=1453, type=Constant];
-"1454 Constant_412" [id=1454, type=Constant];
-"1455 /layers/layers.0/blocks.1/attn/Constant" [id=1455, type=Constant];
-"1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [id=1456, type=FakeQuantize];
-"1457 Constant_27549" [id=1457, type=Constant];
-"1458 Constant_27548" [id=1458, type=Constant];
-"1459 Constant_27547" [id=1459, type=Constant];
-"1460 Constant_27546" [id=1460, type=Constant];
-"1461 Transpose_6375" [id=1461, type=Constant];
-"1462 /layers/layers.0/blocks.1/Constant_15" [id=1462, type=Constant];
-"1463 /layers/layers.0/blocks.1/Constant_14" [id=1463, type=Constant];
-"1464 Constant_396" [id=1464, type=Constant];
-"1465 /layers/layers.0/blocks.1/Constant_13" [id=1465, type=Constant];
-"1466 Constant_5103" [id=1466, type=Constant];
-"1467 Constant_5100" [id=1467, type=Constant];
-"1468 Constant_5097" [id=1468, type=Constant];
-"1469 Constant_5079" [id=1469, type=Constant];
-"1470 Constant_5076" [id=1470, type=Constant];
-"1471 Constant_5073" [id=1471, type=Constant];
-"1472 /layers/layers.0/blocks.1/Constant" [id=1472, type=Constant];
-"1473 Constant_27464" [id=1473, type=Constant];
-"1474 Constant_27463" [id=1474, type=Constant];
-"1475 Constant_27462" [id=1475, type=Constant];
-"1476 Constant_27461" [id=1476, type=Constant];
-"1477 Constant_7295" [id=1477, type=Constant];
-"1478 Constant_7294" [id=1478, type=Constant];
-"1479 Constant_333" [id=1479, type=Constant];
-"1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [id=1480, type=FakeQuantize];
-"1481 Constant_27544" [id=1481, type=Constant];
-"1482 Constant_27543" [id=1482, type=Constant];
-"1483 Constant_27542" [id=1483, type=Constant];
-"1484 Constant_27541" [id=1484, type=Constant];
-"1485 Transpose_6371" [id=1485, type=Constant];
-"1486 Constant_27539" [id=1486, type=Constant];
-"1487 Constant_27538" [id=1487, type=Constant];
-"1488 Constant_27537" [id=1488, type=Constant];
-"1489 Constant_27536" [id=1489, type=Constant];
-"1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [id=1490, type=FakeQuantize];
-"1491 Constant_27534" [id=1491, type=Constant];
-"1492 Constant_27533" [id=1492, type=Constant];
-"1493 Constant_27532" [id=1493, type=Constant];
-"1494 Constant_27531" [id=1494, type=Constant];
-"1495 Transpose_6367" [id=1495, type=Constant];
-"1496 Constant_27529" [id=1496, type=Constant];
-"1497 Constant_27528" [id=1497, type=Constant];
-"1498 Constant_27527" [id=1498, type=Constant];
-"1499 Constant_27526" [id=1499, type=Constant];
-"1500 Constant_7291" [id=1500, type=Constant];
-"1501 Constant_7290" [id=1501, type=Constant];
-"1502 Constant_307" [id=1502, type=Constant];
-"1503 /layers/layers.0/blocks.0/Constant_8" [id=1503, type=Constant];
-"1504 /layers/layers.0/blocks.0/Constant_7" [id=1504, type=Constant];
-"1505 Constant_296" [id=1505, type=Constant];
-"1506 /layers/layers.0/blocks.0/Constant_6" [id=1506, type=Constant];
-"1507 /layers/layers.0/blocks.0/Constant_5" [id=1507, type=Constant];
-"1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [id=1508, type=FakeQuantize];
-"1509 Constant_27524" [id=1509, type=Constant];
-"1510 Constant_27523" [id=1510, type=Constant];
-"1511 Constant_27522" [id=1511, type=Constant];
-"1512 Constant_27521" [id=1512, type=Constant];
-"1513 Transpose_6363" [id=1513, type=Constant];
-"1514 /layers/layers.0/blocks.0/attn/Constant_2" [id=1514, type=Constant];
-"1515 Constant_280" [id=1515, type=Constant];
-"1516 Constant_27519" [id=1516, type=Constant];
-"1517 Constant_27518" [id=1517, type=Constant];
-"1518 Constant_27517" [id=1518, type=Constant];
-"1519 Constant_27516" [id=1519, type=Constant];
-"1520 Constant_270" [id=1520, type=Constant];
-"1521 Constant_264" [id=1521, type=Constant];
-"1522 /layers/layers.0/blocks.0/attn/Constant" [id=1522, type=Constant];
-"1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [id=1523, type=FakeQuantize];
-"1524 Constant_27504" [id=1524, type=Constant];
-"1525 Constant_27503" [id=1525, type=Constant];
-"1526 Constant_27502" [id=1526, type=Constant];
-"1527 Constant_27501" [id=1527, type=Constant];
-"1528 Transpose_6360" [id=1528, type=Constant];
-"1529 /layers/layers.0/blocks.0/Constant_4" [id=1529, type=Constant];
-"1530 /layers/layers.0/blocks.0/Constant_3" [id=1530, type=Constant];
-"1531 Constant_248" [id=1531, type=Constant];
-"1532 /layers/layers.0/blocks.0/Constant_2" [id=1532, type=Constant];
-"1533 Constant_27499" [id=1533, type=Constant];
-"1534 Constant_27498" [id=1534, type=Constant];
-"1535 Constant_27497" [id=1535, type=Constant];
-"1536 Constant_27496" [id=1536, type=Constant];
-"1537 Constant_7286" [id=1537, type=Constant];
-"1538 Constant_7285" [id=1538, type=Constant];
-"1539 Constant_227" [id=1539, type=Constant];
-"1540 Constant_7284" [id=1540, type=Constant];
-"1541 Constant_7283" [id=1541, type=Constant];
-"1542 Constant_213" [id=1542, type=Constant];
-"1543 Constant_211" [id=1543, type=Constant];
-"1544 /patch_embed/Constant_4" [id=1544, type=Constant];
-"1545 Broadcast_201" [id=1545, type=Constant];
-"1546 /patch_embed/Constant_3" [id=1546, type=Constant];
-"1547 /patch_embed/Constant_2" [id=1547, type=Constant];
-"1548 Reshape_190" [id=1548, type=Constant];
-"1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [id=1549, type=FakeQuantize];
-"1550 Constant_27494" [id=1550, type=Constant];
-"1551 Constant_27493" [id=1551, type=Constant];
-"1552 Constant_27492" [id=1552, type=Constant];
-"1553 Constant_27491" [id=1553, type=Constant];
-"1554 Gather_7282" [id=1554, type=Constant];
-"1555 Constant_27489" [id=1555, type=Constant];
-"1556 Constant_27488" [id=1556, type=Constant];
-"1557 Constant_27487" [id=1557, type=Constant];
-"1558 Constant_27486" [id=1558, type=Constant];
-"1559 Gather_7279" [id=1559, type=Constant];
-"1560 Gather_7276" [id=1560, type=Constant];
-"1561 Constant_7287" [id=1561, type=Constant];
-"1562 onnx^^Add_2244" [id=1562, label="1562 onnx::Add_2244", type=Constant];
-"1563 Constant_268" [id=1563, type=Constant];
-"1564 /patch_embed/proj/Constant" [id=1564, type=Constant];
-"1565 Constant_27509" [id=1565, type=Constant];
-"1566 Constant_27508" [id=1566, type=Constant];
-"1567 Constant_27507" [id=1567, type=Constant];
-"1568 Constant_27506" [id=1568, type=Constant];
-"1569 Constant_27514" [id=1569, type=Constant];
-"1570 Constant_27513" [id=1570, type=Constant];
-"1571 Constant_27512" [id=1571, type=Constant];
-"1572 Constant_27511" [id=1572, type=Constant];
-"1573 Constant_7288" [id=1573, type=Constant];
-"1574 Constant_266" [id=1574, type=Constant];
-"1575 /layers/layers.0/blocks.0/Constant" [id=1575, type=Constant];
-"1576 Constant_7289" [id=1576, type=Constant];
-"1577 Constant_7292" [id=1577, type=Constant];
-"1578 Constant_7293" [id=1578, type=Constant];
-"1579 Constant_5067" [id=1579, type=Constant];
-"1580 Constant_5064" [id=1580, type=Constant];
-"1581 Constant_5061" [id=1581, type=Constant];
-"1582 Constant_5091" [id=1582, type=Constant];
-"1583 Constant_5088" [id=1583, type=Constant];
-"1584 Constant_5085" [id=1584, type=Constant];
-"1585 Constant_7296" [id=1585, type=Constant];
-"1586 /layers/layers.0/blocks.1/attn/Constant_3" [id=1586, type=Constant];
-"1587 onnx^^Add_2301" [id=1587, label="1587 onnx::Add_2301", type=Constant];
-"1588 /layers/layers.0/blocks.1/attn/Constant_2" [id=1588, type=Constant];
-"1589 onnx^^Add_2293" [id=1589, label="1589 onnx::Add_2293", type=Constant];
-"1590 Constant_416" [id=1590, type=Constant];
-"1591 Constant_27554" [id=1591, type=Constant];
-"1592 Constant_27553" [id=1592, type=Constant];
-"1593 Constant_27552" [id=1593, type=Constant];
-"1594 Constant_27551" [id=1594, type=Constant];
-"1595 Constant_27559" [id=1595, type=Constant];
-"1596 Constant_27558" [id=1596, type=Constant];
-"1597 Constant_27557" [id=1597, type=Constant];
-"1598 Constant_27556" [id=1598, type=Constant];
-"1599 Constant_7297" [id=1599, type=Constant];
-"1600 Constant_414" [id=1600, type=Constant];
-"1601 Constant_7298" [id=1601, type=Constant];
-"1602 Constant_5115" [id=1602, type=Constant];
-"1603 Constant_5112" [id=1603, type=Constant];
-"1604 Constant_5109" [id=1604, type=Constant];
-"1605 Constant_5139" [id=1605, type=Constant];
-"1606 Constant_5136" [id=1606, type=Constant];
-"1607 Constant_5133" [id=1607, type=Constant];
-"1608 Constant_7301" [id=1608, type=Constant];
-"1609 Constant_7302" [id=1609, type=Constant];
-"1610 Constant_5211" [id=1610, type=Constant];
-"1611 Constant_5208" [id=1611, type=Constant];
-"1612 Constant_5205" [id=1612, type=Constant];
-"1613 Constant_5163" [id=1613, type=Constant];
-"1614 Constant_5160" [id=1614, type=Constant];
-"1615 Constant_5157" [id=1615, type=Constant];
-"1616 Constant_5199" [id=1616, type=Constant];
-"1617 Constant_5196" [id=1617, type=Constant];
-"1618 Constant_5193" [id=1618, type=Constant];
-"1619 Constant_5175" [id=1619, type=Constant];
-"1620 Constant_5172" [id=1620, type=Constant];
-"1621 Constant_5169" [id=1621, type=Constant];
-"1622 Constant_7307" [id=1622, type=Constant];
-"1623 onnx^^Add_2389" [id=1623, label="1623 onnx::Add_2389", type=Constant];
-"1624 Constant_626" [id=1624, type=Constant];
-"1625 Constant_27614" [id=1625, type=Constant];
-"1626 Constant_27613" [id=1626, type=Constant];
-"1627 Constant_27612" [id=1627, type=Constant];
-"1628 Constant_27611" [id=1628, type=Constant];
-"1629 Constant_27619" [id=1629, type=Constant];
-"1630 Constant_27618" [id=1630, type=Constant];
-"1631 Constant_27617" [id=1631, type=Constant];
-"1632 Constant_27616" [id=1632, type=Constant];
-"1633 Constant_7308" [id=1633, type=Constant];
-"1634 Constant_624" [id=1634, type=Constant];
-"1635 Constant_7309" [id=1635, type=Constant];
-"1636 Constant_7312" [id=1636, type=Constant];
-"1637 Constant_7313" [id=1637, type=Constant];
-"1638 Constant_5235" [id=1638, type=Constant];
-"1639 Constant_5232" [id=1639, type=Constant];
-"1640 Constant_5229" [id=1640, type=Constant];
-"1641 Constant_5259" [id=1641, type=Constant];
-"1642 Constant_5256" [id=1642, type=Constant];
-"1643 Constant_5253" [id=1643, type=Constant];
-"1644 Constant_7316" [id=1644, type=Constant];
-"1645 /layers/layers.1/blocks.1/attn/Constant_3" [id=1645, type=Constant];
-"1646 onnx^^Add_2446" [id=1646, label="1646 onnx::Add_2446", type=Constant];
-"1647 /layers/layers.1/blocks.1/attn/Constant_2" [id=1647, type=Constant];
-"1648 onnx^^Add_2438" [id=1648, label="1648 onnx::Add_2438", type=Constant];
-"1649 Constant_774" [id=1649, type=Constant];
-"1650 Constant_27659" [id=1650, type=Constant];
-"1651 Constant_27658" [id=1651, type=Constant];
-"1652 Constant_27657" [id=1652, type=Constant];
-"1653 Constant_27656" [id=1653, type=Constant];
-"1654 Constant_27664" [id=1654, type=Constant];
-"1655 Constant_27663" [id=1655, type=Constant];
-"1656 Constant_27662" [id=1656, type=Constant];
-"1657 Constant_27661" [id=1657, type=Constant];
-"1658 Constant_7317" [id=1658, type=Constant];
-"1659 Constant_772" [id=1659, type=Constant];
-"1660 Constant_7318" [id=1660, type=Constant];
-"1661 Constant_5283" [id=1661, type=Constant];
-"1662 Constant_5280" [id=1662, type=Constant];
-"1663 Constant_5277" [id=1663, type=Constant];
-"1664 Constant_5307" [id=1664, type=Constant];
-"1665 Constant_5304" [id=1665, type=Constant];
-"1666 Constant_5301" [id=1666, type=Constant];
-"1667 Constant_7321" [id=1667, type=Constant];
-"1668 Constant_7322" [id=1668, type=Constant];
-"1669 Constant_5379" [id=1669, type=Constant];
-"1670 Constant_5376" [id=1670, type=Constant];
-"1671 Constant_5373" [id=1671, type=Constant];
-"1672 Constant_5331" [id=1672, type=Constant];
-"1673 Constant_5328" [id=1673, type=Constant];
-"1674 Constant_5325" [id=1674, type=Constant];
-"1675 Constant_5367" [id=1675, type=Constant];
-"1676 Constant_5364" [id=1676, type=Constant];
-"1677 Constant_5361" [id=1677, type=Constant];
-"1678 Constant_5343" [id=1678, type=Constant];
-"1679 Constant_5340" [id=1679, type=Constant];
-"1680 Constant_5337" [id=1680, type=Constant];
-"1681 Constant_7327" [id=1681, type=Constant];
-"1682 onnx^^Add_2534" [id=1682, label="1682 onnx::Add_2534", type=Constant];
-"1683 Constant_984" [id=1683, type=Constant];
-"1684 Constant_27719" [id=1684, type=Constant];
-"1685 Constant_27718" [id=1685, type=Constant];
-"1686 Constant_27717" [id=1686, type=Constant];
-"1687 Constant_27716" [id=1687, type=Constant];
-"1688 Constant_27724" [id=1688, type=Constant];
-"1689 Constant_27723" [id=1689, type=Constant];
-"1690 Constant_27722" [id=1690, type=Constant];
-"1691 Constant_27721" [id=1691, type=Constant];
-"1692 Constant_7328" [id=1692, type=Constant];
-"1693 Constant_982" [id=1693, type=Constant];
-"1694 Constant_7329" [id=1694, type=Constant];
-"1695 Constant_7332" [id=1695, type=Constant];
-"1696 Constant_7333" [id=1696, type=Constant];
-"1697 Constant_5403" [id=1697, type=Constant];
-"1698 Constant_5400" [id=1698, type=Constant];
-"1699 Constant_5397" [id=1699, type=Constant];
-"1700 Constant_5427" [id=1700, type=Constant];
-"1701 Constant_5424" [id=1701, type=Constant];
-"1702 Constant_5421" [id=1702, type=Constant];
-"1703 Constant_7336" [id=1703, type=Constant];
-"1704 /layers/layers.2/blocks.1/attn/Constant_3" [id=1704, type=Constant];
-"1705 onnx^^Add_2702" [id=1705, label="1705 onnx::Add_2702", type=Constant];
-"1706 /layers/layers.2/blocks.1/attn/Constant_2" [id=1706, type=Constant];
-"1707 onnx^^Add_2583" [id=1707, label="1707 onnx::Add_2583", type=Constant];
-"1708 Constant_1132" [id=1708, type=Constant];
-"1709 Constant_27764" [id=1709, type=Constant];
-"1710 Constant_27763" [id=1710, type=Constant];
-"1711 Constant_27762" [id=1711, type=Constant];
-"1712 Constant_27761" [id=1712, type=Constant];
-"1713 Constant_27769" [id=1713, type=Constant];
-"1714 Constant_27768" [id=1714, type=Constant];
-"1715 Constant_27767" [id=1715, type=Constant];
-"1716 Constant_27766" [id=1716, type=Constant];
-"1717 Constant_7337" [id=1717, type=Constant];
-"1718 Constant_1130" [id=1718, type=Constant];
-"1719 Constant_7338" [id=1719, type=Constant];
-"1720 Constant_5451" [id=1720, type=Constant];
-"1721 Constant_5448" [id=1721, type=Constant];
-"1722 Constant_5445" [id=1722, type=Constant];
-"1723 Constant_5475" [id=1723, type=Constant];
-"1724 Constant_5472" [id=1724, type=Constant];
-"1725 Constant_5469" [id=1725, type=Constant];
-"1726 Constant_7341" [id=1726, type=Constant];
-"1727 Constant_7342" [id=1727, type=Constant];
-"1728 Constant_7345" [id=1728, type=Constant];
-"1729 onnx^^Add_2645" [id=1729, label="1729 onnx::Add_2645", type=Constant];
-"1730 Constant_1289" [id=1730, type=Constant];
-"1731 Constant_27814" [id=1731, type=Constant];
-"1732 Constant_27813" [id=1732, type=Constant];
-"1733 Constant_27812" [id=1733, type=Constant];
-"1734 Constant_27811" [id=1734, type=Constant];
-"1735 Constant_27819" [id=1735, type=Constant];
-"1736 Constant_27818" [id=1736, type=Constant];
-"1737 Constant_27817" [id=1737, type=Constant];
-"1738 Constant_27816" [id=1738, type=Constant];
-"1739 Constant_7346" [id=1739, type=Constant];
-"1740 Constant_1287" [id=1740, type=Constant];
-"1741 Constant_7347" [id=1741, type=Constant];
-"1742 Constant_7350" [id=1742, type=Constant];
-"1743 Constant_7351" [id=1743, type=Constant];
-"1744 Constant_5499" [id=1744, type=Constant];
-"1745 Constant_5496" [id=1745, type=Constant];
-"1746 Constant_5493" [id=1746, type=Constant];
-"1747 Constant_5523" [id=1747, type=Constant];
-"1748 Constant_5520" [id=1748, type=Constant];
-"1749 Constant_5517" [id=1749, type=Constant];
-"1750 Constant_7354" [id=1750, type=Constant];
-"1751 /layers/layers.2/blocks.3/attn/Constant_3" [id=1751, type=Constant];
-"1752 /layers/layers.2/blocks.3/attn/Constant_2" [id=1752, type=Constant];
-"1753 onnx^^Add_2694" [id=1753, label="1753 onnx::Add_2694", type=Constant];
-"1754 Constant_1437" [id=1754, type=Constant];
-"1755 Constant_27859" [id=1755, type=Constant];
-"1756 Constant_27858" [id=1756, type=Constant];
-"1757 Constant_27857" [id=1757, type=Constant];
-"1758 Constant_27856" [id=1758, type=Constant];
-"1759 Constant_27864" [id=1759, type=Constant];
-"1760 Constant_27863" [id=1760, type=Constant];
-"1761 Constant_27862" [id=1761, type=Constant];
-"1762 Constant_27861" [id=1762, type=Constant];
-"1763 Constant_7355" [id=1763, type=Constant];
-"1764 Constant_1435" [id=1764, type=Constant];
-"1765 Constant_7356" [id=1765, type=Constant];
-"1766 Constant_5547" [id=1766, type=Constant];
-"1767 Constant_5544" [id=1767, type=Constant];
-"1768 Constant_5541" [id=1768, type=Constant];
-"1769 Constant_5571" [id=1769, type=Constant];
-"1770 Constant_5568" [id=1770, type=Constant];
-"1771 Constant_5565" [id=1771, type=Constant];
-"1772 Constant_7359" [id=1772, type=Constant];
-"1773 Constant_7360" [id=1773, type=Constant];
-"1774 Constant_7363" [id=1774, type=Constant];
-"1775 onnx^^Add_2756" [id=1775, label="1775 onnx::Add_2756", type=Constant];
-"1776 Constant_1594" [id=1776, type=Constant];
-"1777 Constant_27909" [id=1777, type=Constant];
-"1778 Constant_27908" [id=1778, type=Constant];
-"1779 Constant_27907" [id=1779, type=Constant];
-"1780 Constant_27906" [id=1780, type=Constant];
-"1781 Constant_27914" [id=1781, type=Constant];
-"1782 Constant_27913" [id=1782, type=Constant];
-"1783 Constant_27912" [id=1783, type=Constant];
-"1784 Constant_27911" [id=1784, type=Constant];
-"1785 Constant_7364" [id=1785, type=Constant];
-"1786 Constant_1592" [id=1786, type=Constant];
-"1787 Constant_7365" [id=1787, type=Constant];
-"1788 Constant_7368" [id=1788, type=Constant];
-"1789 Constant_7369" [id=1789, type=Constant];
-"1790 Constant_5595" [id=1790, type=Constant];
-"1791 Constant_5592" [id=1791, type=Constant];
-"1792 Constant_5589" [id=1792, type=Constant];
-"1793 Constant_5619" [id=1793, type=Constant];
-"1794 Constant_5616" [id=1794, type=Constant];
-"1795 Constant_5613" [id=1795, type=Constant];
-"1796 Constant_7372" [id=1796, type=Constant];
-"1797 /layers/layers.2/blocks.5/attn/Constant_3" [id=1797, type=Constant];
-"1798 /layers/layers.2/blocks.5/attn/Constant_2" [id=1798, type=Constant];
-"1799 onnx^^Add_2805" [id=1799, label="1799 onnx::Add_2805", type=Constant];
-"1800 Constant_1742" [id=1800, type=Constant];
-"1801 Constant_27954" [id=1801, type=Constant];
-"1802 Constant_27953" [id=1802, type=Constant];
-"1803 Constant_27952" [id=1803, type=Constant];
-"1804 Constant_27951" [id=1804, type=Constant];
-"1805 Constant_27959" [id=1805, type=Constant];
-"1806 Constant_27958" [id=1806, type=Constant];
-"1807 Constant_27957" [id=1807, type=Constant];
-"1808 Constant_27956" [id=1808, type=Constant];
-"1809 Constant_7373" [id=1809, type=Constant];
-"1810 Constant_1740" [id=1810, type=Constant];
-"1811 Constant_7374" [id=1811, type=Constant];
-"1812 Constant_5643" [id=1812, type=Constant];
-"1813 Constant_5640" [id=1813, type=Constant];
-"1814 Constant_5637" [id=1814, type=Constant];
-"1815 Constant_5667" [id=1815, type=Constant];
-"1816 Constant_5664" [id=1816, type=Constant];
-"1817 Constant_5661" [id=1817, type=Constant];
-"1818 Constant_7377" [id=1818, type=Constant];
-"1819 Constant_7378" [id=1819, type=Constant];
-"1820 Constant_5739" [id=1820, type=Constant];
-"1821 Constant_5736" [id=1821, type=Constant];
-"1822 Constant_5733" [id=1822, type=Constant];
-"1823 Constant_5691" [id=1823, type=Constant];
-"1824 Constant_5688" [id=1824, type=Constant];
-"1825 Constant_5685" [id=1825, type=Constant];
-"1826 Constant_5727" [id=1826, type=Constant];
-"1827 Constant_5724" [id=1827, type=Constant];
-"1828 Constant_5721" [id=1828, type=Constant];
-"1829 Constant_5703" [id=1829, type=Constant];
-"1830 Constant_5700" [id=1830, type=Constant];
-"1831 Constant_5697" [id=1831, type=Constant];
-"1832 Constant_7383" [id=1832, type=Constant];
-"1833 onnx^^Add_2901" [id=1833, label="1833 onnx::Add_2901", type=Constant];
-"1834 Constant_1952" [id=1834, type=Constant];
-"1835 Constant_28014" [id=1835, type=Constant];
-"1836 Constant_28013" [id=1836, type=Constant];
-"1837 Constant_28012" [id=1837, type=Constant];
-"1838 Constant_28011" [id=1838, type=Constant];
-"1839 Constant_28019" [id=1839, type=Constant];
-"1840 Constant_28018" [id=1840, type=Constant];
-"1841 Constant_28017" [id=1841, type=Constant];
-"1842 Constant_28016" [id=1842, type=Constant];
-"1843 Constant_7384" [id=1843, type=Constant];
-"1844 Constant_1950" [id=1844, type=Constant];
-"1845 Constant_7385" [id=1845, type=Constant];
-"1846 Constant_7388" [id=1846, type=Constant];
-"1847 Constant_7389" [id=1847, type=Constant];
-"1848 Constant_7392" [id=1848, type=Constant];
-"1849 onnx^^Add_2950" [id=1849, label="1849 onnx::Add_2950", type=Constant];
-"1850 Constant_2058" [id=1850, type=Constant];
-"1851 Constant_28064" [id=1851, type=Constant];
-"1852 Constant_28063" [id=1852, type=Constant];
-"1853 Constant_28062" [id=1853, type=Constant];
-"1854 Constant_28061" [id=1854, type=Constant];
-"1855 Constant_28069" [id=1855, type=Constant];
-"1856 Constant_28068" [id=1856, type=Constant];
-"1857 Constant_28067" [id=1857, type=Constant];
-"1858 Constant_28066" [id=1858, type=Constant];
-"1859 Constant_7393" [id=1859, type=Constant];
-"1860 Constant_2056" [id=1860, type=Constant];
-"1861 Constant_7394" [id=1861, type=Constant];
-"1862 Constant_7397" [id=1862, type=Constant];
-"1863 Constant_7398" [id=1863, type=Constant];
-"0 input" -> "1 Multiply_6579" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_6579" -> "2 Divide_2169" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_2169" -> "3 Divide_2169/fq_output_0" [label="[1, 3, 224, 224]", style=solid];
-"3 Divide_2169/fq_output_0" -> "4 /patch_embed/proj/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"4 /patch_embed/proj/Conv/WithoutBiases" -> "5 /patch_embed/proj/Conv" [label="[1, 96, 56, 56]", style=solid];
-"5 /patch_embed/proj/Conv" -> "6 /patch_embed/Reshape" [label="[1, 96, 56, 56]", style=solid];
-"5 /patch_embed/proj/Conv" -> "7 /patch_embed/Shape" [label="[1, 96, 56, 56]", style=solid];
-"6 /patch_embed/Reshape" -> "8 /patch_embed/Transpose" [label="[1, 96, 3136]", style=solid];
-"7 /patch_embed/Shape" -> "9 /patch_embed/Slice" [label="[4]", style=dashed];
-"8 /patch_embed/Transpose" -> "10 /patch_embed/norm/Div" [label="[1, 3136, 96]", style=solid];
-"9 /patch_embed/Slice" -> "11 /patch_embed/Concat" [label="[2]", style=dashed];
-"10 /patch_embed/norm/Div" -> "12 /patch_embed/norm/Mul" [label="[1, 3136, 96]", style=solid];
-"11 /patch_embed/Concat" -> "6 /patch_embed/Reshape" [label="[3]", style=dashed];
-"12 /patch_embed/norm/Mul" -> "13 /patch_embed/norm/Add_1" [label="[1, 3136, 96]", style=solid];
-"13 /patch_embed/norm/Add_1" -> "14 /layers/layers.0/blocks.0/Add" [label="[1, 3136, 96]", style=solid];
-"13 /patch_embed/norm/Add_1" -> "15 /layers/layers.0/blocks.0/norm1/Div" [label="[1, 3136, 96]", style=solid];
-"14 /layers/layers.0/blocks.0/Add" -> "16 /layers/layers.0/blocks.0/Add_1" [label="[1, 3136, 96]", style=solid];
-"14 /layers/layers.0/blocks.0/Add" -> "17 /layers/layers.0/blocks.0/norm2/Div" [label="[1, 3136, 96]", style=solid];
-"15 /layers/layers.0/blocks.0/norm1/Div" -> "18 /layers/layers.0/blocks.0/norm1/Mul" [label="[1, 3136, 96]", style=solid];
-"16 /layers/layers.0/blocks.0/Add_1" -> "19 /layers/layers.0/blocks.1/Add" [label="[1, 3136, 96]", style=solid];
-"16 /layers/layers.0/blocks.0/Add_1" -> "20 /layers/layers.0/blocks.1/norm1/Div" [label="[1, 3136, 96]", style=solid];
-"17 /layers/layers.0/blocks.0/norm2/Div" -> "21 /layers/layers.0/blocks.0/norm2/Mul" [label="[1, 3136, 96]", style=solid];
-"18 /layers/layers.0/blocks.0/norm1/Mul" -> "22 /layers/layers.0/blocks.0/norm1/Add_1" [label="[1, 3136, 96]", style=solid];
-"19 /layers/layers.0/blocks.1/Add" -> "23 /layers/layers.0/blocks.1/Add_1" [label="[1, 3136, 96]", style=solid];
-"19 /layers/layers.0/blocks.1/Add" -> "24 /layers/layers.0/blocks.1/norm2/Div" [label="[1, 3136, 96]", style=solid];
-"20 /layers/layers.0/blocks.1/norm1/Div" -> "25 /layers/layers.0/blocks.1/norm1/Mul" [label="[1, 3136, 96]", style=solid];
-"21 /layers/layers.0/blocks.0/norm2/Mul" -> "26 /layers/layers.0/blocks.0/norm2/Add_1" [label="[1, 3136, 96]", style=solid];
-"22 /layers/layers.0/blocks.0/norm1/Add_1" -> "27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [label="[1, 3136, 96]", style=solid];
-"23 /layers/layers.0/blocks.1/Add_1" -> "28 /layers/layers.0/downsample/Reshape" [label="[1, 3136, 96]", style=solid];
-"24 /layers/layers.0/blocks.1/norm2/Div" -> "29 /layers/layers.0/blocks.1/norm2/Mul" [label="[1, 3136, 96]", style=solid];
-"25 /layers/layers.0/blocks.1/norm1/Mul" -> "30 /layers/layers.0/blocks.1/norm1/Add_1" [label="[1, 3136, 96]", style=solid];
-"26 /layers/layers.0/blocks.0/norm2/Add_1" -> "31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [label="[1, 3136, 96]", style=solid];
-"27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" -> "32 /layers/layers.0/blocks.0/Reshape_1" [label="[1, 3136, 96]", style=solid];
-"28 /layers/layers.0/downsample/Reshape" -> "33 /layers/layers.0/downsample/Slice" [label="[1, 56, 56, 96]", style=solid];
-"28 /layers/layers.0/downsample/Reshape" -> "34 /layers/layers.0/downsample/Slice_2" [label="[1, 56, 56, 96]", style=solid];
-"29 /layers/layers.0/blocks.1/norm2/Mul" -> "35 /layers/layers.0/blocks.1/norm2/Add_1" [label="[1, 3136, 96]", style=solid];
-"30 /layers/layers.0/blocks.1/norm1/Add_1" -> "36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [label="[1, 3136, 96]", style=solid];
-"31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" -> "37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [label="[1, 3136, 96]", style=solid];
-"32 /layers/layers.0/blocks.0/Reshape_1" -> "38 /layers/layers.0/blocks.0/Transpose" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"33 /layers/layers.0/downsample/Slice" -> "39 /layers/layers.0/downsample/Slice_1" [label="[1, 28, 56, 96]", style=solid];
-"33 /layers/layers.0/downsample/Slice" -> "40 /layers/layers.0/downsample/Slice_4" [label="[1, 28, 56, 96]", style=solid];
-"34 /layers/layers.0/downsample/Slice_2" -> "41 /layers/layers.0/downsample/Slice_3" [label="[1, 28, 56, 96]", style=solid];
-"34 /layers/layers.0/downsample/Slice_2" -> "42 /layers/layers.0/downsample/Slice_5" [label="[1, 28, 56, 96]", style=solid];
-"35 /layers/layers.0/blocks.1/norm2/Add_1" -> "43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [label="[1, 3136, 96]", style=solid];
-"36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" -> "44 /layers/layers.0/blocks.1/Reshape" [label="[1, 3136, 96]", style=solid];
-"37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" -> "45 /layers/layers.0/blocks.0/mlp/fc1/Add" [label="[1, 3136, 384]", style=solid];
-"38 /layers/layers.0/blocks.0/Transpose" -> "46 /layers/layers.0/blocks.0/Reshape_2" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"39 /layers/layers.0/downsample/Slice_1" -> "47 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"40 /layers/layers.0/downsample/Slice_4" -> "47 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"41 /layers/layers.0/downsample/Slice_3" -> "47 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"42 /layers/layers.0/downsample/Slice_5" -> "47 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" -> "48 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [label="[1, 3136, 96]", style=solid];
-"44 /layers/layers.0/blocks.1/Reshape" -> "49 /layers/layers.0/blocks.1/Slice" [label="[1, 56, 56, 96]", style=solid];
-"44 /layers/layers.0/blocks.1/Reshape" -> "50 /layers/layers.0/blocks.1/Slice_1" [label="[1, 56, 56, 96]", style=solid];
-"45 /layers/layers.0/blocks.0/mlp/fc1/Add" -> "51 /layers/layers.0/blocks.0/mlp/act/Mul_1" [label="[1, 3136, 384]", style=solid];
-"46 /layers/layers.0/blocks.0/Reshape_2" -> "52 /layers/layers.0/blocks.0/Reshape_3" [label="[64, 7, 7, 96]", style=solid];
-"47 /layers/layers.0/downsample/Concat" -> "53 /layers/layers.0/downsample/Reshape_1" [label="[1, 28, 28, 384]", style=solid];
-"48 /layers/layers.0/blocks.1/mlp/fc1/MatMul" -> "54 /layers/layers.0/blocks.1/mlp/fc1/Add" [label="[1, 3136, 384]", style=solid];
-"49 /layers/layers.0/blocks.1/Slice" -> "55 /layers/layers.0/blocks.1/Concat" [label="[1, 53, 56, 96]", style=solid];
-"50 /layers/layers.0/blocks.1/Slice_1" -> "55 /layers/layers.0/blocks.1/Concat" [label="[1, 3, 56, 96]", style=solid];
-"51 /layers/layers.0/blocks.0/mlp/act/Mul_1" -> "56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[1, 3136, 384]", style=solid];
-"52 /layers/layers.0/blocks.0/Reshape_3" -> "57 /layers/layers.0/blocks.0/attn/qkv/MatMul" [label="[64, 49, 96]", style=solid];
-"53 /layers/layers.0/downsample/Reshape_1" -> "58 /layers/layers.0/downsample/norm/Div" [label="[1, 784, 384]", style=solid];
-"54 /layers/layers.0/blocks.1/mlp/fc1/Add" -> "59 /layers/layers.0/blocks.1/mlp/act/Mul_1" [label="[1, 3136, 384]", style=solid];
-"55 /layers/layers.0/blocks.1/Concat" -> "60 /layers/layers.0/blocks.1/Slice_2" [label="[1, 56, 56, 96]", style=solid];
-"55 /layers/layers.0/blocks.1/Concat" -> "61 /layers/layers.0/blocks.1/Slice_3" [label="[1, 56, 56, 96]", style=solid];
-"56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" -> "62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [label="[1, 3136, 384]", style=solid];
-"57 /layers/layers.0/blocks.0/attn/qkv/MatMul" -> "63 /layers/layers.0/blocks.0/attn/qkv/Add" [label="[64, 49, 288]", style=solid];
-"58 /layers/layers.0/downsample/norm/Div" -> "64 /layers/layers.0/downsample/norm/Mul" [label="[1, 784, 384]", style=solid];
-"59 /layers/layers.0/blocks.1/mlp/act/Mul_1" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[1, 3136, 384]", style=solid];
-"60 /layers/layers.0/blocks.1/Slice_2" -> "66 /layers/layers.0/blocks.1/Concat_1" [label="[1, 56, 53, 96]", style=solid];
-"61 /layers/layers.0/blocks.1/Slice_3" -> "66 /layers/layers.0/blocks.1/Concat_1" [label="[1, 56, 3, 96]", style=solid];
-"62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" -> "67 /layers/layers.0/blocks.0/mlp/fc2/Add" [label="[1, 3136, 96]", style=solid];
-"63 /layers/layers.0/blocks.0/attn/qkv/Add" -> "68 /layers/layers.0/blocks.0/attn/Reshape" [label="[64, 49, 288]", style=solid];
-"64 /layers/layers.0/downsample/norm/Mul" -> "69 /layers/layers.0/downsample/norm/Add_1" [label="[1, 784, 384]", style=solid];
-"65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" -> "70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [label="[1, 3136, 384]", style=solid];
-"66 /layers/layers.0/blocks.1/Concat_1" -> "71 /layers/layers.0/blocks.1/Reshape_1" [label="[1, 56, 56, 96]", style=solid];
-"67 /layers/layers.0/blocks.0/mlp/fc2/Add" -> "16 /layers/layers.0/blocks.0/Add_1" [label="[1, 3136, 96]", style=solid];
-"68 /layers/layers.0/blocks.0/attn/Reshape" -> "72 /layers/layers.0/blocks.0/attn/Transpose" [label="[64, 49, 3, 3, 32]", style=solid];
-"69 /layers/layers.0/downsample/norm/Add_1" -> "73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [label="[1, 784, 384]", style=solid];
-"70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" -> "74 /layers/layers.0/blocks.1/mlp/fc2/Add" [label="[1, 3136, 96]", style=solid];
-"71 /layers/layers.0/blocks.1/Reshape_1" -> "75 /layers/layers.0/blocks.1/Transpose" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[3, 64, 3, 49, 32]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [label="[3, 64, 3, 49, 32]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[3, 64, 3, 49, 32]", style=solid];
-"73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" -> "79 /layers/layers.0/downsample/reduction/MatMul" [label="[1, 784, 384]", style=solid];
-"74 /layers/layers.0/blocks.1/mlp/fc2/Add" -> "23 /layers/layers.0/blocks.1/Add_1" [label="[1, 3136, 96]", style=solid];
-"75 /layers/layers.0/blocks.1/Transpose" -> "80 /layers/layers.0/blocks.1/Reshape_2" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"76 /layers/layers.0/blocks.0/attn/Gather" -> "81 /layers/layers.0/blocks.0/attn/Mul" [label="[64, 3, 49, 32]", style=solid];
-"77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" -> "82 /layers/layers.0/blocks.0/attn/Gather_1" [label="[3, 64, 3, 49, 32]", style=solid];
-"78 /layers/layers.0/blocks.0/attn/Gather_2" -> "83 /layers/layers.0/blocks.0/attn/MatMul_1" [label="[64, 3, 49, 32]", style=solid];
-"79 /layers/layers.0/downsample/reduction/MatMul" -> "84 /layers/layers.1/blocks.0/Add" [label="[1, 784, 192]", style=solid];
-"79 /layers/layers.0/downsample/reduction/MatMul" -> "85 /layers/layers.1/blocks.0/norm1/Div" [label="[1, 784, 192]", style=solid];
-"80 /layers/layers.0/blocks.1/Reshape_2" -> "86 /layers/layers.0/blocks.1/Reshape_3" [label="[64, 7, 7, 96]", style=solid];
-"81 /layers/layers.0/blocks.0/attn/Mul" -> "87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [label="[64, 3, 49, 32]", style=solid];
-"82 /layers/layers.0/blocks.0/attn/Gather_1" -> "88 /layers/layers.0/blocks.0/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"83 /layers/layers.0/blocks.0/attn/MatMul_1" -> "89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [label="[64, 3, 49, 32]", style=solid];
-"84 /layers/layers.1/blocks.0/Add" -> "90 /layers/layers.1/blocks.0/Add_1" [label="[1, 784, 192]", style=solid];
-"84 /layers/layers.1/blocks.0/Add" -> "91 /layers/layers.1/blocks.0/norm2/Div" [label="[1, 784, 192]", style=solid];
-"85 /layers/layers.1/blocks.0/norm1/Div" -> "92 /layers/layers.1/blocks.0/norm1/Mul" [label="[1, 784, 192]", style=solid];
-"86 /layers/layers.0/blocks.1/Reshape_3" -> "93 /layers/layers.0/blocks.1/attn/qkv/MatMul" [label="[64, 49, 96]", style=solid];
-"87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" -> "88 /layers/layers.0/blocks.0/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"88 /layers/layers.0/blocks.0/attn/MatMul" -> "94 /layers/layers.0/blocks.0/attn/Add" [label="[64, 3, 49, 49]", style=solid];
-"89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" -> "95 /layers/layers.0/blocks.0/attn/Transpose_2" [label="[64, 3, 49, 32]", style=solid];
-"90 /layers/layers.1/blocks.0/Add_1" -> "96 /layers/layers.1/blocks.1/Add" [label="[1, 784, 192]", style=solid];
-"90 /layers/layers.1/blocks.0/Add_1" -> "97 /layers/layers.1/blocks.1/norm1/Div" [label="[1, 784, 192]", style=solid];
-"91 /layers/layers.1/blocks.0/norm2/Div" -> "98 /layers/layers.1/blocks.0/norm2/Mul" [label="[1, 784, 192]", style=solid];
-"92 /layers/layers.1/blocks.0/norm1/Mul" -> "99 /layers/layers.1/blocks.0/norm1/Add_1" [label="[1, 784, 192]", style=solid];
-"93 /layers/layers.0/blocks.1/attn/qkv/MatMul" -> "100 /layers/layers.0/blocks.1/attn/qkv/Add" [label="[64, 49, 288]", style=solid];
-"94 /layers/layers.0/blocks.0/attn/Add" -> "101 /layers/layers.0/blocks.0/attn/softmax/Softmax" [label="[64, 3, 49, 49]", style=solid];
-"95 /layers/layers.0/blocks.0/attn/Transpose_2" -> "102 /layers/layers.0/blocks.0/attn/Reshape_1" [label="[64, 49, 3, 32]", style=solid];
-"96 /layers/layers.1/blocks.1/Add" -> "103 /layers/layers.1/blocks.1/Add_1" [label="[1, 784, 192]", style=solid];
-"96 /layers/layers.1/blocks.1/Add" -> "104 /layers/layers.1/blocks.1/norm2/Div" [label="[1, 784, 192]", style=solid];
-"97 /layers/layers.1/blocks.1/norm1/Div" -> "105 /layers/layers.1/blocks.1/norm1/Mul" [label="[1, 784, 192]", style=solid];
-"98 /layers/layers.1/blocks.0/norm2/Mul" -> "106 /layers/layers.1/blocks.0/norm2/Add_1" [label="[1, 784, 192]", style=solid];
-"99 /layers/layers.1/blocks.0/norm1/Add_1" -> "107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [label="[1, 784, 192]", style=solid];
-"100 /layers/layers.0/blocks.1/attn/qkv/Add" -> "108 /layers/layers.0/blocks.1/attn/Reshape" [label="[64, 49, 288]", style=solid];
-"101 /layers/layers.0/blocks.0/attn/softmax/Softmax" -> "83 /layers/layers.0/blocks.0/attn/MatMul_1" [label="[64, 3, 49, 49]", style=solid];
-"102 /layers/layers.0/blocks.0/attn/Reshape_1" -> "109 /layers/layers.0/blocks.0/attn/proj/MatMul" [label="[64, 49, 96]", style=solid];
-"103 /layers/layers.1/blocks.1/Add_1" -> "110 /layers/layers.1/downsample/Reshape" [label="[1, 784, 192]", style=solid];
-"104 /layers/layers.1/blocks.1/norm2/Div" -> "111 /layers/layers.1/blocks.1/norm2/Mul" [label="[1, 784, 192]", style=solid];
-"105 /layers/layers.1/blocks.1/norm1/Mul" -> "112 /layers/layers.1/blocks.1/norm1/Add_1" [label="[1, 784, 192]", style=solid];
-"106 /layers/layers.1/blocks.0/norm2/Add_1" -> "113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [label="[1, 784, 192]", style=solid];
-"107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" -> "114 /layers/layers.1/blocks.0/Reshape_1" [label="[1, 784, 192]", style=solid];
-"108 /layers/layers.0/blocks.1/attn/Reshape" -> "115 /layers/layers.0/blocks.1/attn/Transpose" [label="[64, 49, 3, 3, 32]", style=solid];
-"109 /layers/layers.0/blocks.0/attn/proj/MatMul" -> "116 /layers/layers.0/blocks.0/attn/proj/Add" [label="[64, 49, 96]", style=solid];
-"110 /layers/layers.1/downsample/Reshape" -> "117 /layers/layers.1/downsample/Slice" [label="[1, 28, 28, 192]", style=solid];
-"110 /layers/layers.1/downsample/Reshape" -> "118 /layers/layers.1/downsample/Slice_2" [label="[1, 28, 28, 192]", style=solid];
-"111 /layers/layers.1/blocks.1/norm2/Mul" -> "119 /layers/layers.1/blocks.1/norm2/Add_1" [label="[1, 784, 192]", style=solid];
-"112 /layers/layers.1/blocks.1/norm1/Add_1" -> "120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [label="[1, 784, 192]", style=solid];
-"113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" -> "121 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [label="[1, 784, 192]", style=solid];
-"114 /layers/layers.1/blocks.0/Reshape_1" -> "122 /layers/layers.1/blocks.0/Transpose" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"115 /layers/layers.0/blocks.1/attn/Transpose" -> "123 /layers/layers.0/blocks.1/attn/Gather" [label="[3, 64, 3, 49, 32]", style=solid];
-"115 /layers/layers.0/blocks.1/attn/Transpose" -> "124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [label="[3, 64, 3, 49, 32]", style=solid];
-"115 /layers/layers.0/blocks.1/attn/Transpose" -> "125 /layers/layers.0/blocks.1/attn/Gather_2" [label="[3, 64, 3, 49, 32]", style=solid];
-"116 /layers/layers.0/blocks.0/attn/proj/Add" -> "126 /layers/layers.0/blocks.0/Reshape_4" [label="[64, 49, 96]", style=solid];
-"117 /layers/layers.1/downsample/Slice" -> "127 /layers/layers.1/downsample/Slice_1" [label="[1, 14, 28, 192]", style=solid];
-"117 /layers/layers.1/downsample/Slice" -> "128 /layers/layers.1/downsample/Slice_4" [label="[1, 14, 28, 192]", style=solid];
-"118 /layers/layers.1/downsample/Slice_2" -> "129 /layers/layers.1/downsample/Slice_3" [label="[1, 14, 28, 192]", style=solid];
-"118 /layers/layers.1/downsample/Slice_2" -> "130 /layers/layers.1/downsample/Slice_5" [label="[1, 14, 28, 192]", style=solid];
-"119 /layers/layers.1/blocks.1/norm2/Add_1" -> "131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [label="[1, 784, 192]", style=solid];
-"120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" -> "132 /layers/layers.1/blocks.1/Reshape" [label="[1, 784, 192]", style=solid];
-"121 /layers/layers.1/blocks.0/mlp/fc1/MatMul" -> "133 /layers/layers.1/blocks.0/mlp/fc1/Add" [label="[1, 784, 768]", style=solid];
-"122 /layers/layers.1/blocks.0/Transpose" -> "134 /layers/layers.1/blocks.0/Reshape_2" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"123 /layers/layers.0/blocks.1/attn/Gather" -> "135 /layers/layers.0/blocks.1/attn/Mul" [label="[64, 3, 49, 32]", style=solid];
-"124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" -> "136 /layers/layers.0/blocks.1/attn/Gather_1" [label="[3, 64, 3, 49, 32]", style=solid];
-"125 /layers/layers.0/blocks.1/attn/Gather_2" -> "137 /layers/layers.0/blocks.1/attn/MatMul_1" [label="[64, 3, 49, 32]", style=solid];
-"126 /layers/layers.0/blocks.0/Reshape_4" -> "138 /layers/layers.0/blocks.0/Reshape_5" [label="[64, 7, 7, 96]", style=solid];
-"127 /layers/layers.1/downsample/Slice_1" -> "139 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"128 /layers/layers.1/downsample/Slice_4" -> "139 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"129 /layers/layers.1/downsample/Slice_3" -> "139 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"130 /layers/layers.1/downsample/Slice_5" -> "139 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" -> "140 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [label="[1, 784, 192]", style=solid];
-"132 /layers/layers.1/blocks.1/Reshape" -> "141 /layers/layers.1/blocks.1/Slice" [label="[1, 28, 28, 192]", style=solid];
-"132 /layers/layers.1/blocks.1/Reshape" -> "142 /layers/layers.1/blocks.1/Slice_1" [label="[1, 28, 28, 192]", style=solid];
-"133 /layers/layers.1/blocks.0/mlp/fc1/Add" -> "143 /layers/layers.1/blocks.0/mlp/act/Mul_1" [label="[1, 784, 768]", style=solid];
-"134 /layers/layers.1/blocks.0/Reshape_2" -> "144 /layers/layers.1/blocks.0/Reshape_3" [label="[16, 7, 7, 192]", style=solid];
-"135 /layers/layers.0/blocks.1/attn/Mul" -> "145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [label="[64, 3, 49, 32]", style=solid];
-"136 /layers/layers.0/blocks.1/attn/Gather_1" -> "146 /layers/layers.0/blocks.1/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"137 /layers/layers.0/blocks.1/attn/MatMul_1" -> "147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [label="[64, 3, 49, 32]", style=solid];
-"138 /layers/layers.0/blocks.0/Reshape_5" -> "148 /layers/layers.0/blocks.0/Transpose_1" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"139 /layers/layers.1/downsample/Concat" -> "149 /layers/layers.1/downsample/Reshape_1" [label="[1, 14, 14, 768]", style=solid];
-"140 /layers/layers.1/blocks.1/mlp/fc1/MatMul" -> "150 /layers/layers.1/blocks.1/mlp/fc1/Add" [label="[1, 784, 768]", style=solid];
-"141 /layers/layers.1/blocks.1/Slice" -> "151 /layers/layers.1/blocks.1/Concat" [label="[1, 25, 28, 192]", style=solid];
-"142 /layers/layers.1/blocks.1/Slice_1" -> "151 /layers/layers.1/blocks.1/Concat" [label="[1, 3, 28, 192]", style=solid];
-"143 /layers/layers.1/blocks.0/mlp/act/Mul_1" -> "152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[1, 784, 768]", style=solid];
-"144 /layers/layers.1/blocks.0/Reshape_3" -> "153 /layers/layers.1/blocks.0/attn/qkv/MatMul" [label="[16, 49, 192]", style=solid];
-"145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" -> "146 /layers/layers.0/blocks.1/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"146 /layers/layers.0/blocks.1/attn/MatMul" -> "154 /layers/layers.0/blocks.1/attn/Add" [label="[64, 3, 49, 49]", style=solid];
-"147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" -> "155 /layers/layers.0/blocks.1/attn/Transpose_2" [label="[64, 3, 49, 32]", style=solid];
-"148 /layers/layers.0/blocks.0/Transpose_1" -> "156 /layers/layers.0/blocks.0/Reshape_6" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"149 /layers/layers.1/downsample/Reshape_1" -> "157 /layers/layers.1/downsample/norm/Div" [label="[1, 196, 768]", style=solid];
-"150 /layers/layers.1/blocks.1/mlp/fc1/Add" -> "158 /layers/layers.1/blocks.1/mlp/act/Mul_1" [label="[1, 784, 768]", style=solid];
-"151 /layers/layers.1/blocks.1/Concat" -> "159 /layers/layers.1/blocks.1/Slice_2" [label="[1, 28, 28, 192]", style=solid];
-"151 /layers/layers.1/blocks.1/Concat" -> "160 /layers/layers.1/blocks.1/Slice_3" [label="[1, 28, 28, 192]", style=solid];
-"152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" -> "161 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [label="[1, 784, 768]", style=solid];
-"153 /layers/layers.1/blocks.0/attn/qkv/MatMul" -> "162 /layers/layers.1/blocks.0/attn/qkv/Add" [label="[16, 49, 576]", style=solid];
-"154 /layers/layers.0/blocks.1/attn/Add" -> "163 /layers/layers.0/blocks.1/attn/Reshape_1" [label="[64, 3, 49, 49]", style=solid];
-"155 /layers/layers.0/blocks.1/attn/Transpose_2" -> "164 /layers/layers.0/blocks.1/attn/Reshape_3" [label="[64, 49, 3, 32]", style=solid];
-"156 /layers/layers.0/blocks.0/Reshape_6" -> "165 /layers/layers.0/blocks.0/Reshape_7" [label="[1, 56, 56, 96]", style=solid];
-"157 /layers/layers.1/downsample/norm/Div" -> "166 /layers/layers.1/downsample/norm/Mul" [label="[1, 196, 768]", style=solid];
-"158 /layers/layers.1/blocks.1/mlp/act/Mul_1" -> "167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[1, 784, 768]", style=solid];
-"159 /layers/layers.1/blocks.1/Slice_2" -> "168 /layers/layers.1/blocks.1/Concat_1" [label="[1, 28, 25, 192]", style=solid];
-"160 /layers/layers.1/blocks.1/Slice_3" -> "168 /layers/layers.1/blocks.1/Concat_1" [label="[1, 28, 3, 192]", style=solid];
-"161 /layers/layers.1/blocks.0/mlp/fc2/MatMul" -> "169 /layers/layers.1/blocks.0/mlp/fc2/Add" [label="[1, 784, 192]", style=solid];
-"162 /layers/layers.1/blocks.0/attn/qkv/Add" -> "170 /layers/layers.1/blocks.0/attn/Reshape" [label="[16, 49, 576]", style=solid];
-"163 /layers/layers.0/blocks.1/attn/Reshape_1" -> "171 /layers/layers.0/blocks.1/attn/Add_1" [label="[1, 64, 3, 49, 49]", style=solid];
-"164 /layers/layers.0/blocks.1/attn/Reshape_3" -> "172 /layers/layers.0/blocks.1/attn/proj/MatMul" [label="[64, 49, 96]", style=solid];
-"165 /layers/layers.0/blocks.0/Reshape_7" -> "14 /layers/layers.0/blocks.0/Add" [label="[1, 3136, 96]", style=solid];
-"166 /layers/layers.1/downsample/norm/Mul" -> "173 /layers/layers.1/downsample/norm/Add_1" [label="[1, 196, 768]", style=solid];
-"167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" -> "174 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [label="[1, 784, 768]", style=solid];
-"168 /layers/layers.1/blocks.1/Concat_1" -> "175 /layers/layers.1/blocks.1/Reshape_1" [label="[1, 28, 28, 192]", style=solid];
-"169 /layers/layers.1/blocks.0/mlp/fc2/Add" -> "90 /layers/layers.1/blocks.0/Add_1" [label="[1, 784, 192]", style=solid];
-"170 /layers/layers.1/blocks.0/attn/Reshape" -> "176 /layers/layers.1/blocks.0/attn/Transpose" [label="[16, 49, 3, 6, 32]", style=solid];
-"171 /layers/layers.0/blocks.1/attn/Add_1" -> "177 /layers/layers.0/blocks.1/attn/Reshape_2" [label="[1, 64, 3, 49, 49]", style=solid];
-"172 /layers/layers.0/blocks.1/attn/proj/MatMul" -> "178 /layers/layers.0/blocks.1/attn/proj/Add" [label="[64, 49, 96]", style=solid];
-"173 /layers/layers.1/downsample/norm/Add_1" -> "179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [label="[1, 196, 768]", style=solid];
-"174 /layers/layers.1/blocks.1/mlp/fc2/MatMul" -> "180 /layers/layers.1/blocks.1/mlp/fc2/Add" [label="[1, 784, 192]", style=solid];
-"175 /layers/layers.1/blocks.1/Reshape_1" -> "181 /layers/layers.1/blocks.1/Transpose" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"176 /layers/layers.1/blocks.0/attn/Transpose" -> "182 /layers/layers.1/blocks.0/attn/Gather" [label="[3, 16, 6, 49, 32]", style=solid];
-"176 /layers/layers.1/blocks.0/attn/Transpose" -> "183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [label="[3, 16, 6, 49, 32]", style=solid];
-"176 /layers/layers.1/blocks.0/attn/Transpose" -> "184 /layers/layers.1/blocks.0/attn/Gather_2" [label="[3, 16, 6, 49, 32]", style=solid];
-"177 /layers/layers.0/blocks.1/attn/Reshape_2" -> "185 /layers/layers.0/blocks.1/attn/softmax/Softmax" [label="[64, 3, 49, 49]", style=solid];
-"178 /layers/layers.0/blocks.1/attn/proj/Add" -> "186 /layers/layers.0/blocks.1/Reshape_4" [label="[64, 49, 96]", style=solid];
-"179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" -> "187 /layers/layers.1/downsample/reduction/MatMul" [label="[1, 196, 768]", style=solid];
-"180 /layers/layers.1/blocks.1/mlp/fc2/Add" -> "103 /layers/layers.1/blocks.1/Add_1" [label="[1, 784, 192]", style=solid];
-"181 /layers/layers.1/blocks.1/Transpose" -> "188 /layers/layers.1/blocks.1/Reshape_2" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"182 /layers/layers.1/blocks.0/attn/Gather" -> "189 /layers/layers.1/blocks.0/attn/Mul" [label="[16, 6, 49, 32]", style=solid];
-"183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" -> "190 /layers/layers.1/blocks.0/attn/Gather_1" [label="[3, 16, 6, 49, 32]", style=solid];
-"184 /layers/layers.1/blocks.0/attn/Gather_2" -> "191 /layers/layers.1/blocks.0/attn/MatMul_1" [label="[16, 6, 49, 32]", style=solid];
-"185 /layers/layers.0/blocks.1/attn/softmax/Softmax" -> "137 /layers/layers.0/blocks.1/attn/MatMul_1" [label="[64, 3, 49, 49]", style=solid];
-"186 /layers/layers.0/blocks.1/Reshape_4" -> "192 /layers/layers.0/blocks.1/Reshape_5" [label="[64, 7, 7, 96]", style=solid];
-"187 /layers/layers.1/downsample/reduction/MatMul" -> "193 /layers/layers.2/blocks.0/Add" [label="[1, 196, 384]", style=solid];
-"187 /layers/layers.1/downsample/reduction/MatMul" -> "194 /layers/layers.2/blocks.0/norm1/Div" [label="[1, 196, 384]", style=solid];
-"188 /layers/layers.1/blocks.1/Reshape_2" -> "195 /layers/layers.1/blocks.1/Reshape_3" [label="[16, 7, 7, 192]", style=solid];
-"189 /layers/layers.1/blocks.0/attn/Mul" -> "196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [label="[16, 6, 49, 32]", style=solid];
-"190 /layers/layers.1/blocks.0/attn/Gather_1" -> "197 /layers/layers.1/blocks.0/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"191 /layers/layers.1/blocks.0/attn/MatMul_1" -> "198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [label="[16, 6, 49, 32]", style=solid];
-"192 /layers/layers.0/blocks.1/Reshape_5" -> "199 /layers/layers.0/blocks.1/Transpose_1" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"193 /layers/layers.2/blocks.0/Add" -> "200 /layers/layers.2/blocks.0/Add_1" [label="[1, 196, 384]", style=solid];
-"193 /layers/layers.2/blocks.0/Add" -> "201 /layers/layers.2/blocks.0/norm2/Div" [label="[1, 196, 384]", style=solid];
-"194 /layers/layers.2/blocks.0/norm1/Div" -> "202 /layers/layers.2/blocks.0/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"195 /layers/layers.1/blocks.1/Reshape_3" -> "203 /layers/layers.1/blocks.1/attn/qkv/MatMul" [label="[16, 49, 192]", style=solid];
-"196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" -> "197 /layers/layers.1/blocks.0/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"197 /layers/layers.1/blocks.0/attn/MatMul" -> "204 /layers/layers.1/blocks.0/attn/Add" [label="[16, 6, 49, 49]", style=solid];
-"198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" -> "205 /layers/layers.1/blocks.0/attn/Transpose_2" [label="[16, 6, 49, 32]", style=solid];
-"199 /layers/layers.0/blocks.1/Transpose_1" -> "206 /layers/layers.0/blocks.1/Reshape_6" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"200 /layers/layers.2/blocks.0/Add_1" -> "207 /layers/layers.2/blocks.1/Add" [label="[1, 196, 384]", style=solid];
-"200 /layers/layers.2/blocks.0/Add_1" -> "208 /layers/layers.2/blocks.1/norm1/Div" [label="[1, 196, 384]", style=solid];
-"201 /layers/layers.2/blocks.0/norm2/Div" -> "209 /layers/layers.2/blocks.0/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"202 /layers/layers.2/blocks.0/norm1/Mul" -> "210 /layers/layers.2/blocks.0/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"203 /layers/layers.1/blocks.1/attn/qkv/MatMul" -> "211 /layers/layers.1/blocks.1/attn/qkv/Add" [label="[16, 49, 576]", style=solid];
-"204 /layers/layers.1/blocks.0/attn/Add" -> "212 /layers/layers.1/blocks.0/attn/softmax/Softmax" [label="[16, 6, 49, 49]", style=solid];
-"205 /layers/layers.1/blocks.0/attn/Transpose_2" -> "213 /layers/layers.1/blocks.0/attn/Reshape_1" [label="[16, 49, 6, 32]", style=solid];
-"206 /layers/layers.0/blocks.1/Reshape_6" -> "214 /layers/layers.0/blocks.1/Slice_4" [label="[1, 56, 56, 96]", style=solid];
-"206 /layers/layers.0/blocks.1/Reshape_6" -> "215 /layers/layers.0/blocks.1/Slice_5" [label="[1, 56, 56, 96]", style=solid];
-"207 /layers/layers.2/blocks.1/Add" -> "216 /layers/layers.2/blocks.1/Add_1" [label="[1, 196, 384]", style=solid];
-"207 /layers/layers.2/blocks.1/Add" -> "217 /layers/layers.2/blocks.1/norm2/Div" [label="[1, 196, 384]", style=solid];
-"208 /layers/layers.2/blocks.1/norm1/Div" -> "218 /layers/layers.2/blocks.1/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"209 /layers/layers.2/blocks.0/norm2/Mul" -> "219 /layers/layers.2/blocks.0/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"210 /layers/layers.2/blocks.0/norm1/Add_1" -> "220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"211 /layers/layers.1/blocks.1/attn/qkv/Add" -> "221 /layers/layers.1/blocks.1/attn/Reshape" [label="[16, 49, 576]", style=solid];
-"212 /layers/layers.1/blocks.0/attn/softmax/Softmax" -> "191 /layers/layers.1/blocks.0/attn/MatMul_1" [label="[16, 6, 49, 49]", style=solid];
-"213 /layers/layers.1/blocks.0/attn/Reshape_1" -> "222 /layers/layers.1/blocks.0/attn/proj/MatMul" [label="[16, 49, 192]", style=solid];
-"214 /layers/layers.0/blocks.1/Slice_4" -> "223 /layers/layers.0/blocks.1/Concat_2" [label="[1, 3, 56, 96]", style=solid];
-"215 /layers/layers.0/blocks.1/Slice_5" -> "223 /layers/layers.0/blocks.1/Concat_2" [label="[1, 53, 56, 96]", style=solid];
-"216 /layers/layers.2/blocks.1/Add_1" -> "224 /layers/layers.2/blocks.2/Add" [label="[1, 196, 384]", style=solid];
-"216 /layers/layers.2/blocks.1/Add_1" -> "225 /layers/layers.2/blocks.2/norm1/Div" [label="[1, 196, 384]", style=solid];
-"217 /layers/layers.2/blocks.1/norm2/Div" -> "226 /layers/layers.2/blocks.1/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"218 /layers/layers.2/blocks.1/norm1/Mul" -> "227 /layers/layers.2/blocks.1/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"219 /layers/layers.2/blocks.0/norm2/Add_1" -> "228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" -> "229 /layers/layers.2/blocks.0/Reshape_1" [label="[1, 196, 384]", style=solid];
-"221 /layers/layers.1/blocks.1/attn/Reshape" -> "230 /layers/layers.1/blocks.1/attn/Transpose" [label="[16, 49, 3, 6, 32]", style=solid];
-"222 /layers/layers.1/blocks.0/attn/proj/MatMul" -> "231 /layers/layers.1/blocks.0/attn/proj/Add" [label="[16, 49, 192]", style=solid];
-"223 /layers/layers.0/blocks.1/Concat_2" -> "232 /layers/layers.0/blocks.1/Slice_6" [label="[1, 56, 56, 96]", style=solid];
-"223 /layers/layers.0/blocks.1/Concat_2" -> "233 /layers/layers.0/blocks.1/Slice_7" [label="[1, 56, 56, 96]", style=solid];
-"224 /layers/layers.2/blocks.2/Add" -> "234 /layers/layers.2/blocks.2/Add_1" [label="[1, 196, 384]", style=solid];
-"224 /layers/layers.2/blocks.2/Add" -> "235 /layers/layers.2/blocks.2/norm2/Div" [label="[1, 196, 384]", style=solid];
-"225 /layers/layers.2/blocks.2/norm1/Div" -> "236 /layers/layers.2/blocks.2/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"226 /layers/layers.2/blocks.1/norm2/Mul" -> "237 /layers/layers.2/blocks.1/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"227 /layers/layers.2/blocks.1/norm1/Add_1" -> "238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" -> "239 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"229 /layers/layers.2/blocks.0/Reshape_1" -> "240 /layers/layers.2/blocks.0/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"230 /layers/layers.1/blocks.1/attn/Transpose" -> "241 /layers/layers.1/blocks.1/attn/Gather" [label="[3, 16, 6, 49, 32]", style=solid];
-"230 /layers/layers.1/blocks.1/attn/Transpose" -> "242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [label="[3, 16, 6, 49, 32]", style=solid];
-"230 /layers/layers.1/blocks.1/attn/Transpose" -> "243 /layers/layers.1/blocks.1/attn/Gather_2" [label="[3, 16, 6, 49, 32]", style=solid];
-"231 /layers/layers.1/blocks.0/attn/proj/Add" -> "244 /layers/layers.1/blocks.0/Reshape_4" [label="[16, 49, 192]", style=solid];
-"232 /layers/layers.0/blocks.1/Slice_6" -> "245 /layers/layers.0/blocks.1/Concat_3" [label="[1, 56, 3, 96]", style=solid];
-"233 /layers/layers.0/blocks.1/Slice_7" -> "245 /layers/layers.0/blocks.1/Concat_3" [label="[1, 56, 53, 96]", style=solid];
-"234 /layers/layers.2/blocks.2/Add_1" -> "246 /layers/layers.2/blocks.3/Add" [label="[1, 196, 384]", style=solid];
-"234 /layers/layers.2/blocks.2/Add_1" -> "247 /layers/layers.2/blocks.3/norm1/Div" [label="[1, 196, 384]", style=solid];
-"235 /layers/layers.2/blocks.2/norm2/Div" -> "248 /layers/layers.2/blocks.2/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"236 /layers/layers.2/blocks.2/norm1/Mul" -> "249 /layers/layers.2/blocks.2/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"237 /layers/layers.2/blocks.1/norm2/Add_1" -> "250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" -> "251 /layers/layers.2/blocks.1/Reshape" [label="[1, 196, 384]", style=solid];
-"239 /layers/layers.2/blocks.0/mlp/fc1/MatMul" -> "252 /layers/layers.2/blocks.0/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"240 /layers/layers.2/blocks.0/Transpose" -> "253 /layers/layers.2/blocks.0/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"241 /layers/layers.1/blocks.1/attn/Gather" -> "254 /layers/layers.1/blocks.1/attn/Mul" [label="[16, 6, 49, 32]", style=solid];
-"242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" -> "255 /layers/layers.1/blocks.1/attn/Gather_1" [label="[3, 16, 6, 49, 32]", style=solid];
-"243 /layers/layers.1/blocks.1/attn/Gather_2" -> "256 /layers/layers.1/blocks.1/attn/MatMul_1" [label="[16, 6, 49, 32]", style=solid];
-"244 /layers/layers.1/blocks.0/Reshape_4" -> "257 /layers/layers.1/blocks.0/Reshape_5" [label="[16, 7, 7, 192]", style=solid];
-"245 /layers/layers.0/blocks.1/Concat_3" -> "258 /layers/layers.0/blocks.1/Reshape_7" [label="[1, 56, 56, 96]", style=solid];
-"246 /layers/layers.2/blocks.3/Add" -> "259 /layers/layers.2/blocks.3/Add_1" [label="[1, 196, 384]", style=solid];
-"246 /layers/layers.2/blocks.3/Add" -> "260 /layers/layers.2/blocks.3/norm2/Div" [label="[1, 196, 384]", style=solid];
-"247 /layers/layers.2/blocks.3/norm1/Div" -> "261 /layers/layers.2/blocks.3/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"248 /layers/layers.2/blocks.2/norm2/Mul" -> "262 /layers/layers.2/blocks.2/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"249 /layers/layers.2/blocks.2/norm1/Add_1" -> "263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" -> "264 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"251 /layers/layers.2/blocks.1/Reshape" -> "265 /layers/layers.2/blocks.1/Slice" [label="[1, 14, 14, 384]", style=solid];
-"251 /layers/layers.2/blocks.1/Reshape" -> "266 /layers/layers.2/blocks.1/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"252 /layers/layers.2/blocks.0/mlp/fc1/Add" -> "267 /layers/layers.2/blocks.0/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"253 /layers/layers.2/blocks.0/Reshape_2" -> "268 /layers/layers.2/blocks.0/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"254 /layers/layers.1/blocks.1/attn/Mul" -> "269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [label="[16, 6, 49, 32]", style=solid];
-"255 /layers/layers.1/blocks.1/attn/Gather_1" -> "270 /layers/layers.1/blocks.1/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"256 /layers/layers.1/blocks.1/attn/MatMul_1" -> "271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [label="[16, 6, 49, 32]", style=solid];
-"257 /layers/layers.1/blocks.0/Reshape_5" -> "272 /layers/layers.1/blocks.0/Transpose_1" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"258 /layers/layers.0/blocks.1/Reshape_7" -> "19 /layers/layers.0/blocks.1/Add" [label="[1, 3136, 96]", style=solid];
-"259 /layers/layers.2/blocks.3/Add_1" -> "273 /layers/layers.2/blocks.4/Add" [label="[1, 196, 384]", style=solid];
-"259 /layers/layers.2/blocks.3/Add_1" -> "274 /layers/layers.2/blocks.4/norm1/Div" [label="[1, 196, 384]", style=solid];
-"260 /layers/layers.2/blocks.3/norm2/Div" -> "275 /layers/layers.2/blocks.3/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"261 /layers/layers.2/blocks.3/norm1/Mul" -> "276 /layers/layers.2/blocks.3/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"262 /layers/layers.2/blocks.2/norm2/Add_1" -> "277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" -> "278 /layers/layers.2/blocks.2/Reshape_1" [label="[1, 196, 384]", style=solid];
-"264 /layers/layers.2/blocks.1/mlp/fc1/MatMul" -> "279 /layers/layers.2/blocks.1/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"265 /layers/layers.2/blocks.1/Slice" -> "280 /layers/layers.2/blocks.1/Concat" [label="[1, 11, 14, 384]", style=solid];
-"266 /layers/layers.2/blocks.1/Slice_1" -> "280 /layers/layers.2/blocks.1/Concat" [label="[1, 3, 14, 384]", style=solid];
-"267 /layers/layers.2/blocks.0/mlp/act/Mul_1" -> "281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"268 /layers/layers.2/blocks.0/Reshape_3" -> "282 /layers/layers.2/blocks.0/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" -> "270 /layers/layers.1/blocks.1/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"270 /layers/layers.1/blocks.1/attn/MatMul" -> "283 /layers/layers.1/blocks.1/attn/Add" [label="[16, 6, 49, 49]", style=solid];
-"271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" -> "284 /layers/layers.1/blocks.1/attn/Transpose_2" [label="[16, 6, 49, 32]", style=solid];
-"272 /layers/layers.1/blocks.0/Transpose_1" -> "285 /layers/layers.1/blocks.0/Reshape_6" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"273 /layers/layers.2/blocks.4/Add" -> "286 /layers/layers.2/blocks.4/Add_1" [label="[1, 196, 384]", style=solid];
-"273 /layers/layers.2/blocks.4/Add" -> "287 /layers/layers.2/blocks.4/norm2/Div" [label="[1, 196, 384]", style=solid];
-"274 /layers/layers.2/blocks.4/norm1/Div" -> "288 /layers/layers.2/blocks.4/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"275 /layers/layers.2/blocks.3/norm2/Mul" -> "289 /layers/layers.2/blocks.3/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"276 /layers/layers.2/blocks.3/norm1/Add_1" -> "290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" -> "291 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"278 /layers/layers.2/blocks.2/Reshape_1" -> "292 /layers/layers.2/blocks.2/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"279 /layers/layers.2/blocks.1/mlp/fc1/Add" -> "293 /layers/layers.2/blocks.1/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"280 /layers/layers.2/blocks.1/Concat" -> "294 /layers/layers.2/blocks.1/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"280 /layers/layers.2/blocks.1/Concat" -> "295 /layers/layers.2/blocks.1/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" -> "296 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"282 /layers/layers.2/blocks.0/attn/qkv/MatMul" -> "297 /layers/layers.2/blocks.0/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"283 /layers/layers.1/blocks.1/attn/Add" -> "298 /layers/layers.1/blocks.1/attn/Reshape_1" [label="[16, 6, 49, 49]", style=solid];
-"284 /layers/layers.1/blocks.1/attn/Transpose_2" -> "299 /layers/layers.1/blocks.1/attn/Reshape_3" [label="[16, 49, 6, 32]", style=solid];
-"285 /layers/layers.1/blocks.0/Reshape_6" -> "300 /layers/layers.1/blocks.0/Reshape_7" [label="[1, 28, 28, 192]", style=solid];
-"286 /layers/layers.2/blocks.4/Add_1" -> "301 /layers/layers.2/blocks.5/Add" [label="[1, 196, 384]", style=solid];
-"286 /layers/layers.2/blocks.4/Add_1" -> "302 /layers/layers.2/blocks.5/norm1/Div" [label="[1, 196, 384]", style=solid];
-"287 /layers/layers.2/blocks.4/norm2/Div" -> "303 /layers/layers.2/blocks.4/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"288 /layers/layers.2/blocks.4/norm1/Mul" -> "304 /layers/layers.2/blocks.4/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"289 /layers/layers.2/blocks.3/norm2/Add_1" -> "305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" -> "306 /layers/layers.2/blocks.3/Reshape" [label="[1, 196, 384]", style=solid];
-"291 /layers/layers.2/blocks.2/mlp/fc1/MatMul" -> "307 /layers/layers.2/blocks.2/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"292 /layers/layers.2/blocks.2/Transpose" -> "308 /layers/layers.2/blocks.2/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"293 /layers/layers.2/blocks.1/mlp/act/Mul_1" -> "309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"294 /layers/layers.2/blocks.1/Slice_2" -> "310 /layers/layers.2/blocks.1/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"295 /layers/layers.2/blocks.1/Slice_3" -> "310 /layers/layers.2/blocks.1/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"296 /layers/layers.2/blocks.0/mlp/fc2/MatMul" -> "311 /layers/layers.2/blocks.0/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"297 /layers/layers.2/blocks.0/attn/qkv/Add" -> "312 /layers/layers.2/blocks.0/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"298 /layers/layers.1/blocks.1/attn/Reshape_1" -> "313 /layers/layers.1/blocks.1/attn/Add_1" [label="[1, 16, 6, 49, 49]", style=solid];
-"299 /layers/layers.1/blocks.1/attn/Reshape_3" -> "314 /layers/layers.1/blocks.1/attn/proj/MatMul" [label="[16, 49, 192]", style=solid];
-"300 /layers/layers.1/blocks.0/Reshape_7" -> "84 /layers/layers.1/blocks.0/Add" [label="[1, 784, 192]", style=solid];
-"301 /layers/layers.2/blocks.5/Add" -> "315 /layers/layers.2/blocks.5/Add_1" [label="[1, 196, 384]", style=solid];
-"301 /layers/layers.2/blocks.5/Add" -> "316 /layers/layers.2/blocks.5/norm2/Div" [label="[1, 196, 384]", style=solid];
-"302 /layers/layers.2/blocks.5/norm1/Div" -> "317 /layers/layers.2/blocks.5/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"303 /layers/layers.2/blocks.4/norm2/Mul" -> "318 /layers/layers.2/blocks.4/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"304 /layers/layers.2/blocks.4/norm1/Add_1" -> "319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" -> "320 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"306 /layers/layers.2/blocks.3/Reshape" -> "321 /layers/layers.2/blocks.3/Slice" [label="[1, 14, 14, 384]", style=solid];
-"306 /layers/layers.2/blocks.3/Reshape" -> "322 /layers/layers.2/blocks.3/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"307 /layers/layers.2/blocks.2/mlp/fc1/Add" -> "323 /layers/layers.2/blocks.2/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"308 /layers/layers.2/blocks.2/Reshape_2" -> "324 /layers/layers.2/blocks.2/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" -> "325 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"310 /layers/layers.2/blocks.1/Concat_1" -> "326 /layers/layers.2/blocks.1/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"311 /layers/layers.2/blocks.0/mlp/fc2/Add" -> "200 /layers/layers.2/blocks.0/Add_1" [label="[1, 196, 384]", style=solid];
-"312 /layers/layers.2/blocks.0/attn/Reshape" -> "327 /layers/layers.2/blocks.0/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"313 /layers/layers.1/blocks.1/attn/Add_1" -> "328 /layers/layers.1/blocks.1/attn/Reshape_2" [label="[1, 16, 6, 49, 49]", style=solid];
-"314 /layers/layers.1/blocks.1/attn/proj/MatMul" -> "329 /layers/layers.1/blocks.1/attn/proj/Add" [label="[16, 49, 192]", style=solid];
-"315 /layers/layers.2/blocks.5/Add_1" -> "330 /layers/layers.2/downsample/Reshape" [label="[1, 196, 384]", style=solid];
-"316 /layers/layers.2/blocks.5/norm2/Div" -> "331 /layers/layers.2/blocks.5/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"317 /layers/layers.2/blocks.5/norm1/Mul" -> "332 /layers/layers.2/blocks.5/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"318 /layers/layers.2/blocks.4/norm2/Add_1" -> "333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" -> "334 /layers/layers.2/blocks.4/Reshape_1" [label="[1, 196, 384]", style=solid];
-"320 /layers/layers.2/blocks.3/mlp/fc1/MatMul" -> "335 /layers/layers.2/blocks.3/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"321 /layers/layers.2/blocks.3/Slice" -> "336 /layers/layers.2/blocks.3/Concat" [label="[1, 11, 14, 384]", style=solid];
-"322 /layers/layers.2/blocks.3/Slice_1" -> "336 /layers/layers.2/blocks.3/Concat" [label="[1, 3, 14, 384]", style=solid];
-"323 /layers/layers.2/blocks.2/mlp/act/Mul_1" -> "337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"324 /layers/layers.2/blocks.2/Reshape_3" -> "338 /layers/layers.2/blocks.2/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"325 /layers/layers.2/blocks.1/mlp/fc2/MatMul" -> "339 /layers/layers.2/blocks.1/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"326 /layers/layers.2/blocks.1/Reshape_1" -> "340 /layers/layers.2/blocks.1/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"327 /layers/layers.2/blocks.0/attn/Transpose" -> "341 /layers/layers.2/blocks.0/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"327 /layers/layers.2/blocks.0/attn/Transpose" -> "342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"327 /layers/layers.2/blocks.0/attn/Transpose" -> "343 /layers/layers.2/blocks.0/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"328 /layers/layers.1/blocks.1/attn/Reshape_2" -> "344 /layers/layers.1/blocks.1/attn/softmax/Softmax" [label="[16, 6, 49, 49]", style=solid];
-"329 /layers/layers.1/blocks.1/attn/proj/Add" -> "345 /layers/layers.1/blocks.1/Reshape_4" [label="[16, 49, 192]", style=solid];
-"330 /layers/layers.2/downsample/Reshape" -> "346 /layers/layers.2/downsample/Slice" [label="[1, 14, 14, 384]", style=solid];
-"330 /layers/layers.2/downsample/Reshape" -> "347 /layers/layers.2/downsample/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"331 /layers/layers.2/blocks.5/norm2/Mul" -> "348 /layers/layers.2/blocks.5/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"332 /layers/layers.2/blocks.5/norm1/Add_1" -> "349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" -> "350 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"334 /layers/layers.2/blocks.4/Reshape_1" -> "351 /layers/layers.2/blocks.4/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"335 /layers/layers.2/blocks.3/mlp/fc1/Add" -> "352 /layers/layers.2/blocks.3/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"336 /layers/layers.2/blocks.3/Concat" -> "353 /layers/layers.2/blocks.3/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"336 /layers/layers.2/blocks.3/Concat" -> "354 /layers/layers.2/blocks.3/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" -> "355 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"338 /layers/layers.2/blocks.2/attn/qkv/MatMul" -> "356 /layers/layers.2/blocks.2/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"339 /layers/layers.2/blocks.1/mlp/fc2/Add" -> "216 /layers/layers.2/blocks.1/Add_1" [label="[1, 196, 384]", style=solid];
-"340 /layers/layers.2/blocks.1/Transpose" -> "357 /layers/layers.2/blocks.1/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"341 /layers/layers.2/blocks.0/attn/Gather" -> "358 /layers/layers.2/blocks.0/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" -> "359 /layers/layers.2/blocks.0/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"343 /layers/layers.2/blocks.0/attn/Gather_2" -> "360 /layers/layers.2/blocks.0/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"344 /layers/layers.1/blocks.1/attn/softmax/Softmax" -> "256 /layers/layers.1/blocks.1/attn/MatMul_1" [label="[16, 6, 49, 49]", style=solid];
-"345 /layers/layers.1/blocks.1/Reshape_4" -> "361 /layers/layers.1/blocks.1/Reshape_5" [label="[16, 7, 7, 192]", style=solid];
-"346 /layers/layers.2/downsample/Slice" -> "362 /layers/layers.2/downsample/Slice_1" [label="[1, 7, 14, 384]", style=solid];
-"346 /layers/layers.2/downsample/Slice" -> "363 /layers/layers.2/downsample/Slice_4" [label="[1, 7, 14, 384]", style=solid];
-"347 /layers/layers.2/downsample/Slice_2" -> "364 /layers/layers.2/downsample/Slice_3" [label="[1, 7, 14, 384]", style=solid];
-"347 /layers/layers.2/downsample/Slice_2" -> "365 /layers/layers.2/downsample/Slice_5" [label="[1, 7, 14, 384]", style=solid];
-"348 /layers/layers.2/blocks.5/norm2/Add_1" -> "366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [label="[1, 196, 384]", style=solid];
-"349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" -> "367 /layers/layers.2/blocks.5/Reshape" [label="[1, 196, 384]", style=solid];
-"350 /layers/layers.2/blocks.4/mlp/fc1/MatMul" -> "368 /layers/layers.2/blocks.4/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"351 /layers/layers.2/blocks.4/Transpose" -> "369 /layers/layers.2/blocks.4/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"352 /layers/layers.2/blocks.3/mlp/act/Mul_1" -> "370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"353 /layers/layers.2/blocks.3/Slice_2" -> "371 /layers/layers.2/blocks.3/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"354 /layers/layers.2/blocks.3/Slice_3" -> "371 /layers/layers.2/blocks.3/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"355 /layers/layers.2/blocks.2/mlp/fc2/MatMul" -> "372 /layers/layers.2/blocks.2/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"356 /layers/layers.2/blocks.2/attn/qkv/Add" -> "373 /layers/layers.2/blocks.2/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"357 /layers/layers.2/blocks.1/Reshape_2" -> "374 /layers/layers.2/blocks.1/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"358 /layers/layers.2/blocks.0/attn/Mul" -> "375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"359 /layers/layers.2/blocks.0/attn/Gather_1" -> "376 /layers/layers.2/blocks.0/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"360 /layers/layers.2/blocks.0/attn/MatMul_1" -> "377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"361 /layers/layers.1/blocks.1/Reshape_5" -> "378 /layers/layers.1/blocks.1/Transpose_1" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"362 /layers/layers.2/downsample/Slice_1" -> "379 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"363 /layers/layers.2/downsample/Slice_4" -> "379 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"364 /layers/layers.2/downsample/Slice_3" -> "379 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"365 /layers/layers.2/downsample/Slice_5" -> "379 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" -> "380 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"367 /layers/layers.2/blocks.5/Reshape" -> "381 /layers/layers.2/blocks.5/Slice" [label="[1, 14, 14, 384]", style=solid];
-"367 /layers/layers.2/blocks.5/Reshape" -> "382 /layers/layers.2/blocks.5/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"368 /layers/layers.2/blocks.4/mlp/fc1/Add" -> "383 /layers/layers.2/blocks.4/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"369 /layers/layers.2/blocks.4/Reshape_2" -> "384 /layers/layers.2/blocks.4/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" -> "385 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"371 /layers/layers.2/blocks.3/Concat_1" -> "386 /layers/layers.2/blocks.3/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"372 /layers/layers.2/blocks.2/mlp/fc2/Add" -> "234 /layers/layers.2/blocks.2/Add_1" [label="[1, 196, 384]", style=solid];
-"373 /layers/layers.2/blocks.2/attn/Reshape" -> "387 /layers/layers.2/blocks.2/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"374 /layers/layers.2/blocks.1/Reshape_3" -> "388 /layers/layers.2/blocks.1/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" -> "376 /layers/layers.2/blocks.0/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"376 /layers/layers.2/blocks.0/attn/MatMul" -> "389 /layers/layers.2/blocks.0/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" -> "390 /layers/layers.2/blocks.0/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"378 /layers/layers.1/blocks.1/Transpose_1" -> "391 /layers/layers.1/blocks.1/Reshape_6" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"379 /layers/layers.2/downsample/Concat" -> "392 /layers/layers.2/downsample/Reshape_1" [label="[1, 7, 7, 1536]", style=solid];
-"380 /layers/layers.2/blocks.5/mlp/fc1/MatMul" -> "393 /layers/layers.2/blocks.5/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"381 /layers/layers.2/blocks.5/Slice" -> "394 /layers/layers.2/blocks.5/Concat" [label="[1, 11, 14, 384]", style=solid];
-"382 /layers/layers.2/blocks.5/Slice_1" -> "394 /layers/layers.2/blocks.5/Concat" [label="[1, 3, 14, 384]", style=solid];
-"383 /layers/layers.2/blocks.4/mlp/act/Mul_1" -> "395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"384 /layers/layers.2/blocks.4/Reshape_3" -> "396 /layers/layers.2/blocks.4/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"385 /layers/layers.2/blocks.3/mlp/fc2/MatMul" -> "397 /layers/layers.2/blocks.3/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"386 /layers/layers.2/blocks.3/Reshape_1" -> "398 /layers/layers.2/blocks.3/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"387 /layers/layers.2/blocks.2/attn/Transpose" -> "399 /layers/layers.2/blocks.2/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"387 /layers/layers.2/blocks.2/attn/Transpose" -> "400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"387 /layers/layers.2/blocks.2/attn/Transpose" -> "401 /layers/layers.2/blocks.2/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"388 /layers/layers.2/blocks.1/attn/qkv/MatMul" -> "402 /layers/layers.2/blocks.1/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"389 /layers/layers.2/blocks.0/attn/Add" -> "403 /layers/layers.2/blocks.0/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"390 /layers/layers.2/blocks.0/attn/Transpose_2" -> "404 /layers/layers.2/blocks.0/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"391 /layers/layers.1/blocks.1/Reshape_6" -> "405 /layers/layers.1/blocks.1/Slice_4" [label="[1, 28, 28, 192]", style=solid];
-"391 /layers/layers.1/blocks.1/Reshape_6" -> "406 /layers/layers.1/blocks.1/Slice_5" [label="[1, 28, 28, 192]", style=solid];
-"392 /layers/layers.2/downsample/Reshape_1" -> "407 /layers/layers.2/downsample/norm/Div" [label="[1, 49, 1536]", style=solid];
-"393 /layers/layers.2/blocks.5/mlp/fc1/Add" -> "408 /layers/layers.2/blocks.5/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"394 /layers/layers.2/blocks.5/Concat" -> "409 /layers/layers.2/blocks.5/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"394 /layers/layers.2/blocks.5/Concat" -> "410 /layers/layers.2/blocks.5/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" -> "411 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"396 /layers/layers.2/blocks.4/attn/qkv/MatMul" -> "412 /layers/layers.2/blocks.4/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"397 /layers/layers.2/blocks.3/mlp/fc2/Add" -> "259 /layers/layers.2/blocks.3/Add_1" [label="[1, 196, 384]", style=solid];
-"398 /layers/layers.2/blocks.3/Transpose" -> "413 /layers/layers.2/blocks.3/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"399 /layers/layers.2/blocks.2/attn/Gather" -> "414 /layers/layers.2/blocks.2/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" -> "415 /layers/layers.2/blocks.2/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"401 /layers/layers.2/blocks.2/attn/Gather_2" -> "416 /layers/layers.2/blocks.2/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"402 /layers/layers.2/blocks.1/attn/qkv/Add" -> "417 /layers/layers.2/blocks.1/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"403 /layers/layers.2/blocks.0/attn/softmax/Softmax" -> "360 /layers/layers.2/blocks.0/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"404 /layers/layers.2/blocks.0/attn/Reshape_1" -> "418 /layers/layers.2/blocks.0/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"405 /layers/layers.1/blocks.1/Slice_4" -> "419 /layers/layers.1/blocks.1/Concat_2" [label="[1, 3, 28, 192]", style=solid];
-"406 /layers/layers.1/blocks.1/Slice_5" -> "419 /layers/layers.1/blocks.1/Concat_2" [label="[1, 25, 28, 192]", style=solid];
-"407 /layers/layers.2/downsample/norm/Div" -> "420 /layers/layers.2/downsample/norm/Mul" [label="[1, 49, 1536]", style=solid];
-"408 /layers/layers.2/blocks.5/mlp/act/Mul_1" -> "421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [label="[1, 196, 1536]", style=solid];
-"409 /layers/layers.2/blocks.5/Slice_2" -> "422 /layers/layers.2/blocks.5/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"410 /layers/layers.2/blocks.5/Slice_3" -> "422 /layers/layers.2/blocks.5/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"411 /layers/layers.2/blocks.4/mlp/fc2/MatMul" -> "423 /layers/layers.2/blocks.4/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"412 /layers/layers.2/blocks.4/attn/qkv/Add" -> "424 /layers/layers.2/blocks.4/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"413 /layers/layers.2/blocks.3/Reshape_2" -> "425 /layers/layers.2/blocks.3/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"414 /layers/layers.2/blocks.2/attn/Mul" -> "426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"415 /layers/layers.2/blocks.2/attn/Gather_1" -> "427 /layers/layers.2/blocks.2/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"416 /layers/layers.2/blocks.2/attn/MatMul_1" -> "428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"417 /layers/layers.2/blocks.1/attn/Reshape" -> "429 /layers/layers.2/blocks.1/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"418 /layers/layers.2/blocks.0/attn/proj/MatMul" -> "430 /layers/layers.2/blocks.0/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"419 /layers/layers.1/blocks.1/Concat_2" -> "431 /layers/layers.1/blocks.1/Slice_6" [label="[1, 28, 28, 192]", style=solid];
-"419 /layers/layers.1/blocks.1/Concat_2" -> "432 /layers/layers.1/blocks.1/Slice_7" [label="[1, 28, 28, 192]", style=solid];
-"420 /layers/layers.2/downsample/norm/Mul" -> "433 /layers/layers.2/downsample/norm/Add_1" [label="[1, 49, 1536]", style=solid];
-"421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" -> "434 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"422 /layers/layers.2/blocks.5/Concat_1" -> "435 /layers/layers.2/blocks.5/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"423 /layers/layers.2/blocks.4/mlp/fc2/Add" -> "286 /layers/layers.2/blocks.4/Add_1" [label="[1, 196, 384]", style=solid];
-"424 /layers/layers.2/blocks.4/attn/Reshape" -> "436 /layers/layers.2/blocks.4/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"425 /layers/layers.2/blocks.3/Reshape_3" -> "437 /layers/layers.2/blocks.3/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" -> "427 /layers/layers.2/blocks.2/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"427 /layers/layers.2/blocks.2/attn/MatMul" -> "438 /layers/layers.2/blocks.2/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" -> "439 /layers/layers.2/blocks.2/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"429 /layers/layers.2/blocks.1/attn/Transpose" -> "440 /layers/layers.2/blocks.1/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"429 /layers/layers.2/blocks.1/attn/Transpose" -> "441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"429 /layers/layers.2/blocks.1/attn/Transpose" -> "442 /layers/layers.2/blocks.1/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"430 /layers/layers.2/blocks.0/attn/proj/Add" -> "443 /layers/layers.2/blocks.0/Reshape_4" [label="[4, 49, 384]", style=solid];
-"431 /layers/layers.1/blocks.1/Slice_6" -> "444 /layers/layers.1/blocks.1/Concat_3" [label="[1, 28, 3, 192]", style=solid];
-"432 /layers/layers.1/blocks.1/Slice_7" -> "444 /layers/layers.1/blocks.1/Concat_3" [label="[1, 28, 25, 192]", style=solid];
-"433 /layers/layers.2/downsample/norm/Add_1" -> "445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [label="[1, 49, 1536]", style=solid];
-"434 /layers/layers.2/blocks.5/mlp/fc2/MatMul" -> "446 /layers/layers.2/blocks.5/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"435 /layers/layers.2/blocks.5/Reshape_1" -> "447 /layers/layers.2/blocks.5/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"436 /layers/layers.2/blocks.4/attn/Transpose" -> "448 /layers/layers.2/blocks.4/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"436 /layers/layers.2/blocks.4/attn/Transpose" -> "449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"436 /layers/layers.2/blocks.4/attn/Transpose" -> "450 /layers/layers.2/blocks.4/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"437 /layers/layers.2/blocks.3/attn/qkv/MatMul" -> "451 /layers/layers.2/blocks.3/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"438 /layers/layers.2/blocks.2/attn/Add" -> "452 /layers/layers.2/blocks.2/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"439 /layers/layers.2/blocks.2/attn/Transpose_2" -> "453 /layers/layers.2/blocks.2/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"440 /layers/layers.2/blocks.1/attn/Gather" -> "454 /layers/layers.2/blocks.1/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" -> "455 /layers/layers.2/blocks.1/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"442 /layers/layers.2/blocks.1/attn/Gather_2" -> "456 /layers/layers.2/blocks.1/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"443 /layers/layers.2/blocks.0/Reshape_4" -> "457 /layers/layers.2/blocks.0/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"444 /layers/layers.1/blocks.1/Concat_3" -> "458 /layers/layers.1/blocks.1/Reshape_7" [label="[1, 28, 28, 192]", style=solid];
-"445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" -> "459 /layers/layers.2/downsample/reduction/MatMul" [label="[1, 49, 1536]", style=solid];
-"446 /layers/layers.2/blocks.5/mlp/fc2/Add" -> "315 /layers/layers.2/blocks.5/Add_1" [label="[1, 196, 384]", style=solid];
-"447 /layers/layers.2/blocks.5/Transpose" -> "460 /layers/layers.2/blocks.5/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"448 /layers/layers.2/blocks.4/attn/Gather" -> "461 /layers/layers.2/blocks.4/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" -> "462 /layers/layers.2/blocks.4/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"450 /layers/layers.2/blocks.4/attn/Gather_2" -> "463 /layers/layers.2/blocks.4/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"451 /layers/layers.2/blocks.3/attn/qkv/Add" -> "464 /layers/layers.2/blocks.3/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"452 /layers/layers.2/blocks.2/attn/softmax/Softmax" -> "416 /layers/layers.2/blocks.2/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"453 /layers/layers.2/blocks.2/attn/Reshape_1" -> "465 /layers/layers.2/blocks.2/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"454 /layers/layers.2/blocks.1/attn/Mul" -> "466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"455 /layers/layers.2/blocks.1/attn/Gather_1" -> "467 /layers/layers.2/blocks.1/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"456 /layers/layers.2/blocks.1/attn/MatMul_1" -> "468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"457 /layers/layers.2/blocks.0/Reshape_5" -> "469 /layers/layers.2/blocks.0/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"458 /layers/layers.1/blocks.1/Reshape_7" -> "96 /layers/layers.1/blocks.1/Add" [label="[1, 784, 192]", style=solid];
-"459 /layers/layers.2/downsample/reduction/MatMul" -> "470 /layers/layers.3/blocks.0/Add" [label="[1, 49, 768]", style=solid];
-"459 /layers/layers.2/downsample/reduction/MatMul" -> "471 /layers/layers.3/blocks.0/norm1/Div" [label="[1, 49, 768]", style=solid];
-"460 /layers/layers.2/blocks.5/Reshape_2" -> "472 /layers/layers.2/blocks.5/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"461 /layers/layers.2/blocks.4/attn/Mul" -> "473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"462 /layers/layers.2/blocks.4/attn/Gather_1" -> "474 /layers/layers.2/blocks.4/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"463 /layers/layers.2/blocks.4/attn/MatMul_1" -> "475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"464 /layers/layers.2/blocks.3/attn/Reshape" -> "476 /layers/layers.2/blocks.3/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"465 /layers/layers.2/blocks.2/attn/proj/MatMul" -> "477 /layers/layers.2/blocks.2/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" -> "467 /layers/layers.2/blocks.1/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"467 /layers/layers.2/blocks.1/attn/MatMul" -> "478 /layers/layers.2/blocks.1/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" -> "479 /layers/layers.2/blocks.1/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"469 /layers/layers.2/blocks.0/Transpose_1" -> "480 /layers/layers.2/blocks.0/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"470 /layers/layers.3/blocks.0/Add" -> "481 /layers/layers.3/blocks.0/Add_1" [label="[1, 49, 768]", style=solid];
-"470 /layers/layers.3/blocks.0/Add" -> "482 /layers/layers.3/blocks.0/norm2/Div" [label="[1, 49, 768]", style=solid];
-"471 /layers/layers.3/blocks.0/norm1/Div" -> "483 /layers/layers.3/blocks.0/norm1/Mul" [label="[1, 49, 768]", style=solid];
-"472 /layers/layers.2/blocks.5/Reshape_3" -> "484 /layers/layers.2/blocks.5/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" -> "474 /layers/layers.2/blocks.4/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"474 /layers/layers.2/blocks.4/attn/MatMul" -> "485 /layers/layers.2/blocks.4/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" -> "486 /layers/layers.2/blocks.4/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"476 /layers/layers.2/blocks.3/attn/Transpose" -> "487 /layers/layers.2/blocks.3/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"476 /layers/layers.2/blocks.3/attn/Transpose" -> "488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"476 /layers/layers.2/blocks.3/attn/Transpose" -> "489 /layers/layers.2/blocks.3/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"477 /layers/layers.2/blocks.2/attn/proj/Add" -> "490 /layers/layers.2/blocks.2/Reshape_4" [label="[4, 49, 384]", style=solid];
-"478 /layers/layers.2/blocks.1/attn/Add" -> "491 /layers/layers.2/blocks.1/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"479 /layers/layers.2/blocks.1/attn/Transpose_2" -> "492 /layers/layers.2/blocks.1/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"480 /layers/layers.2/blocks.0/Reshape_6" -> "493 /layers/layers.2/blocks.0/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"481 /layers/layers.3/blocks.0/Add_1" -> "494 /layers/layers.3/blocks.1/Add" [label="[1, 49, 768]", style=solid];
-"481 /layers/layers.3/blocks.0/Add_1" -> "495 /layers/layers.3/blocks.1/norm1/Div" [label="[1, 49, 768]", style=solid];
-"482 /layers/layers.3/blocks.0/norm2/Div" -> "496 /layers/layers.3/blocks.0/norm2/Mul" [label="[1, 49, 768]", style=solid];
-"483 /layers/layers.3/blocks.0/norm1/Mul" -> "497 /layers/layers.3/blocks.0/norm1/Add_1" [label="[1, 49, 768]", style=solid];
-"484 /layers/layers.2/blocks.5/attn/qkv/MatMul" -> "498 /layers/layers.2/blocks.5/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"485 /layers/layers.2/blocks.4/attn/Add" -> "499 /layers/layers.2/blocks.4/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"486 /layers/layers.2/blocks.4/attn/Transpose_2" -> "500 /layers/layers.2/blocks.4/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"487 /layers/layers.2/blocks.3/attn/Gather" -> "501 /layers/layers.2/blocks.3/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" -> "502 /layers/layers.2/blocks.3/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"489 /layers/layers.2/blocks.3/attn/Gather_2" -> "503 /layers/layers.2/blocks.3/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"490 /layers/layers.2/blocks.2/Reshape_4" -> "504 /layers/layers.2/blocks.2/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"491 /layers/layers.2/blocks.1/attn/Reshape_1" -> "505 /layers/layers.2/blocks.1/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"492 /layers/layers.2/blocks.1/attn/Reshape_3" -> "506 /layers/layers.2/blocks.1/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"493 /layers/layers.2/blocks.0/Reshape_7" -> "193 /layers/layers.2/blocks.0/Add" [label="[1, 196, 384]", style=solid];
-"494 /layers/layers.3/blocks.1/Add" -> "507 /layers/layers.3/blocks.1/Add_1" [label="[1, 49, 768]", style=solid];
-"494 /layers/layers.3/blocks.1/Add" -> "508 /layers/layers.3/blocks.1/norm2/Div" [label="[1, 49, 768]", style=solid];
-"495 /layers/layers.3/blocks.1/norm1/Div" -> "509 /layers/layers.3/blocks.1/norm1/Mul" [label="[1, 49, 768]", style=solid];
-"496 /layers/layers.3/blocks.0/norm2/Mul" -> "510 /layers/layers.3/blocks.0/norm2/Add_1" [label="[1, 49, 768]", style=solid];
-"497 /layers/layers.3/blocks.0/norm1/Add_1" -> "511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [label="[1, 49, 768]", style=solid];
-"498 /layers/layers.2/blocks.5/attn/qkv/Add" -> "512 /layers/layers.2/blocks.5/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"499 /layers/layers.2/blocks.4/attn/softmax/Softmax" -> "463 /layers/layers.2/blocks.4/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"500 /layers/layers.2/blocks.4/attn/Reshape_1" -> "513 /layers/layers.2/blocks.4/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"501 /layers/layers.2/blocks.3/attn/Mul" -> "514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"502 /layers/layers.2/blocks.3/attn/Gather_1" -> "515 /layers/layers.2/blocks.3/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"503 /layers/layers.2/blocks.3/attn/MatMul_1" -> "516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"504 /layers/layers.2/blocks.2/Reshape_5" -> "517 /layers/layers.2/blocks.2/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"505 /layers/layers.2/blocks.1/attn/Add_1" -> "518 /layers/layers.2/blocks.1/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"506 /layers/layers.2/blocks.1/attn/proj/MatMul" -> "519 /layers/layers.2/blocks.1/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"507 /layers/layers.3/blocks.1/Add_1" -> "520 /norm/Div" [label="[1, 49, 768]", style=solid];
-"508 /layers/layers.3/blocks.1/norm2/Div" -> "521 /layers/layers.3/blocks.1/norm2/Mul" [label="[1, 49, 768]", style=solid];
-"509 /layers/layers.3/blocks.1/norm1/Mul" -> "522 /layers/layers.3/blocks.1/norm1/Add_1" [label="[1, 49, 768]", style=solid];
-"510 /layers/layers.3/blocks.0/norm2/Add_1" -> "523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [label="[1, 49, 768]", style=solid];
-"511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" -> "524 /layers/layers.3/blocks.0/Reshape_1" [label="[1, 49, 768]", style=solid];
-"512 /layers/layers.2/blocks.5/attn/Reshape" -> "525 /layers/layers.2/blocks.5/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"513 /layers/layers.2/blocks.4/attn/proj/MatMul" -> "526 /layers/layers.2/blocks.4/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" -> "515 /layers/layers.2/blocks.3/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"515 /layers/layers.2/blocks.3/attn/MatMul" -> "527 /layers/layers.2/blocks.3/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" -> "528 /layers/layers.2/blocks.3/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"517 /layers/layers.2/blocks.2/Transpose_1" -> "529 /layers/layers.2/blocks.2/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"518 /layers/layers.2/blocks.1/attn/Reshape_2" -> "530 /layers/layers.2/blocks.1/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"519 /layers/layers.2/blocks.1/attn/proj/Add" -> "531 /layers/layers.2/blocks.1/Reshape_4" [label="[4, 49, 384]", style=solid];
-"520 /norm/Div" -> "532 /norm/Mul" [label="[1, 49, 768]", style=solid];
-"521 /layers/layers.3/blocks.1/norm2/Mul" -> "533 /layers/layers.3/blocks.1/norm2/Add_1" [label="[1, 49, 768]", style=solid];
-"522 /layers/layers.3/blocks.1/norm1/Add_1" -> "534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [label="[1, 49, 768]", style=solid];
-"523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" -> "535 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [label="[1, 49, 768]", style=solid];
-"524 /layers/layers.3/blocks.0/Reshape_1" -> "536 /layers/layers.3/blocks.0/Transpose" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"525 /layers/layers.2/blocks.5/attn/Transpose" -> "537 /layers/layers.2/blocks.5/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"525 /layers/layers.2/blocks.5/attn/Transpose" -> "538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [label="[3, 4, 12, 49, 32]", style=solid];
-"525 /layers/layers.2/blocks.5/attn/Transpose" -> "539 /layers/layers.2/blocks.5/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"526 /layers/layers.2/blocks.4/attn/proj/Add" -> "540 /layers/layers.2/blocks.4/Reshape_4" [label="[4, 49, 384]", style=solid];
-"527 /layers/layers.2/blocks.3/attn/Add" -> "541 /layers/layers.2/blocks.3/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"528 /layers/layers.2/blocks.3/attn/Transpose_2" -> "542 /layers/layers.2/blocks.3/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"529 /layers/layers.2/blocks.2/Reshape_6" -> "543 /layers/layers.2/blocks.2/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"530 /layers/layers.2/blocks.1/attn/softmax/Softmax" -> "456 /layers/layers.2/blocks.1/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"531 /layers/layers.2/blocks.1/Reshape_4" -> "544 /layers/layers.2/blocks.1/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"532 /norm/Mul" -> "545 /norm/Add_1" [label="[1, 49, 768]", style=solid];
-"533 /layers/layers.3/blocks.1/norm2/Add_1" -> "546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [label="[1, 49, 768]", style=solid];
-"534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" -> "547 /layers/layers.3/blocks.1/Reshape_1" [label="[1, 49, 768]", style=solid];
-"535 /layers/layers.3/blocks.0/mlp/fc1/MatMul" -> "548 /layers/layers.3/blocks.0/mlp/fc1/Add" [label="[1, 49, 3072]", style=solid];
-"536 /layers/layers.3/blocks.0/Transpose" -> "549 /layers/layers.3/blocks.0/Reshape_2" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"537 /layers/layers.2/blocks.5/attn/Gather" -> "550 /layers/layers.2/blocks.5/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" -> "551 /layers/layers.2/blocks.5/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"539 /layers/layers.2/blocks.5/attn/Gather_2" -> "552 /layers/layers.2/blocks.5/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"540 /layers/layers.2/blocks.4/Reshape_4" -> "553 /layers/layers.2/blocks.4/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"541 /layers/layers.2/blocks.3/attn/Reshape_1" -> "554 /layers/layers.2/blocks.3/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"542 /layers/layers.2/blocks.3/attn/Reshape_3" -> "555 /layers/layers.2/blocks.3/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"543 /layers/layers.2/blocks.2/Reshape_7" -> "224 /layers/layers.2/blocks.2/Add" [label="[1, 196, 384]", style=solid];
-"544 /layers/layers.2/blocks.1/Reshape_5" -> "556 /layers/layers.2/blocks.1/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"545 /norm/Add_1" -> "557 ReduceMean_6037" [label="[1, 49, 768]", style=solid];
-"546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" -> "558 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [label="[1, 49, 768]", style=solid];
-"547 /layers/layers.3/blocks.1/Reshape_1" -> "559 /layers/layers.3/blocks.1/Transpose" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"548 /layers/layers.3/blocks.0/mlp/fc1/Add" -> "560 /layers/layers.3/blocks.0/mlp/act/Mul_1" [label="[1, 49, 3072]", style=solid];
-"549 /layers/layers.3/blocks.0/Reshape_2" -> "561 /layers/layers.3/blocks.0/Reshape_3" [label="[1, 7, 7, 768]", style=solid];
-"550 /layers/layers.2/blocks.5/attn/Mul" -> "562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"551 /layers/layers.2/blocks.5/attn/Gather_1" -> "563 /layers/layers.2/blocks.5/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"552 /layers/layers.2/blocks.5/attn/MatMul_1" -> "564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [label="[4, 12, 49, 32]", style=solid];
-"553 /layers/layers.2/blocks.4/Reshape_5" -> "565 /layers/layers.2/blocks.4/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"554 /layers/layers.2/blocks.3/attn/Add_1" -> "566 /layers/layers.2/blocks.3/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"555 /layers/layers.2/blocks.3/attn/proj/MatMul" -> "567 /layers/layers.2/blocks.3/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"556 /layers/layers.2/blocks.1/Transpose_1" -> "568 /layers/layers.2/blocks.1/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"557 ReduceMean_6037" -> "569 ReduceMean_6037/fq_output_0" [label="[1, 1, 768]", style=solid];
-"558 /layers/layers.3/blocks.1/mlp/fc1/MatMul" -> "570 /layers/layers.3/blocks.1/mlp/fc1/Add" [label="[1, 49, 3072]", style=solid];
-"559 /layers/layers.3/blocks.1/Transpose" -> "571 /layers/layers.3/blocks.1/Reshape_2" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"560 /layers/layers.3/blocks.0/mlp/act/Mul_1" -> "572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[1, 49, 3072]", style=solid];
-"561 /layers/layers.3/blocks.0/Reshape_3" -> "573 /layers/layers.3/blocks.0/attn/qkv/MatMul" [label="[1, 49, 768]", style=solid];
-"562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" -> "563 /layers/layers.2/blocks.5/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"563 /layers/layers.2/blocks.5/attn/MatMul" -> "574 /layers/layers.2/blocks.5/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" -> "575 /layers/layers.2/blocks.5/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"565 /layers/layers.2/blocks.4/Transpose_1" -> "576 /layers/layers.2/blocks.4/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"566 /layers/layers.2/blocks.3/attn/Reshape_2" -> "577 /layers/layers.2/blocks.3/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"567 /layers/layers.2/blocks.3/attn/proj/Add" -> "578 /layers/layers.2/blocks.3/Reshape_4" [label="[4, 49, 384]", style=solid];
-"568 /layers/layers.2/blocks.1/Reshape_6" -> "579 /layers/layers.2/blocks.1/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"568 /layers/layers.2/blocks.1/Reshape_6" -> "580 /layers/layers.2/blocks.1/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"569 ReduceMean_6037/fq_output_0" -> "581 /avgpool/GlobalAveragePool" [label="[1, 1, 768]", style=solid];
-"570 /layers/layers.3/blocks.1/mlp/fc1/Add" -> "582 /layers/layers.3/blocks.1/mlp/act/Mul_1" [label="[1, 49, 3072]", style=solid];
-"571 /layers/layers.3/blocks.1/Reshape_2" -> "583 /layers/layers.3/blocks.1/Reshape_3" [label="[1, 7, 7, 768]", style=solid];
-"572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" -> "584 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [label="[1, 49, 3072]", style=solid];
-"573 /layers/layers.3/blocks.0/attn/qkv/MatMul" -> "585 /layers/layers.3/blocks.0/attn/qkv/Add" [label="[1, 49, 2304]", style=solid];
-"574 /layers/layers.2/blocks.5/attn/Add" -> "586 /layers/layers.2/blocks.5/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"575 /layers/layers.2/blocks.5/attn/Transpose_2" -> "587 /layers/layers.2/blocks.5/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"576 /layers/layers.2/blocks.4/Reshape_6" -> "588 /layers/layers.2/blocks.4/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"577 /layers/layers.2/blocks.3/attn/softmax/Softmax" -> "503 /layers/layers.2/blocks.3/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"578 /layers/layers.2/blocks.3/Reshape_4" -> "589 /layers/layers.2/blocks.3/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"579 /layers/layers.2/blocks.1/Slice_4" -> "590 /layers/layers.2/blocks.1/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"580 /layers/layers.2/blocks.1/Slice_5" -> "590 /layers/layers.2/blocks.1/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"581 /avgpool/GlobalAveragePool" -> "591 /Flatten" [label="[1, 768, 1]", style=solid];
-"582 /layers/layers.3/blocks.1/mlp/act/Mul_1" -> "592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[1, 49, 3072]", style=solid];
-"583 /layers/layers.3/blocks.1/Reshape_3" -> "593 /layers/layers.3/blocks.1/attn/qkv/MatMul" [label="[1, 49, 768]", style=solid];
-"584 /layers/layers.3/blocks.0/mlp/fc2/MatMul" -> "594 /layers/layers.3/blocks.0/mlp/fc2/Add" [label="[1, 49, 768]", style=solid];
-"585 /layers/layers.3/blocks.0/attn/qkv/Add" -> "595 /layers/layers.3/blocks.0/attn/Reshape" [label="[1, 49, 2304]", style=solid];
-"586 /layers/layers.2/blocks.5/attn/Reshape_1" -> "596 /layers/layers.2/blocks.5/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"587 /layers/layers.2/blocks.5/attn/Reshape_3" -> "597 /layers/layers.2/blocks.5/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"588 /layers/layers.2/blocks.4/Reshape_7" -> "273 /layers/layers.2/blocks.4/Add" [label="[1, 196, 384]", style=solid];
-"589 /layers/layers.2/blocks.3/Reshape_5" -> "598 /layers/layers.2/blocks.3/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"590 /layers/layers.2/blocks.1/Concat_2" -> "599 /layers/layers.2/blocks.1/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"590 /layers/layers.2/blocks.1/Concat_2" -> "600 /layers/layers.2/blocks.1/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"591 /Flatten" -> "601 /head/Gemm/WithoutBiases" [label="[1, 768]", style=solid];
-"592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" -> "602 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [label="[1, 49, 3072]", style=solid];
-"593 /layers/layers.3/blocks.1/attn/qkv/MatMul" -> "603 /layers/layers.3/blocks.1/attn/qkv/Add" [label="[1, 49, 2304]", style=solid];
-"594 /layers/layers.3/blocks.0/mlp/fc2/Add" -> "481 /layers/layers.3/blocks.0/Add_1" [label="[1, 49, 768]", style=solid];
-"595 /layers/layers.3/blocks.0/attn/Reshape" -> "604 /layers/layers.3/blocks.0/attn/Transpose" [label="[1, 49, 3, 24, 32]", style=solid];
-"596 /layers/layers.2/blocks.5/attn/Add_1" -> "605 /layers/layers.2/blocks.5/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"597 /layers/layers.2/blocks.5/attn/proj/MatMul" -> "606 /layers/layers.2/blocks.5/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"598 /layers/layers.2/blocks.3/Transpose_1" -> "607 /layers/layers.2/blocks.3/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"599 /layers/layers.2/blocks.1/Slice_6" -> "608 /layers/layers.2/blocks.1/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"600 /layers/layers.2/blocks.1/Slice_7" -> "608 /layers/layers.2/blocks.1/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"601 /head/Gemm/WithoutBiases" -> "609 probs" [label="[1, 1000]", style=solid];
-"602 /layers/layers.3/blocks.1/mlp/fc2/MatMul" -> "610 /layers/layers.3/blocks.1/mlp/fc2/Add" [label="[1, 49, 768]", style=solid];
-"603 /layers/layers.3/blocks.1/attn/qkv/Add" -> "611 /layers/layers.3/blocks.1/attn/Reshape" [label="[1, 49, 2304]", style=solid];
-"604 /layers/layers.3/blocks.0/attn/Transpose" -> "612 /layers/layers.3/blocks.0/attn/Gather" [label="[3, 1, 24, 49, 32]", style=solid];
-"604 /layers/layers.3/blocks.0/attn/Transpose" -> "613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [label="[3, 1, 24, 49, 32]", style=solid];
-"604 /layers/layers.3/blocks.0/attn/Transpose" -> "614 /layers/layers.3/blocks.0/attn/Gather_2" [label="[3, 1, 24, 49, 32]", style=solid];
-"605 /layers/layers.2/blocks.5/attn/Reshape_2" -> "615 /layers/layers.2/blocks.5/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"606 /layers/layers.2/blocks.5/attn/proj/Add" -> "616 /layers/layers.2/blocks.5/Reshape_4" [label="[4, 49, 384]", style=solid];
-"607 /layers/layers.2/blocks.3/Reshape_6" -> "617 /layers/layers.2/blocks.3/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"607 /layers/layers.2/blocks.3/Reshape_6" -> "618 /layers/layers.2/blocks.3/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"608 /layers/layers.2/blocks.1/Concat_3" -> "619 /layers/layers.2/blocks.1/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"609 probs" -> "620 probs/sink_port_0" [label="[1, 1000]", style=solid];
-"610 /layers/layers.3/blocks.1/mlp/fc2/Add" -> "507 /layers/layers.3/blocks.1/Add_1" [label="[1, 49, 768]", style=solid];
-"611 /layers/layers.3/blocks.1/attn/Reshape" -> "621 /layers/layers.3/blocks.1/attn/Transpose" [label="[1, 49, 3, 24, 32]", style=solid];
-"612 /layers/layers.3/blocks.0/attn/Gather" -> "622 /layers/layers.3/blocks.0/attn/Mul" [label="[1, 24, 49, 32]", style=solid];
-"613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" -> "623 /layers/layers.3/blocks.0/attn/Gather_1" [label="[3, 1, 24, 49, 32]", style=solid];
-"614 /layers/layers.3/blocks.0/attn/Gather_2" -> "624 /layers/layers.3/blocks.0/attn/MatMul_1" [label="[1, 24, 49, 32]", style=solid];
-"615 /layers/layers.2/blocks.5/attn/softmax/Softmax" -> "552 /layers/layers.2/blocks.5/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"616 /layers/layers.2/blocks.5/Reshape_4" -> "625 /layers/layers.2/blocks.5/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"617 /layers/layers.2/blocks.3/Slice_4" -> "626 /layers/layers.2/blocks.3/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"618 /layers/layers.2/blocks.3/Slice_5" -> "626 /layers/layers.2/blocks.3/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"619 /layers/layers.2/blocks.1/Reshape_7" -> "207 /layers/layers.2/blocks.1/Add" [label="[1, 196, 384]", style=solid];
-"621 /layers/layers.3/blocks.1/attn/Transpose" -> "627 /layers/layers.3/blocks.1/attn/Gather" [label="[3, 1, 24, 49, 32]", style=solid];
-"621 /layers/layers.3/blocks.1/attn/Transpose" -> "628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [label="[3, 1, 24, 49, 32]", style=solid];
-"621 /layers/layers.3/blocks.1/attn/Transpose" -> "629 /layers/layers.3/blocks.1/attn/Gather_2" [label="[3, 1, 24, 49, 32]", style=solid];
-"622 /layers/layers.3/blocks.0/attn/Mul" -> "630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [label="[1, 24, 49, 32]", style=solid];
-"623 /layers/layers.3/blocks.0/attn/Gather_1" -> "631 /layers/layers.3/blocks.0/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"624 /layers/layers.3/blocks.0/attn/MatMul_1" -> "632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [label="[1, 24, 49, 32]", style=solid];
-"625 /layers/layers.2/blocks.5/Reshape_5" -> "633 /layers/layers.2/blocks.5/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"626 /layers/layers.2/blocks.3/Concat_2" -> "634 /layers/layers.2/blocks.3/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"626 /layers/layers.2/blocks.3/Concat_2" -> "635 /layers/layers.2/blocks.3/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"627 /layers/layers.3/blocks.1/attn/Gather" -> "636 /layers/layers.3/blocks.1/attn/Mul" [label="[1, 24, 49, 32]", style=solid];
-"628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" -> "637 /layers/layers.3/blocks.1/attn/Gather_1" [label="[3, 1, 24, 49, 32]", style=solid];
-"629 /layers/layers.3/blocks.1/attn/Gather_2" -> "638 /layers/layers.3/blocks.1/attn/MatMul_1" [label="[1, 24, 49, 32]", style=solid];
-"630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" -> "631 /layers/layers.3/blocks.0/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"631 /layers/layers.3/blocks.0/attn/MatMul" -> "639 /layers/layers.3/blocks.0/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" -> "640 /layers/layers.3/blocks.0/attn/Transpose_2" [label="[1, 24, 49, 32]", style=solid];
-"633 /layers/layers.2/blocks.5/Transpose_1" -> "641 /layers/layers.2/blocks.5/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"634 /layers/layers.2/blocks.3/Slice_6" -> "642 /layers/layers.2/blocks.3/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"635 /layers/layers.2/blocks.3/Slice_7" -> "642 /layers/layers.2/blocks.3/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"636 /layers/layers.3/blocks.1/attn/Mul" -> "643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [label="[1, 24, 49, 32]", style=solid];
-"637 /layers/layers.3/blocks.1/attn/Gather_1" -> "644 /layers/layers.3/blocks.1/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"638 /layers/layers.3/blocks.1/attn/MatMul_1" -> "645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [label="[1, 24, 49, 32]", style=solid];
-"639 /layers/layers.3/blocks.0/attn/Add" -> "646 /layers/layers.3/blocks.0/attn/softmax/Softmax" [label="[1, 24, 49, 49]", style=solid];
-"640 /layers/layers.3/blocks.0/attn/Transpose_2" -> "647 /layers/layers.3/blocks.0/attn/Reshape_1" [label="[1, 49, 24, 32]", style=solid];
-"641 /layers/layers.2/blocks.5/Reshape_6" -> "648 /layers/layers.2/blocks.5/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"641 /layers/layers.2/blocks.5/Reshape_6" -> "649 /layers/layers.2/blocks.5/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"642 /layers/layers.2/blocks.3/Concat_3" -> "650 /layers/layers.2/blocks.3/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" -> "644 /layers/layers.3/blocks.1/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"644 /layers/layers.3/blocks.1/attn/MatMul" -> "651 /layers/layers.3/blocks.1/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" -> "652 /layers/layers.3/blocks.1/attn/Transpose_2" [label="[1, 24, 49, 32]", style=solid];
-"646 /layers/layers.3/blocks.0/attn/softmax/Softmax" -> "624 /layers/layers.3/blocks.0/attn/MatMul_1" [label="[1, 24, 49, 49]", style=solid];
-"647 /layers/layers.3/blocks.0/attn/Reshape_1" -> "653 /layers/layers.3/blocks.0/attn/proj/MatMul" [label="[1, 49, 768]", style=solid];
-"648 /layers/layers.2/blocks.5/Slice_4" -> "654 /layers/layers.2/blocks.5/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"649 /layers/layers.2/blocks.5/Slice_5" -> "654 /layers/layers.2/blocks.5/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"650 /layers/layers.2/blocks.3/Reshape_7" -> "246 /layers/layers.2/blocks.3/Add" [label="[1, 196, 384]", style=solid];
-"651 /layers/layers.3/blocks.1/attn/Add" -> "655 /layers/layers.3/blocks.1/attn/softmax/Softmax" [label="[1, 24, 49, 49]", style=solid];
-"652 /layers/layers.3/blocks.1/attn/Transpose_2" -> "656 /layers/layers.3/blocks.1/attn/Reshape_1" [label="[1, 49, 24, 32]", style=solid];
-"653 /layers/layers.3/blocks.0/attn/proj/MatMul" -> "657 /layers/layers.3/blocks.0/attn/proj/Add" [label="[1, 49, 768]", style=solid];
-"654 /layers/layers.2/blocks.5/Concat_2" -> "658 /layers/layers.2/blocks.5/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"654 /layers/layers.2/blocks.5/Concat_2" -> "659 /layers/layers.2/blocks.5/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"655 /layers/layers.3/blocks.1/attn/softmax/Softmax" -> "638 /layers/layers.3/blocks.1/attn/MatMul_1" [label="[1, 24, 49, 49]", style=solid];
-"656 /layers/layers.3/blocks.1/attn/Reshape_1" -> "660 /layers/layers.3/blocks.1/attn/proj/MatMul" [label="[1, 49, 768]", style=solid];
-"657 /layers/layers.3/blocks.0/attn/proj/Add" -> "661 /layers/layers.3/blocks.0/Reshape_4" [label="[1, 49, 768]", style=solid];
-"658 /layers/layers.2/blocks.5/Slice_6" -> "662 /layers/layers.2/blocks.5/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"659 /layers/layers.2/blocks.5/Slice_7" -> "662 /layers/layers.2/blocks.5/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"660 /layers/layers.3/blocks.1/attn/proj/MatMul" -> "663 /layers/layers.3/blocks.1/attn/proj/Add" [label="[1, 49, 768]", style=solid];
-"661 /layers/layers.3/blocks.0/Reshape_4" -> "664 /layers/layers.3/blocks.0/Reshape_5" [label="[1, 7, 7, 768]", style=solid];
-"662 /layers/layers.2/blocks.5/Concat_3" -> "665 /layers/layers.2/blocks.5/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"663 /layers/layers.3/blocks.1/attn/proj/Add" -> "666 /layers/layers.3/blocks.1/Reshape_4" [label="[1, 49, 768]", style=solid];
-"664 /layers/layers.3/blocks.0/Reshape_5" -> "667 /layers/layers.3/blocks.0/Transpose_1" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"665 /layers/layers.2/blocks.5/Reshape_7" -> "301 /layers/layers.2/blocks.5/Add" [label="[1, 196, 384]", style=solid];
-"666 /layers/layers.3/blocks.1/Reshape_4" -> "668 /layers/layers.3/blocks.1/Reshape_5" [label="[1, 7, 7, 768]", style=solid];
-"667 /layers/layers.3/blocks.0/Transpose_1" -> "669 /layers/layers.3/blocks.0/Reshape_6" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"668 /layers/layers.3/blocks.1/Reshape_5" -> "670 /layers/layers.3/blocks.1/Transpose_1" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"669 /layers/layers.3/blocks.0/Reshape_6" -> "671 /layers/layers.3/blocks.0/Reshape_7" [label="[1, 7, 7, 768]", style=solid];
-"670 /layers/layers.3/blocks.1/Transpose_1" -> "672 /layers/layers.3/blocks.1/Reshape_6" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"671 /layers/layers.3/blocks.0/Reshape_7" -> "470 /layers/layers.3/blocks.0/Add" [label="[1, 49, 768]", style=solid];
-"672 /layers/layers.3/blocks.1/Reshape_6" -> "673 /layers/layers.3/blocks.1/Reshape_7" [label="[1, 7, 7, 768]", style=solid];
-"673 /layers/layers.3/blocks.1/Reshape_7" -> "494 /layers/layers.3/blocks.1/Add" [label="[1, 49, 768]", style=solid];
-"674 Constant_7401" -> "609 probs" [label="[1, 1000]", style=solid];
-"675 /head/Gemm/WithoutBiases/fq_weights_1" -> "601 /head/Gemm/WithoutBiases" [label="[1000, 768]", style=solid];
-"676 Constant_28109" -> "675 /head/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"677 Constant_28108" -> "675 /head/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"678 Constant_28107" -> "675 /head/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"679 Constant_28106" -> "675 /head/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 1]", style=solid];
-"680 head.weight" -> "675 /head/Gemm/WithoutBiases/fq_weights_1" [label="[1000, 768]", style=solid];
-"681 Constant_2148" -> "591 /Flatten" [label="[2]", style=dashed];
-"682 Constant_6567" -> "581 /avgpool/GlobalAveragePool" [label="[3]", style=dashed];
-"683 Constant_28104" -> "569 ReduceMean_6037/fq_output_0" [label="[]", style=solid];
-"684 Constant_28103" -> "569 ReduceMean_6037/fq_output_0" [label="[]", style=solid];
-"685 Constant_28102" -> "569 ReduceMean_6037/fq_output_0" [label="[]", style=solid];
-"686 Constant_28101" -> "569 ReduceMean_6037/fq_output_0" [label="[]", style=solid];
-"687 Constant_6036" -> "557 ReduceMean_6037" [label="[1]", style=dashed];
-"688 Constant_7400" -> "545 /norm/Add_1" [label="[1, 1, 768]", style=solid];
-"689 Constant_7399" -> "532 /norm/Mul" [label="[1, 1, 768]", style=solid];
-"690 Constant_2123" -> "520 /norm/Div" [label="[1]", style=dashed];
-"691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" -> "602 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [label="[768, 3072]", style=solid];
-"692 Constant_28099" -> "691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"693 Constant_28098" -> "691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"694 Constant_28097" -> "691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"695 Constant_28096" -> "691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"696 Transpose_6564" -> "691 /layers/layers.3/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[768, 3072]", style=solid];
-"697 Constant_28094" -> "592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"698 Constant_28093" -> "592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"699 Constant_28092" -> "592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"700 Constant_28091" -> "592 /layers/layers.3/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" -> "558 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [label="[3072, 768]", style=solid];
-"702 Constant_28089" -> "701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"703 Constant_28088" -> "701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"704 Constant_28087" -> "701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"705 Constant_28086" -> "701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"706 Transpose_6560" -> "701 /layers/layers.3/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 768]", style=solid];
-"707 Constant_28084" -> "546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"708 Constant_28083" -> "546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"709 Constant_28082" -> "546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"710 Constant_28081" -> "546 /layers/layers.3/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"711 Constant_7396" -> "533 /layers/layers.3/blocks.1/norm2/Add_1" [label="[1, 1, 768]", style=solid];
-"712 Constant_7395" -> "521 /layers/layers.3/blocks.1/norm2/Mul" [label="[1, 1, 768]", style=solid];
-"713 Constant_2097" -> "508 /layers/layers.3/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"714 /layers/layers.3/blocks.1/Constant_7" -> "673 /layers/layers.3/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"715 /layers/layers.3/blocks.1/Constant_6" -> "672 /layers/layers.3/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"716 Constant_6554" -> "670 /layers/layers.3/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"717 /layers/layers.3/blocks.1/Constant_5" -> "668 /layers/layers.3/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"718 /layers/layers.3/blocks.1/Constant_4" -> "666 /layers/layers.3/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" -> "660 /layers/layers.3/blocks.1/attn/proj/MatMul" [label="[768, 768]", style=solid];
-"720 Constant_28079" -> "719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"721 Constant_28078" -> "719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"722 Constant_28077" -> "719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"723 Constant_28076" -> "719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"724 Transpose_6552" -> "719 /layers/layers.3/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[768, 768]", style=solid];
-"725 /layers/layers.3/blocks.1/attn/Constant_2" -> "656 /layers/layers.3/blocks.1/attn/Reshape_1" [label="[3]", style=dashed];
-"726 Constant_2070" -> "652 /layers/layers.3/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"727 Constant_28074" -> "645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"728 Constant_28073" -> "645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"729 Constant_28072" -> "645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"730 Constant_28071" -> "645 /layers/layers.3/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"731 Constant_2060" -> "629 /layers/layers.3/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "125 /layers/layers.0/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "184 /layers/layers.1/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "243 /layers/layers.1/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "343 /layers/layers.2/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "401 /layers/layers.2/blocks.2/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "442 /layers/layers.2/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "450 /layers/layers.2/blocks.4/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "489 /layers/layers.2/blocks.3/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "539 /layers/layers.2/blocks.5/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "614 /layers/layers.3/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"732 /patch_embed/Constant" -> "629 /layers/layers.3/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"733 Constant_2054" -> "621 /layers/layers.3/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"734 /layers/layers.3/blocks.1/attn/Constant" -> "611 /layers/layers.3/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" -> "593 /layers/layers.3/blocks.1/attn/qkv/MatMul" [label="[2304, 768]", style=solid];
-"736 Constant_28059" -> "735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"737 Constant_28058" -> "735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"738 Constant_28057" -> "735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"739 Constant_28056" -> "735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"740 Transpose_6549" -> "735 /layers/layers.3/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[2304, 768]", style=solid];
-"741 /layers/layers.3/blocks.1/Constant_3" -> "583 /layers/layers.3/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"742 /layers/layers.3/blocks.1/Constant_2" -> "571 /layers/layers.3/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"743 Constant_6544" -> "559 /layers/layers.3/blocks.1/Transpose" [label="[6]", style=dashed];
-"744 /layers/layers.3/blocks.1/Constant_1" -> "547 /layers/layers.3/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"745 Constant_28054" -> "534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"746 Constant_28053" -> "534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"747 Constant_28052" -> "534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"748 Constant_28051" -> "534 /layers/layers.3/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"749 Constant_7391" -> "522 /layers/layers.3/blocks.1/norm1/Add_1" [label="[1, 1, 768]", style=solid];
-"750 Constant_7390" -> "509 /layers/layers.3/blocks.1/norm1/Mul" [label="[1, 1, 768]", style=solid];
-"751 Constant_2017" -> "495 /layers/layers.3/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" -> "584 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [label="[768, 3072]", style=solid];
-"753 Constant_28049" -> "752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"754 Constant_28048" -> "752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"755 Constant_28047" -> "752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"756 Constant_28046" -> "752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"757 Transpose_6541" -> "752 /layers/layers.3/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[768, 3072]", style=solid];
-"758 Constant_28044" -> "572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"759 Constant_28043" -> "572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"760 Constant_28042" -> "572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"761 Constant_28041" -> "572 /layers/layers.3/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" -> "535 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [label="[3072, 768]", style=solid];
-"763 Constant_28039" -> "762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"764 Constant_28038" -> "762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"765 Constant_28037" -> "762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"766 Constant_28036" -> "762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 1]", style=solid];
-"767 Transpose_6537" -> "762 /layers/layers.3/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[3072, 768]", style=solid];
-"768 Constant_28034" -> "523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"769 Constant_28033" -> "523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"770 Constant_28032" -> "523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"771 Constant_28031" -> "523 /layers/layers.3/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"772 Constant_7387" -> "510 /layers/layers.3/blocks.0/norm2/Add_1" [label="[1, 1, 768]", style=solid];
-"773 Constant_7386" -> "496 /layers/layers.3/blocks.0/norm2/Mul" [label="[1, 1, 768]", style=solid];
-"774 Constant_1991" -> "482 /layers/layers.3/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"775 /layers/layers.3/blocks.0/Constant_7" -> "671 /layers/layers.3/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"776 /layers/layers.3/blocks.0/Constant_6" -> "669 /layers/layers.3/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"777 Constant_6531" -> "667 /layers/layers.3/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"778 /layers/layers.3/blocks.0/Constant_5" -> "664 /layers/layers.3/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"779 /layers/layers.3/blocks.0/Constant_4" -> "661 /layers/layers.3/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" -> "653 /layers/layers.3/blocks.0/attn/proj/MatMul" [label="[768, 768]", style=solid];
-"781 Constant_28029" -> "780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"782 Constant_28028" -> "780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"783 Constant_28027" -> "780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"784 Constant_28026" -> "780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"785 Transpose_6529" -> "780 /layers/layers.3/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[768, 768]", style=solid];
-"786 /layers/layers.3/blocks.0/attn/Constant_2" -> "647 /layers/layers.3/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"787 Constant_1964" -> "640 /layers/layers.3/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"788 Constant_28024" -> "632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"789 Constant_28023" -> "632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"790 Constant_28022" -> "632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"791 Constant_28021" -> "632 /layers/layers.3/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"792 Constant_1954" -> "614 /layers/layers.3/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"793 Constant_1948" -> "604 /layers/layers.3/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"794 /layers/layers.3/blocks.0/attn/Constant" -> "595 /layers/layers.3/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" -> "573 /layers/layers.3/blocks.0/attn/qkv/MatMul" [label="[2304, 768]", style=solid];
-"796 Constant_28009" -> "795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"797 Constant_28008" -> "795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"798 Constant_28007" -> "795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"799 Constant_28006" -> "795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[2304, 1]", style=solid];
-"800 Transpose_6526" -> "795 /layers/layers.3/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[2304, 768]", style=solid];
-"801 /layers/layers.3/blocks.0/Constant_3" -> "561 /layers/layers.3/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"802 /layers/layers.3/blocks.0/Constant_2" -> "549 /layers/layers.3/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"803 Constant_6521" -> "536 /layers/layers.3/blocks.0/Transpose" [label="[6]", style=dashed];
-"804 /layers/layers.3/blocks.0/Constant_1" -> "524 /layers/layers.3/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"805 Constant_28004" -> "511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"806 Constant_28003" -> "511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"807 Constant_28002" -> "511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"808 Constant_28001" -> "511 /layers/layers.3/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"809 Constant_7382" -> "497 /layers/layers.3/blocks.0/norm1/Add_1" [label="[1, 1, 768]", style=solid];
-"810 Constant_7381" -> "483 /layers/layers.3/blocks.0/norm1/Mul" [label="[1, 1, 768]", style=solid];
-"811 Constant_1911" -> "471 /layers/layers.3/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" -> "459 /layers/layers.2/downsample/reduction/MatMul" [label="[768, 1536]", style=solid];
-"813 Constant_27999" -> "812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"814 Constant_27998" -> "812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"815 Constant_27997" -> "812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"816 Constant_27996" -> "812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"817 Transpose_6518" -> "812 /layers/layers.2/downsample/reduction/MatMul/fq_weights_1" [label="[768, 1536]", style=solid];
-"818 Constant_27994" -> "445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"819 Constant_27993" -> "445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"820 Constant_27992" -> "445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"821 Constant_27991" -> "445 /layers/layers.2/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"822 Constant_7380" -> "433 /layers/layers.2/downsample/norm/Add_1" [label="[1, 1, 1536]", style=solid];
-"823 Constant_7379" -> "420 /layers/layers.2/downsample/norm/Mul" [label="[1, 1, 1536]", style=solid];
-"824 Constant_1897" -> "407 /layers/layers.2/downsample/norm/Div" [label="[1]", style=dashed];
-"825 /layers/layers.2/downsample/Constant_25" -> "392 /layers/layers.2/downsample/Reshape_1" [label="[3]", style=dashed];
-"826 Constant_5751" -> "365 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"827 Constant_5748" -> "365 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"828 Constant_5745" -> "365 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"829 Constant_5715" -> "347 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"830 Constant_5712" -> "347 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"831 Constant_5709" -> "347 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"832 /layers/layers.2/downsample/Constant" -> "330 /layers/layers.2/downsample/Reshape" [label="[4]", style=dashed];
-"833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" -> "434 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"834 Constant_27989" -> "833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"835 Constant_27988" -> "833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"836 Constant_27987" -> "833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"837 Constant_27986" -> "833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"838 Transpose_6514" -> "833 /layers/layers.2/blocks.5/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"839 Constant_27984" -> "421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"840 Constant_27983" -> "421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"841 Constant_27982" -> "421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"842 Constant_27981" -> "421 /layers/layers.2/blocks.5/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" -> "380 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"844 Constant_27979" -> "843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"845 Constant_27978" -> "843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"846 Constant_27977" -> "843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"847 Constant_27976" -> "843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"848 Transpose_6510" -> "843 /layers/layers.2/blocks.5/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"849 Constant_27974" -> "366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"850 Constant_27973" -> "366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"851 Constant_27972" -> "366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"852 Constant_27971" -> "366 /layers/layers.2/blocks.5/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"853 Constant_7376" -> "348 /layers/layers.2/blocks.5/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"854 Constant_7375" -> "331 /layers/layers.2/blocks.5/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"855 Constant_1832" -> "316 /layers/layers.2/blocks.5/norm2/Div" [label="[1]", style=dashed];
-"856 /layers/layers.2/blocks.5/Constant_31" -> "665 /layers/layers.2/blocks.5/Reshape_7" [label="[3]", style=dashed];
-"857 Constant_5679" -> "659 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"858 Constant_5676" -> "659 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"859 Constant_5673" -> "659 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"860 Constant_5655" -> "649 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"861 Constant_5652" -> "649 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"862 Constant_5649" -> "649 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"863 /layers/layers.2/blocks.5/Constant_18" -> "641 /layers/layers.2/blocks.5/Reshape_6" [label="[4]", style=dashed];
-"864 Constant_1779" -> "633 /layers/layers.2/blocks.5/Transpose_1" [label="[6]", style=dashed];
-"865 /layers/layers.2/blocks.5/Constant_17" -> "625 /layers/layers.2/blocks.5/Reshape_5" [label="[6]", style=dashed];
-"866 /layers/layers.2/blocks.5/Constant_16" -> "616 /layers/layers.2/blocks.5/Reshape_4" [label="[4]", style=dashed];
-"867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" -> "597 /layers/layers.2/blocks.5/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"868 Constant_27969" -> "867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"869 Constant_27968" -> "867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"870 Constant_27967" -> "867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"871 Constant_27966" -> "867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"872 Transpose_6506" -> "867 /layers/layers.2/blocks.5/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"873 /layers/layers.2/blocks.5/attn/Constant_4" -> "587 /layers/layers.2/blocks.5/attn/Reshape_3" [label="[3]", style=dashed];
-"874 Constant_1763" -> "575 /layers/layers.2/blocks.5/attn/Transpose_2" [label="[4]", style=dashed];
-"875 Constant_27964" -> "564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"876 Constant_27963" -> "564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"877 Constant_27962" -> "564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"878 Constant_27961" -> "564 /layers/layers.2/blocks.5/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"879 Constant_1744" -> "539 /layers/layers.2/blocks.5/attn/Gather_2" [label="[]", style=dashed];
-"880 Constant_1738" -> "525 /layers/layers.2/blocks.5/attn/Transpose" [label="[5]", style=dashed];
-"881 /layers/layers.2/blocks.5/attn/Constant" -> "512 /layers/layers.2/blocks.5/attn/Reshape" [label="[5]", style=dashed];
-"882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" -> "484 /layers/layers.2/blocks.5/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"883 Constant_27949" -> "882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"884 Constant_27948" -> "882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"885 Constant_27947" -> "882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"886 Constant_27946" -> "882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"887 Transpose_6503" -> "882 /layers/layers.2/blocks.5/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"888 /layers/layers.2/blocks.5/Constant_15" -> "472 /layers/layers.2/blocks.5/Reshape_3" [label="[3]", style=dashed];
-"889 /layers/layers.2/blocks.5/Constant_14" -> "460 /layers/layers.2/blocks.5/Reshape_2" [label="[4]", style=dashed];
-"890 Constant_1722" -> "447 /layers/layers.2/blocks.5/Transpose" [label="[6]", style=dashed];
-"891 /layers/layers.2/blocks.5/Constant_13" -> "435 /layers/layers.2/blocks.5/Reshape_1" [label="[6]", style=dashed];
-"892 Constant_5631" -> "410 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"893 Constant_5628" -> "410 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"894 Constant_5625" -> "410 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"895 Constant_5607" -> "382 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"896 Constant_5604" -> "382 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"897 Constant_5601" -> "382 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"898 /layers/layers.2/blocks.5/Constant" -> "367 /layers/layers.2/blocks.5/Reshape" [label="[4]", style=dashed];
-"899 Constant_27484" -> "349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"900 Constant_27483" -> "349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"901 Constant_27482" -> "349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"902 Constant_27481" -> "349 /layers/layers.2/blocks.5/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"903 Constant_7371" -> "332 /layers/layers.2/blocks.5/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"904 Constant_7370" -> "317 /layers/layers.2/blocks.5/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"905 Constant_1659" -> "302 /layers/layers.2/blocks.5/norm1/Div" [label="[1]", style=dashed];
-"906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" -> "411 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"907 Constant_27944" -> "906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"908 Constant_27943" -> "906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"909 Constant_27942" -> "906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"910 Constant_27941" -> "906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"911 Transpose_6499" -> "906 /layers/layers.2/blocks.4/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"912 Constant_27939" -> "395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"913 Constant_27938" -> "395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"914 Constant_27937" -> "395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"915 Constant_27936" -> "395 /layers/layers.2/blocks.4/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" -> "350 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"917 Constant_27934" -> "916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"918 Constant_27933" -> "916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"919 Constant_27932" -> "916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"920 Constant_27931" -> "916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"921 Transpose_6495" -> "916 /layers/layers.2/blocks.4/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"922 Constant_27929" -> "333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"923 Constant_27928" -> "333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"924 Constant_27927" -> "333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"925 Constant_27926" -> "333 /layers/layers.2/blocks.4/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"926 Constant_7367" -> "318 /layers/layers.2/blocks.4/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"927 Constant_7366" -> "303 /layers/layers.2/blocks.4/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"928 Constant_1633" -> "287 /layers/layers.2/blocks.4/norm2/Div" [label="[1]", style=dashed];
-"929 /layers/layers.2/blocks.4/Constant_7" -> "588 /layers/layers.2/blocks.4/Reshape_7" [label="[3]", style=dashed];
-"930 /layers/layers.2/blocks.4/Constant_6" -> "576 /layers/layers.2/blocks.4/Reshape_6" [label="[4]", style=dashed];
-"931 Constant_1622" -> "565 /layers/layers.2/blocks.4/Transpose_1" [label="[6]", style=dashed];
-"932 /layers/layers.2/blocks.4/Constant_5" -> "553 /layers/layers.2/blocks.4/Reshape_5" [label="[6]", style=dashed];
-"933 /layers/layers.2/blocks.4/Constant_4" -> "540 /layers/layers.2/blocks.4/Reshape_4" [label="[4]", style=dashed];
-"934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" -> "513 /layers/layers.2/blocks.4/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"935 Constant_27924" -> "934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"936 Constant_27923" -> "934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"937 Constant_27922" -> "934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"938 Constant_27921" -> "934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"939 Transpose_6491" -> "934 /layers/layers.2/blocks.4/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"940 /layers/layers.2/blocks.4/attn/Constant_2" -> "500 /layers/layers.2/blocks.4/attn/Reshape_1" [label="[3]", style=dashed];
-"941 Constant_1606" -> "486 /layers/layers.2/blocks.4/attn/Transpose_2" [label="[4]", style=dashed];
-"942 Constant_27919" -> "475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"943 Constant_27918" -> "475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"944 Constant_27917" -> "475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"945 Constant_27916" -> "475 /layers/layers.2/blocks.4/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"946 Constant_1596" -> "450 /layers/layers.2/blocks.4/attn/Gather_2" [label="[]", style=dashed];
-"947 Constant_1590" -> "436 /layers/layers.2/blocks.4/attn/Transpose" [label="[5]", style=dashed];
-"948 /layers/layers.2/blocks.4/attn/Constant" -> "424 /layers/layers.2/blocks.4/attn/Reshape" [label="[5]", style=dashed];
-"949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" -> "396 /layers/layers.2/blocks.4/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"950 Constant_27904" -> "949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"951 Constant_27903" -> "949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"952 Constant_27902" -> "949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"953 Constant_27901" -> "949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"954 Transpose_6488" -> "949 /layers/layers.2/blocks.4/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"955 /layers/layers.2/blocks.4/Constant_3" -> "384 /layers/layers.2/blocks.4/Reshape_3" [label="[3]", style=dashed];
-"956 /layers/layers.2/blocks.4/Constant_2" -> "369 /layers/layers.2/blocks.4/Reshape_2" [label="[4]", style=dashed];
-"957 Constant_1574" -> "351 /layers/layers.2/blocks.4/Transpose" [label="[6]", style=dashed];
-"958 /layers/layers.2/blocks.4/Constant_1" -> "334 /layers/layers.2/blocks.4/Reshape_1" [label="[6]", style=dashed];
-"959 Constant_27899" -> "319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"960 Constant_27898" -> "319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"961 Constant_27897" -> "319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"962 Constant_27896" -> "319 /layers/layers.2/blocks.4/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"963 Constant_7362" -> "304 /layers/layers.2/blocks.4/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"964 Constant_7361" -> "288 /layers/layers.2/blocks.4/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"965 Constant_1553" -> "274 /layers/layers.2/blocks.4/norm1/Div" [label="[1]", style=dashed];
-"966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" -> "385 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"967 Constant_27894" -> "966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"968 Constant_27893" -> "966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"969 Constant_27892" -> "966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"970 Constant_27891" -> "966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"971 Transpose_6484" -> "966 /layers/layers.2/blocks.3/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"972 Constant_27889" -> "370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"973 Constant_27888" -> "370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"974 Constant_27887" -> "370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"975 Constant_27886" -> "370 /layers/layers.2/blocks.3/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" -> "320 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"977 Constant_27884" -> "976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"978 Constant_27883" -> "976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"979 Constant_27882" -> "976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"980 Constant_27881" -> "976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"981 Transpose_6480" -> "976 /layers/layers.2/blocks.3/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"982 Constant_27879" -> "305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"983 Constant_27878" -> "305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"984 Constant_27877" -> "305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"985 Constant_27876" -> "305 /layers/layers.2/blocks.3/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"986 Constant_7358" -> "289 /layers/layers.2/blocks.3/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"987 Constant_7357" -> "275 /layers/layers.2/blocks.3/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"988 Constant_1527" -> "260 /layers/layers.2/blocks.3/norm2/Div" [label="[1]", style=dashed];
-"989 /layers/layers.2/blocks.3/Constant_31" -> "650 /layers/layers.2/blocks.3/Reshape_7" [label="[3]", style=dashed];
-"990 Constant_5583" -> "635 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"991 Constant_5580" -> "635 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"992 Constant_5577" -> "635 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"993 Constant_5559" -> "618 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"994 Constant_5556" -> "618 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"995 Constant_5553" -> "618 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"996 /layers/layers.2/blocks.3/Constant_18" -> "607 /layers/layers.2/blocks.3/Reshape_6" [label="[4]", style=dashed];
-"997 Constant_1474" -> "598 /layers/layers.2/blocks.3/Transpose_1" [label="[6]", style=dashed];
-"998 /layers/layers.2/blocks.3/Constant_17" -> "589 /layers/layers.2/blocks.3/Reshape_5" [label="[6]", style=dashed];
-"999 /layers/layers.2/blocks.3/Constant_16" -> "578 /layers/layers.2/blocks.3/Reshape_4" [label="[4]", style=dashed];
-"1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" -> "555 /layers/layers.2/blocks.3/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"1001 Constant_27874" -> "1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1002 Constant_27873" -> "1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1003 Constant_27872" -> "1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1004 Constant_27871" -> "1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1005 Transpose_6476" -> "1000 /layers/layers.2/blocks.3/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"1006 /layers/layers.2/blocks.3/attn/Constant_4" -> "542 /layers/layers.2/blocks.3/attn/Reshape_3" [label="[3]", style=dashed];
-"1007 Constant_1458" -> "528 /layers/layers.2/blocks.3/attn/Transpose_2" [label="[4]", style=dashed];
-"1008 Constant_27869" -> "516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1009 Constant_27868" -> "516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1010 Constant_27867" -> "516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1011 Constant_27866" -> "516 /layers/layers.2/blocks.3/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1012 Constant_1439" -> "489 /layers/layers.2/blocks.3/attn/Gather_2" [label="[]", style=dashed];
-"1013 Constant_1433" -> "476 /layers/layers.2/blocks.3/attn/Transpose" [label="[5]", style=dashed];
-"1014 /layers/layers.2/blocks.3/attn/Constant" -> "464 /layers/layers.2/blocks.3/attn/Reshape" [label="[5]", style=dashed];
-"1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" -> "437 /layers/layers.2/blocks.3/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"1016 Constant_27854" -> "1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1017 Constant_27853" -> "1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1018 Constant_27852" -> "1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1019 Constant_27851" -> "1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1020 Transpose_6473" -> "1015 /layers/layers.2/blocks.3/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"1021 /layers/layers.2/blocks.3/Constant_15" -> "425 /layers/layers.2/blocks.3/Reshape_3" [label="[3]", style=dashed];
-"1022 /layers/layers.2/blocks.3/Constant_14" -> "413 /layers/layers.2/blocks.3/Reshape_2" [label="[4]", style=dashed];
-"1023 Constant_1417" -> "398 /layers/layers.2/blocks.3/Transpose" [label="[6]", style=dashed];
-"1024 /layers/layers.2/blocks.3/Constant_13" -> "386 /layers/layers.2/blocks.3/Reshape_1" [label="[6]", style=dashed];
-"1025 Constant_5535" -> "354 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"1026 Constant_5532" -> "354 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"1027 Constant_5529" -> "354 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"1028 Constant_5511" -> "322 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"1029 Constant_5508" -> "322 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"1030 Constant_5505" -> "322 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"1031 /layers/layers.2/blocks.3/Constant" -> "306 /layers/layers.2/blocks.3/Reshape" [label="[4]", style=dashed];
-"1032 Constant_27479" -> "290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1033 Constant_27478" -> "290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1034 Constant_27477" -> "290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1035 Constant_27476" -> "290 /layers/layers.2/blocks.3/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1036 Constant_7353" -> "276 /layers/layers.2/blocks.3/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"1037 Constant_7352" -> "261 /layers/layers.2/blocks.3/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"1038 Constant_1354" -> "247 /layers/layers.2/blocks.3/norm1/Div" [label="[1]", style=dashed];
-"1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" -> "355 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"1040 Constant_27849" -> "1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1041 Constant_27848" -> "1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1042 Constant_27847" -> "1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1043 Constant_27846" -> "1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1044 Transpose_6469" -> "1039 /layers/layers.2/blocks.2/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"1045 Constant_27844" -> "337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1046 Constant_27843" -> "337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1047 Constant_27842" -> "337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1048 Constant_27841" -> "337 /layers/layers.2/blocks.2/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" -> "291 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"1050 Constant_27839" -> "1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1051 Constant_27838" -> "1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1052 Constant_27837" -> "1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1053 Constant_27836" -> "1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1054 Transpose_6465" -> "1049 /layers/layers.2/blocks.2/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"1055 Constant_27834" -> "277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1056 Constant_27833" -> "277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1057 Constant_27832" -> "277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1058 Constant_27831" -> "277 /layers/layers.2/blocks.2/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1059 Constant_7349" -> "262 /layers/layers.2/blocks.2/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"1060 Constant_7348" -> "248 /layers/layers.2/blocks.2/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"1061 Constant_1328" -> "235 /layers/layers.2/blocks.2/norm2/Div" [label="[1]", style=dashed];
-"1062 /layers/layers.2/blocks.2/Constant_7" -> "543 /layers/layers.2/blocks.2/Reshape_7" [label="[3]", style=dashed];
-"1063 /layers/layers.2/blocks.2/Constant_6" -> "529 /layers/layers.2/blocks.2/Reshape_6" [label="[4]", style=dashed];
-"1064 Constant_1317" -> "517 /layers/layers.2/blocks.2/Transpose_1" [label="[6]", style=dashed];
-"1065 /layers/layers.2/blocks.2/Constant_5" -> "504 /layers/layers.2/blocks.2/Reshape_5" [label="[6]", style=dashed];
-"1066 /layers/layers.2/blocks.2/Constant_4" -> "490 /layers/layers.2/blocks.2/Reshape_4" [label="[4]", style=dashed];
-"1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" -> "465 /layers/layers.2/blocks.2/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"1068 Constant_27829" -> "1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1069 Constant_27828" -> "1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1070 Constant_27827" -> "1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1071 Constant_27826" -> "1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1072 Transpose_6461" -> "1067 /layers/layers.2/blocks.2/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"1073 /layers/layers.2/blocks.2/attn/Constant_2" -> "453 /layers/layers.2/blocks.2/attn/Reshape_1" [label="[3]", style=dashed];
-"1074 Constant_1301" -> "439 /layers/layers.2/blocks.2/attn/Transpose_2" [label="[4]", style=dashed];
-"1075 Constant_27824" -> "428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1076 Constant_27823" -> "428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1077 Constant_27822" -> "428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1078 Constant_27821" -> "428 /layers/layers.2/blocks.2/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1079 Constant_1291" -> "401 /layers/layers.2/blocks.2/attn/Gather_2" [label="[]", style=dashed];
-"1080 Constant_1285" -> "387 /layers/layers.2/blocks.2/attn/Transpose" [label="[5]", style=dashed];
-"1081 /layers/layers.2/blocks.2/attn/Constant" -> "373 /layers/layers.2/blocks.2/attn/Reshape" [label="[5]", style=dashed];
-"1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" -> "338 /layers/layers.2/blocks.2/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"1083 Constant_27809" -> "1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1084 Constant_27808" -> "1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1085 Constant_27807" -> "1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1086 Constant_27806" -> "1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1087 Transpose_6458" -> "1082 /layers/layers.2/blocks.2/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"1088 /layers/layers.2/blocks.2/Constant_3" -> "324 /layers/layers.2/blocks.2/Reshape_3" [label="[3]", style=dashed];
-"1089 /layers/layers.2/blocks.2/Constant_2" -> "308 /layers/layers.2/blocks.2/Reshape_2" [label="[4]", style=dashed];
-"1090 Constant_1269" -> "292 /layers/layers.2/blocks.2/Transpose" [label="[6]", style=dashed];
-"1091 /layers/layers.2/blocks.2/Constant_1" -> "278 /layers/layers.2/blocks.2/Reshape_1" [label="[6]", style=dashed];
-"1092 Constant_27804" -> "263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1093 Constant_27803" -> "263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1094 Constant_27802" -> "263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1095 Constant_27801" -> "263 /layers/layers.2/blocks.2/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1096 Constant_7344" -> "249 /layers/layers.2/blocks.2/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"1097 Constant_7343" -> "236 /layers/layers.2/blocks.2/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"1098 Constant_1248" -> "225 /layers/layers.2/blocks.2/norm1/Div" [label="[1]", style=dashed];
-"1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" -> "325 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"1100 Constant_27799" -> "1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1101 Constant_27798" -> "1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1102 Constant_27797" -> "1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1103 Constant_27796" -> "1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1104 Transpose_6454" -> "1099 /layers/layers.2/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"1105 Constant_27794" -> "309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1106 Constant_27793" -> "309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1107 Constant_27792" -> "309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1108 Constant_27791" -> "309 /layers/layers.2/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" -> "264 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"1110 Constant_27789" -> "1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1111 Constant_27788" -> "1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1112 Constant_27787" -> "1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1113 Constant_27786" -> "1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1114 Transpose_6450" -> "1109 /layers/layers.2/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"1115 Constant_27784" -> "250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1116 Constant_27783" -> "250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1117 Constant_27782" -> "250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1118 Constant_27781" -> "250 /layers/layers.2/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1119 Constant_7340" -> "237 /layers/layers.2/blocks.1/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"1120 Constant_7339" -> "226 /layers/layers.2/blocks.1/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"1121 Constant_1222" -> "217 /layers/layers.2/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"1122 /layers/layers.2/blocks.1/Constant_31" -> "619 /layers/layers.2/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"1123 Constant_5487" -> "600 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1124 Constant_5484" -> "600 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1125 Constant_5481" -> "600 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1126 Constant_5463" -> "580 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1127 Constant_5460" -> "580 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1128 Constant_5457" -> "580 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1129 /layers/layers.2/blocks.1/Constant_18" -> "568 /layers/layers.2/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"1130 Constant_1169" -> "556 /layers/layers.2/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"1131 /layers/layers.2/blocks.1/Constant_17" -> "544 /layers/layers.2/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"1132 /layers/layers.2/blocks.1/Constant_16" -> "531 /layers/layers.2/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" -> "506 /layers/layers.2/blocks.1/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"1134 Constant_27779" -> "1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1135 Constant_27778" -> "1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1136 Constant_27777" -> "1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1137 Constant_27776" -> "1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1138 Transpose_6446" -> "1133 /layers/layers.2/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"1139 /layers/layers.2/blocks.1/attn/Constant_4" -> "492 /layers/layers.2/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"1140 Constant_1153" -> "479 /layers/layers.2/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"1141 Constant_27774" -> "468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1142 Constant_27773" -> "468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1143 Constant_27772" -> "468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1144 Constant_27771" -> "468 /layers/layers.2/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1145 Constant_1134" -> "442 /layers/layers.2/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"1146 Constant_1128" -> "429 /layers/layers.2/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"1147 /layers/layers.2/blocks.1/attn/Constant" -> "417 /layers/layers.2/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" -> "388 /layers/layers.2/blocks.1/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"1149 Constant_27759" -> "1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1150 Constant_27758" -> "1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1151 Constant_27757" -> "1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1152 Constant_27756" -> "1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1153 Transpose_6443" -> "1148 /layers/layers.2/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"1154 /layers/layers.2/blocks.1/Constant_15" -> "374 /layers/layers.2/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"1155 /layers/layers.2/blocks.1/Constant_14" -> "357 /layers/layers.2/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"1156 Constant_1112" -> "340 /layers/layers.2/blocks.1/Transpose" [label="[6]", style=dashed];
-"1157 /layers/layers.2/blocks.1/Constant_13" -> "326 /layers/layers.2/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"1158 Constant_5439" -> "295 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1159 Constant_5436" -> "295 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1160 Constant_5433" -> "295 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1161 Constant_5415" -> "266 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1162 Constant_5412" -> "266 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1163 Constant_5409" -> "266 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1164 /layers/layers.2/blocks.1/Constant" -> "251 /layers/layers.2/blocks.1/Reshape" [label="[4]", style=dashed];
-"1165 Constant_27474" -> "238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1166 Constant_27473" -> "238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1167 Constant_27472" -> "238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1168 Constant_27471" -> "238 /layers/layers.2/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1169 Constant_7335" -> "227 /layers/layers.2/blocks.1/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"1170 Constant_7334" -> "218 /layers/layers.2/blocks.1/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"1171 Constant_1049" -> "208 /layers/layers.2/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" -> "296 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"1173 Constant_27754" -> "1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1174 Constant_27753" -> "1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1175 Constant_27752" -> "1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1176 Constant_27751" -> "1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1177 Transpose_6439" -> "1172 /layers/layers.2/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[384, 1536]", style=solid];
-"1178 Constant_27749" -> "281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1179 Constant_27748" -> "281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1180 Constant_27747" -> "281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1181 Constant_27746" -> "281 /layers/layers.2/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" -> "239 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"1183 Constant_27744" -> "1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1184 Constant_27743" -> "1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1185 Constant_27742" -> "1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1186 Constant_27741" -> "1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 1]", style=solid];
-"1187 Transpose_6435" -> "1182 /layers/layers.2/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[1536, 384]", style=solid];
-"1188 Constant_27739" -> "228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1189 Constant_27738" -> "228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1190 Constant_27737" -> "228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1191 Constant_27736" -> "228 /layers/layers.2/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1192 Constant_7331" -> "219 /layers/layers.2/blocks.0/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"1193 Constant_7330" -> "209 /layers/layers.2/blocks.0/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"1194 Constant_1023" -> "201 /layers/layers.2/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"1195 /layers/layers.2/blocks.0/Constant_7" -> "493 /layers/layers.2/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"1196 /layers/layers.2/blocks.0/Constant_6" -> "480 /layers/layers.2/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"1197 Constant_1012" -> "469 /layers/layers.2/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"1198 /layers/layers.2/blocks.0/Constant_5" -> "457 /layers/layers.2/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"1199 /layers/layers.2/blocks.0/Constant_4" -> "443 /layers/layers.2/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" -> "418 /layers/layers.2/blocks.0/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"1201 Constant_27734" -> "1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1202 Constant_27733" -> "1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1203 Constant_27732" -> "1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1204 Constant_27731" -> "1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1205 Transpose_6431" -> "1200 /layers/layers.2/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[384, 384]", style=solid];
-"1206 /layers/layers.2/blocks.0/attn/Constant_2" -> "404 /layers/layers.2/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"1207 Constant_996" -> "390 /layers/layers.2/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"1208 Constant_27729" -> "377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1209 Constant_27728" -> "377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1210 Constant_27727" -> "377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1211 Constant_27726" -> "377 /layers/layers.2/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1212 Constant_986" -> "343 /layers/layers.2/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"1213 Constant_980" -> "327 /layers/layers.2/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"1214 /layers/layers.2/blocks.0/attn/Constant" -> "312 /layers/layers.2/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" -> "282 /layers/layers.2/blocks.0/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"1216 Constant_27714" -> "1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1217 Constant_27713" -> "1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1218 Constant_27712" -> "1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1219 Constant_27711" -> "1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[1152, 1]", style=solid];
-"1220 Transpose_6428" -> "1215 /layers/layers.2/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[1152, 384]", style=solid];
-"1221 /layers/layers.2/blocks.0/Constant_3" -> "268 /layers/layers.2/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"1222 /layers/layers.2/blocks.0/Constant_2" -> "253 /layers/layers.2/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"1223 Constant_964" -> "240 /layers/layers.2/blocks.0/Transpose" [label="[6]", style=dashed];
-"1224 /layers/layers.2/blocks.0/Constant_1" -> "229 /layers/layers.2/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"1225 Constant_27709" -> "220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1226 Constant_27708" -> "220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1227 Constant_27707" -> "220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1228 Constant_27706" -> "220 /layers/layers.2/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1229 Constant_7326" -> "210 /layers/layers.2/blocks.0/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"1230 Constant_7325" -> "202 /layers/layers.2/blocks.0/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"1231 Constant_943" -> "194 /layers/layers.2/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" -> "187 /layers/layers.1/downsample/reduction/MatMul" [label="[384, 768]", style=solid];
-"1233 Constant_27704" -> "1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1234 Constant_27703" -> "1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1235 Constant_27702" -> "1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1236 Constant_27701" -> "1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1237 Transpose_6424" -> "1232 /layers/layers.1/downsample/reduction/MatMul/fq_weights_1" [label="[384, 768]", style=solid];
-"1238 Constant_27699" -> "179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1239 Constant_27698" -> "179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1240 Constant_27697" -> "179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1241 Constant_27696" -> "179 /layers/layers.1/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1242 Constant_7324" -> "173 /layers/layers.1/downsample/norm/Add_1" [label="[1, 1, 768]", style=solid];
-"1243 Constant_7323" -> "166 /layers/layers.1/downsample/norm/Mul" [label="[1, 1, 768]", style=solid];
-"1244 Constant_929" -> "157 /layers/layers.1/downsample/norm/Div" [label="[1]", style=dashed];
-"1245 /layers/layers.1/downsample/Constant_25" -> "149 /layers/layers.1/downsample/Reshape_1" [label="[3]", style=dashed];
-"1246 Constant_5391" -> "130 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"1247 Constant_5388" -> "130 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"1248 Constant_5385" -> "130 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"1249 Constant_5355" -> "118 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"1250 Constant_5352" -> "118 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"1251 Constant_5349" -> "118 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"1252 /layers/layers.1/downsample/Constant" -> "110 /layers/layers.1/downsample/Reshape" [label="[4]", style=dashed];
-"1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" -> "174 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [label="[192, 768]", style=solid];
-"1254 Constant_27694" -> "1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1255 Constant_27693" -> "1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1256 Constant_27692" -> "1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1257 Constant_27691" -> "1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1258 Transpose_6420" -> "1253 /layers/layers.1/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[192, 768]", style=solid];
-"1259 Constant_27689" -> "167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1260 Constant_27688" -> "167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1261 Constant_27687" -> "167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1262 Constant_27686" -> "167 /layers/layers.1/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" -> "140 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [label="[768, 192]", style=solid];
-"1264 Constant_27684" -> "1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1265 Constant_27683" -> "1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1266 Constant_27682" -> "1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1267 Constant_27681" -> "1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1268 Transpose_6416" -> "1263 /layers/layers.1/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[768, 192]", style=solid];
-"1269 Constant_27679" -> "131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1270 Constant_27678" -> "131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1271 Constant_27677" -> "131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1272 Constant_27676" -> "131 /layers/layers.1/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1273 Constant_7320" -> "119 /layers/layers.1/blocks.1/norm2/Add_1" [label="[1, 1, 192]", style=solid];
-"1274 Constant_7319" -> "111 /layers/layers.1/blocks.1/norm2/Mul" [label="[1, 1, 192]", style=solid];
-"1275 Constant_864" -> "104 /layers/layers.1/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"1276 /layers/layers.1/blocks.1/Constant_31" -> "458 /layers/layers.1/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"1277 Constant_5319" -> "432 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1278 Constant_5316" -> "432 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1279 Constant_5313" -> "432 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1280 Constant_5295" -> "406 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1281 Constant_5292" -> "406 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1282 Constant_5289" -> "406 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1283 /layers/layers.1/blocks.1/Constant_18" -> "391 /layers/layers.1/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"1284 Constant_811" -> "378 /layers/layers.1/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"1285 /layers/layers.1/blocks.1/Constant_17" -> "361 /layers/layers.1/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"1286 /layers/layers.1/blocks.1/Constant_16" -> "345 /layers/layers.1/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" -> "314 /layers/layers.1/blocks.1/attn/proj/MatMul" [label="[192, 192]", style=solid];
-"1288 Constant_27674" -> "1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1289 Constant_27673" -> "1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1290 Constant_27672" -> "1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1291 Constant_27671" -> "1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1292 Transpose_6412" -> "1287 /layers/layers.1/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[192, 192]", style=solid];
-"1293 /layers/layers.1/blocks.1/attn/Constant_4" -> "299 /layers/layers.1/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"1294 Constant_795" -> "284 /layers/layers.1/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"1295 Constant_27669" -> "271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1296 Constant_27668" -> "271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1297 Constant_27667" -> "271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1298 Constant_27666" -> "271 /layers/layers.1/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1299 Constant_776" -> "243 /layers/layers.1/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"1300 Constant_770" -> "230 /layers/layers.1/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"1301 /layers/layers.1/blocks.1/attn/Constant" -> "221 /layers/layers.1/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" -> "203 /layers/layers.1/blocks.1/attn/qkv/MatMul" [label="[576, 192]", style=solid];
-"1303 Constant_27654" -> "1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1304 Constant_27653" -> "1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1305 Constant_27652" -> "1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1306 Constant_27651" -> "1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1307 Transpose_6409" -> "1302 /layers/layers.1/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[576, 192]", style=solid];
-"1308 /layers/layers.1/blocks.1/Constant_15" -> "195 /layers/layers.1/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"1309 /layers/layers.1/blocks.1/Constant_14" -> "188 /layers/layers.1/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"1310 Constant_754" -> "181 /layers/layers.1/blocks.1/Transpose" [label="[6]", style=dashed];
-"1311 /layers/layers.1/blocks.1/Constant_13" -> "175 /layers/layers.1/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"1312 Constant_5271" -> "160 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1313 Constant_5268" -> "160 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1314 Constant_5265" -> "160 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1315 Constant_5247" -> "142 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1316 Constant_5244" -> "142 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1317 Constant_5241" -> "142 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1318 /layers/layers.1/blocks.1/Constant" -> "132 /layers/layers.1/blocks.1/Reshape" [label="[4]", style=dashed];
-"1319 Constant_27469" -> "120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1320 Constant_27468" -> "120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1321 Constant_27467" -> "120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1322 Constant_27466" -> "120 /layers/layers.1/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1323 Constant_7315" -> "112 /layers/layers.1/blocks.1/norm1/Add_1" [label="[1, 1, 192]", style=solid];
-"1324 Constant_7314" -> "105 /layers/layers.1/blocks.1/norm1/Mul" [label="[1, 1, 192]", style=solid];
-"1325 Constant_691" -> "97 /layers/layers.1/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" -> "161 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [label="[192, 768]", style=solid];
-"1327 Constant_27649" -> "1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1328 Constant_27648" -> "1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1329 Constant_27647" -> "1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1330 Constant_27646" -> "1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1331 Transpose_6405" -> "1326 /layers/layers.1/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[192, 768]", style=solid];
-"1332 Constant_27644" -> "152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1333 Constant_27643" -> "152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1334 Constant_27642" -> "152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1335 Constant_27641" -> "152 /layers/layers.1/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" -> "121 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [label="[768, 192]", style=solid];
-"1337 Constant_27639" -> "1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1338 Constant_27638" -> "1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1339 Constant_27637" -> "1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1340 Constant_27636" -> "1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[768, 1]", style=solid];
-"1341 Transpose_6401" -> "1336 /layers/layers.1/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[768, 192]", style=solid];
-"1342 Constant_27634" -> "113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1343 Constant_27633" -> "113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1344 Constant_27632" -> "113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1345 Constant_27631" -> "113 /layers/layers.1/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1346 Constant_7311" -> "106 /layers/layers.1/blocks.0/norm2/Add_1" [label="[1, 1, 192]", style=solid];
-"1347 Constant_7310" -> "98 /layers/layers.1/blocks.0/norm2/Mul" [label="[1, 1, 192]", style=solid];
-"1348 Constant_665" -> "91 /layers/layers.1/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"1349 /layers/layers.1/blocks.0/Constant_7" -> "300 /layers/layers.1/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"1350 /layers/layers.1/blocks.0/Constant_6" -> "285 /layers/layers.1/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"1351 Constant_654" -> "272 /layers/layers.1/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"1352 /layers/layers.1/blocks.0/Constant_5" -> "257 /layers/layers.1/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"1353 /layers/layers.1/blocks.0/Constant_4" -> "244 /layers/layers.1/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" -> "222 /layers/layers.1/blocks.0/attn/proj/MatMul" [label="[192, 192]", style=solid];
-"1355 Constant_27629" -> "1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1356 Constant_27628" -> "1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1357 Constant_27627" -> "1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1358 Constant_27626" -> "1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1359 Transpose_6397" -> "1354 /layers/layers.1/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[192, 192]", style=solid];
-"1360 /layers/layers.1/blocks.0/attn/Constant_2" -> "213 /layers/layers.1/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"1361 Constant_638" -> "205 /layers/layers.1/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"1362 Constant_27624" -> "198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1363 Constant_27623" -> "198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1364 Constant_27622" -> "198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1365 Constant_27621" -> "198 /layers/layers.1/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1366 Constant_628" -> "184 /layers/layers.1/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"1367 Constant_622" -> "176 /layers/layers.1/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"1368 /layers/layers.1/blocks.0/attn/Constant" -> "170 /layers/layers.1/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" -> "153 /layers/layers.1/blocks.0/attn/qkv/MatMul" [label="[576, 192]", style=solid];
-"1370 Constant_27609" -> "1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1371 Constant_27608" -> "1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1372 Constant_27607" -> "1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1373 Constant_27606" -> "1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[576, 1]", style=solid];
-"1374 Transpose_6394" -> "1369 /layers/layers.1/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[576, 192]", style=solid];
-"1375 /layers/layers.1/blocks.0/Constant_3" -> "144 /layers/layers.1/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"1376 /layers/layers.1/blocks.0/Constant_2" -> "134 /layers/layers.1/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"1377 Constant_606" -> "122 /layers/layers.1/blocks.0/Transpose" [label="[6]", style=dashed];
-"1378 /layers/layers.1/blocks.0/Constant_1" -> "114 /layers/layers.1/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"1379 Constant_27604" -> "107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1380 Constant_27603" -> "107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1381 Constant_27602" -> "107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1382 Constant_27601" -> "107 /layers/layers.1/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1383 Constant_7306" -> "99 /layers/layers.1/blocks.0/norm1/Add_1" [label="[1, 1, 192]", style=solid];
-"1384 Constant_7305" -> "92 /layers/layers.1/blocks.0/norm1/Mul" [label="[1, 1, 192]", style=solid];
-"1385 Constant_585" -> "85 /layers/layers.1/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" -> "79 /layers/layers.0/downsample/reduction/MatMul" [label="[192, 384]", style=solid];
-"1387 Constant_27599" -> "1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1388 Constant_27598" -> "1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1389 Constant_27597" -> "1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1390 Constant_27596" -> "1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [label="[192, 1]", style=solid];
-"1391 Transpose_6390" -> "1386 /layers/layers.0/downsample/reduction/MatMul/fq_weights_1" [label="[192, 384]", style=solid];
-"1392 Constant_27594" -> "73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1393 Constant_27593" -> "73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1394 Constant_27592" -> "73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1395 Constant_27591" -> "73 /layers/layers.0/downsample/norm/Add_1/fq_output_0" [label="[]", style=solid];
-"1396 Constant_7304" -> "69 /layers/layers.0/downsample/norm/Add_1" [label="[1, 1, 384]", style=solid];
-"1397 Constant_7303" -> "64 /layers/layers.0/downsample/norm/Mul" [label="[1, 1, 384]", style=solid];
-"1398 Constant_571" -> "58 /layers/layers.0/downsample/norm/Div" [label="[1]", style=dashed];
-"1399 /layers/layers.0/downsample/Constant_25" -> "53 /layers/layers.0/downsample/Reshape_1" [label="[3]", style=dashed];
-"1400 Constant_5223" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1401 Constant_5220" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1402 Constant_5217" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1403 Constant_5187" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1404 Constant_5184" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1405 Constant_5181" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1406 /layers/layers.0/downsample/Constant" -> "28 /layers/layers.0/downsample/Reshape" [label="[4]", style=dashed];
-"1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" -> "70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [label="[96, 384]", style=solid];
-"1408 Constant_27589" -> "1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1409 Constant_27588" -> "1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1410 Constant_27587" -> "1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1411 Constant_27586" -> "1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1412 Transpose_6386" -> "1407 /layers/layers.0/blocks.1/mlp/fc2/MatMul/fq_weights_1" [label="[96, 384]", style=solid];
-"1413 Constant_27584" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1414 Constant_27583" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1415 Constant_27582" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1416 Constant_27581" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" -> "48 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [label="[384, 96]", style=solid];
-"1418 Constant_27579" -> "1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1419 Constant_27578" -> "1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1420 Constant_27577" -> "1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1421 Constant_27576" -> "1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1422 Transpose_6382" -> "1417 /layers/layers.0/blocks.1/mlp/fc1/MatMul/fq_weights_1" [label="[384, 96]", style=solid];
-"1423 Constant_27574" -> "43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1424 Constant_27573" -> "43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1425 Constant_27572" -> "43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1426 Constant_27571" -> "43 /layers/layers.0/blocks.1/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1427 Constant_7300" -> "35 /layers/layers.0/blocks.1/norm2/Add_1" [label="[1, 1, 96]", style=solid];
-"1428 Constant_7299" -> "29 /layers/layers.0/blocks.1/norm2/Mul" [label="[1, 1, 96]", style=solid];
-"1429 Constant_506" -> "24 /layers/layers.0/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"1430 /layers/layers.0/blocks.1/Constant_31" -> "258 /layers/layers.0/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"1431 Constant_5151" -> "233 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1432 Constant_5148" -> "233 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1433 Constant_5145" -> "233 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1434 Constant_5127" -> "215 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1435 Constant_5124" -> "215 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1436 Constant_5121" -> "215 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1437 /layers/layers.0/blocks.1/Constant_18" -> "206 /layers/layers.0/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"1438 Constant_453" -> "199 /layers/layers.0/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"1439 /layers/layers.0/blocks.1/Constant_17" -> "192 /layers/layers.0/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"1440 /layers/layers.0/blocks.1/Constant_16" -> "186 /layers/layers.0/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" -> "172 /layers/layers.0/blocks.1/attn/proj/MatMul" [label="[96, 96]", style=solid];
-"1442 Constant_27569" -> "1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1443 Constant_27568" -> "1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1444 Constant_27567" -> "1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1445 Constant_27566" -> "1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1446 Transpose_6378" -> "1441 /layers/layers.0/blocks.1/attn/proj/MatMul/fq_weights_1" [label="[96, 96]", style=solid];
-"1447 /layers/layers.0/blocks.1/attn/Constant_4" -> "164 /layers/layers.0/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"1448 Constant_437" -> "155 /layers/layers.0/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"1449 Constant_27564" -> "147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1450 Constant_27563" -> "147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1451 Constant_27562" -> "147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1452 Constant_27561" -> "147 /layers/layers.0/blocks.1/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1453 Constant_418" -> "125 /layers/layers.0/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"1454 Constant_412" -> "115 /layers/layers.0/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"1455 /layers/layers.0/blocks.1/attn/Constant" -> "108 /layers/layers.0/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" -> "93 /layers/layers.0/blocks.1/attn/qkv/MatMul" [label="[288, 96]", style=solid];
-"1457 Constant_27549" -> "1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1458 Constant_27548" -> "1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1459 Constant_27547" -> "1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1460 Constant_27546" -> "1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1461 Transpose_6375" -> "1456 /layers/layers.0/blocks.1/attn/qkv/MatMul/fq_weights_1" [label="[288, 96]", style=solid];
-"1462 /layers/layers.0/blocks.1/Constant_15" -> "86 /layers/layers.0/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"1463 /layers/layers.0/blocks.1/Constant_14" -> "80 /layers/layers.0/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"1464 Constant_396" -> "75 /layers/layers.0/blocks.1/Transpose" [label="[6]", style=dashed];
-"1465 /layers/layers.0/blocks.1/Constant_13" -> "71 /layers/layers.0/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"1466 Constant_5103" -> "61 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1467 Constant_5100" -> "61 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1468 Constant_5097" -> "61 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1469 Constant_5079" -> "50 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1470 Constant_5076" -> "50 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1471 Constant_5073" -> "50 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1472 /layers/layers.0/blocks.1/Constant" -> "44 /layers/layers.0/blocks.1/Reshape" [label="[4]", style=dashed];
-"1473 Constant_27464" -> "36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1474 Constant_27463" -> "36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1475 Constant_27462" -> "36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1476 Constant_27461" -> "36 /layers/layers.0/blocks.1/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1477 Constant_7295" -> "30 /layers/layers.0/blocks.1/norm1/Add_1" [label="[1, 1, 96]", style=solid];
-"1478 Constant_7294" -> "25 /layers/layers.0/blocks.1/norm1/Mul" [label="[1, 1, 96]", style=solid];
-"1479 Constant_333" -> "20 /layers/layers.0/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" -> "62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [label="[96, 384]", style=solid];
-"1481 Constant_27544" -> "1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1482 Constant_27543" -> "1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1483 Constant_27542" -> "1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1484 Constant_27541" -> "1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1485 Transpose_6371" -> "1480 /layers/layers.0/blocks.0/mlp/fc2/MatMul/fq_weights_1" [label="[96, 384]", style=solid];
-"1486 Constant_27539" -> "56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1487 Constant_27538" -> "56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1488 Constant_27537" -> "56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1489 Constant_27536" -> "56 /layers/layers.0/blocks.0/mlp/act/Mul_1/fq_output_0" [label="[]", style=solid];
-"1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" -> "37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [label="[384, 96]", style=solid];
-"1491 Constant_27534" -> "1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1492 Constant_27533" -> "1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1493 Constant_27532" -> "1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1494 Constant_27531" -> "1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[384, 1]", style=solid];
-"1495 Transpose_6367" -> "1490 /layers/layers.0/blocks.0/mlp/fc1/MatMul/fq_weights_1" [label="[384, 96]", style=solid];
-"1496 Constant_27529" -> "31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1497 Constant_27528" -> "31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1498 Constant_27527" -> "31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1499 Constant_27526" -> "31 /layers/layers.0/blocks.0/norm2/Add_1/fq_output_0" [label="[]", style=solid];
-"1500 Constant_7291" -> "26 /layers/layers.0/blocks.0/norm2/Add_1" [label="[1, 1, 96]", style=solid];
-"1501 Constant_7290" -> "21 /layers/layers.0/blocks.0/norm2/Mul" [label="[1, 1, 96]", style=solid];
-"1502 Constant_307" -> "17 /layers/layers.0/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"1503 /layers/layers.0/blocks.0/Constant_8" -> "165 /layers/layers.0/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"1504 /layers/layers.0/blocks.0/Constant_7" -> "156 /layers/layers.0/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"1505 Constant_296" -> "148 /layers/layers.0/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"1506 /layers/layers.0/blocks.0/Constant_6" -> "138 /layers/layers.0/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"1507 /layers/layers.0/blocks.0/Constant_5" -> "126 /layers/layers.0/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" -> "109 /layers/layers.0/blocks.0/attn/proj/MatMul" [label="[96, 96]", style=solid];
-"1509 Constant_27524" -> "1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1510 Constant_27523" -> "1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1511 Constant_27522" -> "1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1512 Constant_27521" -> "1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[96, 1]", style=solid];
-"1513 Transpose_6363" -> "1508 /layers/layers.0/blocks.0/attn/proj/MatMul/fq_weights_1" [label="[96, 96]", style=solid];
-"1514 /layers/layers.0/blocks.0/attn/Constant_2" -> "102 /layers/layers.0/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"1515 Constant_280" -> "95 /layers/layers.0/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"1516 Constant_27519" -> "89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1517 Constant_27518" -> "89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1518 Constant_27517" -> "89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1519 Constant_27516" -> "89 /layers/layers.0/blocks.0/attn/MatMul_1/fq_output_0" [label="[]", style=solid];
-"1520 Constant_270" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"1521 Constant_264" -> "72 /layers/layers.0/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"1522 /layers/layers.0/blocks.0/attn/Constant" -> "68 /layers/layers.0/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" -> "57 /layers/layers.0/blocks.0/attn/qkv/MatMul" [label="[288, 96]", style=solid];
-"1524 Constant_27504" -> "1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1525 Constant_27503" -> "1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1526 Constant_27502" -> "1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1527 Constant_27501" -> "1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[288, 1]", style=solid];
-"1528 Transpose_6360" -> "1523 /layers/layers.0/blocks.0/attn/qkv/MatMul/fq_weights_1" [label="[288, 96]", style=solid];
-"1529 /layers/layers.0/blocks.0/Constant_4" -> "52 /layers/layers.0/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"1530 /layers/layers.0/blocks.0/Constant_3" -> "46 /layers/layers.0/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"1531 Constant_248" -> "38 /layers/layers.0/blocks.0/Transpose" [label="[6]", style=dashed];
-"1532 /layers/layers.0/blocks.0/Constant_2" -> "32 /layers/layers.0/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"1533 Constant_27499" -> "27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1534 Constant_27498" -> "27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1535 Constant_27497" -> "27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1536 Constant_27496" -> "27 /layers/layers.0/blocks.0/norm1/Add_1/fq_output_0" [label="[]", style=solid];
-"1537 Constant_7286" -> "22 /layers/layers.0/blocks.0/norm1/Add_1" [label="[1, 1, 96]", style=solid];
-"1538 Constant_7285" -> "18 /layers/layers.0/blocks.0/norm1/Mul" [label="[1, 1, 96]", style=solid];
-"1539 Constant_227" -> "15 /layers/layers.0/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"1540 Constant_7284" -> "13 /patch_embed/norm/Add_1" [label="[1, 1, 96]", style=solid];
-"1541 Constant_7283" -> "12 /patch_embed/norm/Mul" [label="[1, 1, 96]", style=solid];
-"1542 Constant_213" -> "10 /patch_embed/norm/Div" [label="[1]", style=dashed];
-"1543 Constant_211" -> "8 /patch_embed/Transpose" [label="[3]", style=dashed];
-"1544 /patch_embed/Constant_4" -> "11 /patch_embed/Concat" [label="[1]", style=dashed];
-"1545 Broadcast_201" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1546 /patch_embed/Constant_3" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1547 /patch_embed/Constant_2" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1548 Reshape_190" -> "5 /patch_embed/proj/Conv" [label="[1, 96, 1, 1]", style=solid];
-"1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" -> "4 /patch_embed/proj/Conv/WithoutBiases" [label="[96, 3, 4, 4]", style=solid];
-"1550 Constant_27494" -> "1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"1551 Constant_27493" -> "1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"1552 Constant_27492" -> "1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"1553 Constant_27491" -> "1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [label="[96, 1, 1, 1]", style=solid];
-"1554 Gather_7282" -> "1549 /patch_embed/proj/Conv/WithoutBiases/fq_weights_1" [label="[96, 3, 4, 4]", style=solid];
-"1555 Constant_27489" -> "3 Divide_2169/fq_output_0" [label="[]", style=solid];
-"1556 Constant_27488" -> "3 Divide_2169/fq_output_0" [label="[]", style=solid];
-"1557 Constant_27487" -> "3 Divide_2169/fq_output_0" [label="[]", style=solid];
-"1558 Constant_27486" -> "3 Divide_2169/fq_output_0" [label="[]", style=solid];
-"1559 Gather_7279" -> "2 Divide_2169" [label="[1, 3, 1, 1]", style=solid];
-"1560 Gather_7276" -> "1 Multiply_6579" [label="[1, 3, 1, 1]", style=solid];
-"1561 Constant_7287" -> "63 /layers/layers.0/blocks.0/attn/qkv/Add" [label="[1, 1, 288]", style=solid];
-"1562 onnx^^Add_2244" -> "94 /layers/layers.0/blocks.0/attn/Add" [label="[1, 3, 49, 49]", style=solid];
-"1563 Constant_268" -> "82 /layers/layers.0/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "82 /layers/layers.0/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "136 /layers/layers.0/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "190 /layers/layers.1/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "255 /layers/layers.1/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "359 /layers/layers.2/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "415 /layers/layers.2/blocks.2/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "455 /layers/layers.2/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "462 /layers/layers.2/blocks.4/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "502 /layers/layers.2/blocks.3/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "551 /layers/layers.2/blocks.5/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "623 /layers/layers.3/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1564 /patch_embed/proj/Constant" -> "637 /layers/layers.3/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1565 Constant_27509" -> "77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1566 Constant_27508" -> "77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1567 Constant_27507" -> "77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1568 Constant_27506" -> "77 /layers/layers.0/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1569 Constant_27514" -> "87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1570 Constant_27513" -> "87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1571 Constant_27512" -> "87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1572 Constant_27511" -> "87 /layers/layers.0/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1573 Constant_7288" -> "81 /layers/layers.0/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1574 Constant_266" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "123 /layers/layers.0/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "182 /layers/layers.1/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "241 /layers/layers.1/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "341 /layers/layers.2/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "399 /layers/layers.2/blocks.2/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "440 /layers/layers.2/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "448 /layers/layers.2/blocks.4/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "487 /layers/layers.2/blocks.3/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "537 /layers/layers.2/blocks.5/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "612 /layers/layers.3/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1575 /layers/layers.0/blocks.0/Constant" -> "627 /layers/layers.3/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1576 Constant_7289" -> "116 /layers/layers.0/blocks.0/attn/proj/Add" [label="[1, 1, 96]", style=solid];
-"1577 Constant_7292" -> "45 /layers/layers.0/blocks.0/mlp/fc1/Add" [label="[1, 1, 384]", style=solid];
-"1578 Constant_7293" -> "67 /layers/layers.0/blocks.0/mlp/fc2/Add" [label="[1, 1, 96]", style=solid];
-"1579 Constant_5067" -> "49 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1580 Constant_5064" -> "49 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1581 Constant_5061" -> "49 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1582 Constant_5091" -> "60 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1583 Constant_5088" -> "60 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1584 Constant_5085" -> "60 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1585 Constant_7296" -> "100 /layers/layers.0/blocks.1/attn/qkv/Add" [label="[1, 1, 288]", style=solid];
-"1586 /layers/layers.0/blocks.1/attn/Constant_3" -> "177 /layers/layers.0/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1587 onnx^^Add_2301" -> "171 /layers/layers.0/blocks.1/attn/Add_1" [label="[1, 64, 1, 49, 49]", style=solid];
-"1588 /layers/layers.0/blocks.1/attn/Constant_2" -> "163 /layers/layers.0/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1589 onnx^^Add_2293" -> "154 /layers/layers.0/blocks.1/attn/Add" [label="[1, 3, 49, 49]", style=solid];
-"1590 Constant_416" -> "136 /layers/layers.0/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1591 Constant_27554" -> "124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1592 Constant_27553" -> "124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1593 Constant_27552" -> "124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1594 Constant_27551" -> "124 /layers/layers.0/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1595 Constant_27559" -> "145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1596 Constant_27558" -> "145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1597 Constant_27557" -> "145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1598 Constant_27556" -> "145 /layers/layers.0/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1599 Constant_7297" -> "135 /layers/layers.0/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1600 Constant_414" -> "123 /layers/layers.0/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1601 Constant_7298" -> "178 /layers/layers.0/blocks.1/attn/proj/Add" [label="[1, 1, 96]", style=solid];
-"1602 Constant_5115" -> "214 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1603 Constant_5112" -> "214 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1604 Constant_5109" -> "214 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1605 Constant_5139" -> "232 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1606 Constant_5136" -> "232 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1607 Constant_5133" -> "232 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1608 Constant_7301" -> "54 /layers/layers.0/blocks.1/mlp/fc1/Add" [label="[1, 1, 384]", style=solid];
-"1609 Constant_7302" -> "74 /layers/layers.0/blocks.1/mlp/fc2/Add" [label="[1, 1, 96]", style=solid];
-"1610 Constant_5211" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1611 Constant_5208" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1612 Constant_5205" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1613 Constant_5163" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1614 Constant_5160" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1615 Constant_5157" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1616 Constant_5199" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1617 Constant_5196" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1618 Constant_5193" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1619 Constant_5175" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1620 Constant_5172" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1621 Constant_5169" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1622 Constant_7307" -> "162 /layers/layers.1/blocks.0/attn/qkv/Add" [label="[1, 1, 576]", style=solid];
-"1623 onnx^^Add_2389" -> "204 /layers/layers.1/blocks.0/attn/Add" [label="[1, 6, 49, 49]", style=solid];
-"1624 Constant_626" -> "190 /layers/layers.1/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1625 Constant_27614" -> "183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1626 Constant_27613" -> "183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1627 Constant_27612" -> "183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1628 Constant_27611" -> "183 /layers/layers.1/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1629 Constant_27619" -> "196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1630 Constant_27618" -> "196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1631 Constant_27617" -> "196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1632 Constant_27616" -> "196 /layers/layers.1/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1633 Constant_7308" -> "189 /layers/layers.1/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1634 Constant_624" -> "182 /layers/layers.1/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1635 Constant_7309" -> "231 /layers/layers.1/blocks.0/attn/proj/Add" [label="[1, 1, 192]", style=solid];
-"1636 Constant_7312" -> "133 /layers/layers.1/blocks.0/mlp/fc1/Add" [label="[1, 1, 768]", style=solid];
-"1637 Constant_7313" -> "169 /layers/layers.1/blocks.0/mlp/fc2/Add" [label="[1, 1, 192]", style=solid];
-"1638 Constant_5235" -> "141 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1639 Constant_5232" -> "141 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1640 Constant_5229" -> "141 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1641 Constant_5259" -> "159 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1642 Constant_5256" -> "159 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1643 Constant_5253" -> "159 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1644 Constant_7316" -> "211 /layers/layers.1/blocks.1/attn/qkv/Add" [label="[1, 1, 576]", style=solid];
-"1645 /layers/layers.1/blocks.1/attn/Constant_3" -> "328 /layers/layers.1/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1646 onnx^^Add_2446" -> "313 /layers/layers.1/blocks.1/attn/Add_1" [label="[1, 16, 1, 49, 49]", style=solid];
-"1647 /layers/layers.1/blocks.1/attn/Constant_2" -> "298 /layers/layers.1/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1648 onnx^^Add_2438" -> "283 /layers/layers.1/blocks.1/attn/Add" [label="[1, 6, 49, 49]", style=solid];
-"1649 Constant_774" -> "255 /layers/layers.1/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1650 Constant_27659" -> "242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1651 Constant_27658" -> "242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1652 Constant_27657" -> "242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1653 Constant_27656" -> "242 /layers/layers.1/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1654 Constant_27664" -> "269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1655 Constant_27663" -> "269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1656 Constant_27662" -> "269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1657 Constant_27661" -> "269 /layers/layers.1/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1658 Constant_7317" -> "254 /layers/layers.1/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1659 Constant_772" -> "241 /layers/layers.1/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1660 Constant_7318" -> "329 /layers/layers.1/blocks.1/attn/proj/Add" [label="[1, 1, 192]", style=solid];
-"1661 Constant_5283" -> "405 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1662 Constant_5280" -> "405 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1663 Constant_5277" -> "405 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1664 Constant_5307" -> "431 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1665 Constant_5304" -> "431 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1666 Constant_5301" -> "431 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1667 Constant_7321" -> "150 /layers/layers.1/blocks.1/mlp/fc1/Add" [label="[1, 1, 768]", style=solid];
-"1668 Constant_7322" -> "180 /layers/layers.1/blocks.1/mlp/fc2/Add" [label="[1, 1, 192]", style=solid];
-"1669 Constant_5379" -> "128 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1670 Constant_5376" -> "128 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1671 Constant_5373" -> "128 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1672 Constant_5331" -> "117 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1673 Constant_5328" -> "117 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1674 Constant_5325" -> "117 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1675 Constant_5367" -> "129 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1676 Constant_5364" -> "129 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1677 Constant_5361" -> "129 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1678 Constant_5343" -> "127 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1679 Constant_5340" -> "127 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1680 Constant_5337" -> "127 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1681 Constant_7327" -> "297 /layers/layers.2/blocks.0/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1682 onnx^^Add_2534" -> "389 /layers/layers.2/blocks.0/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1683 Constant_984" -> "359 /layers/layers.2/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1684 Constant_27719" -> "342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1685 Constant_27718" -> "342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1686 Constant_27717" -> "342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1687 Constant_27716" -> "342 /layers/layers.2/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1688 Constant_27724" -> "375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1689 Constant_27723" -> "375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1690 Constant_27722" -> "375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1691 Constant_27721" -> "375 /layers/layers.2/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1692 Constant_7328" -> "358 /layers/layers.2/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1693 Constant_982" -> "341 /layers/layers.2/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1694 Constant_7329" -> "430 /layers/layers.2/blocks.0/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1695 Constant_7332" -> "252 /layers/layers.2/blocks.0/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1696 Constant_7333" -> "311 /layers/layers.2/blocks.0/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1697 Constant_5403" -> "265 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1698 Constant_5400" -> "265 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1699 Constant_5397" -> "265 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1700 Constant_5427" -> "294 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1701 Constant_5424" -> "294 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1702 Constant_5421" -> "294 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1703 Constant_7336" -> "402 /layers/layers.2/blocks.1/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1704 /layers/layers.2/blocks.1/attn/Constant_3" -> "518 /layers/layers.2/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1705 onnx^^Add_2702" -> "505 /layers/layers.2/blocks.1/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1705 onnx^^Add_2702" -> "554 /layers/layers.2/blocks.3/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1705 onnx^^Add_2702" -> "596 /layers/layers.2/blocks.5/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1706 /layers/layers.2/blocks.1/attn/Constant_2" -> "491 /layers/layers.2/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1707 onnx^^Add_2583" -> "478 /layers/layers.2/blocks.1/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1708 Constant_1132" -> "455 /layers/layers.2/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1709 Constant_27764" -> "441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1710 Constant_27763" -> "441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1711 Constant_27762" -> "441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1712 Constant_27761" -> "441 /layers/layers.2/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1713 Constant_27769" -> "466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1714 Constant_27768" -> "466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1715 Constant_27767" -> "466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1716 Constant_27766" -> "466 /layers/layers.2/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1717 Constant_7337" -> "454 /layers/layers.2/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1718 Constant_1130" -> "440 /layers/layers.2/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1719 Constant_7338" -> "519 /layers/layers.2/blocks.1/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1720 Constant_5451" -> "579 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1721 Constant_5448" -> "579 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1722 Constant_5445" -> "579 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1723 Constant_5475" -> "599 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1724 Constant_5472" -> "599 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1725 Constant_5469" -> "599 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1726 Constant_7341" -> "279 /layers/layers.2/blocks.1/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1727 Constant_7342" -> "339 /layers/layers.2/blocks.1/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1728 Constant_7345" -> "356 /layers/layers.2/blocks.2/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1729 onnx^^Add_2645" -> "438 /layers/layers.2/blocks.2/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1730 Constant_1289" -> "415 /layers/layers.2/blocks.2/attn/Gather_1" [label="[]", style=dashed];
-"1731 Constant_27814" -> "400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1732 Constant_27813" -> "400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1733 Constant_27812" -> "400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1734 Constant_27811" -> "400 /layers/layers.2/blocks.2/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1735 Constant_27819" -> "426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1736 Constant_27818" -> "426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1737 Constant_27817" -> "426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1738 Constant_27816" -> "426 /layers/layers.2/blocks.2/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1739 Constant_7346" -> "414 /layers/layers.2/blocks.2/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1740 Constant_1287" -> "399 /layers/layers.2/blocks.2/attn/Gather" [label="[]", style=dashed];
-"1741 Constant_7347" -> "477 /layers/layers.2/blocks.2/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1742 Constant_7350" -> "307 /layers/layers.2/blocks.2/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1743 Constant_7351" -> "372 /layers/layers.2/blocks.2/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1744 Constant_5499" -> "321 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1745 Constant_5496" -> "321 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1746 Constant_5493" -> "321 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1747 Constant_5523" -> "353 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1748 Constant_5520" -> "353 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1749 Constant_5517" -> "353 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1750 Constant_7354" -> "451 /layers/layers.2/blocks.3/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1751 /layers/layers.2/blocks.3/attn/Constant_3" -> "566 /layers/layers.2/blocks.3/attn/Reshape_2" [label="[4]", style=dashed];
-"1752 /layers/layers.2/blocks.3/attn/Constant_2" -> "541 /layers/layers.2/blocks.3/attn/Reshape_1" [label="[5]", style=dashed];
-"1753 onnx^^Add_2694" -> "527 /layers/layers.2/blocks.3/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1754 Constant_1437" -> "502 /layers/layers.2/blocks.3/attn/Gather_1" [label="[]", style=dashed];
-"1755 Constant_27859" -> "488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1756 Constant_27858" -> "488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1757 Constant_27857" -> "488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1758 Constant_27856" -> "488 /layers/layers.2/blocks.3/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1759 Constant_27864" -> "514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1760 Constant_27863" -> "514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1761 Constant_27862" -> "514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1762 Constant_27861" -> "514 /layers/layers.2/blocks.3/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1763 Constant_7355" -> "501 /layers/layers.2/blocks.3/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1764 Constant_1435" -> "487 /layers/layers.2/blocks.3/attn/Gather" [label="[]", style=dashed];
-"1765 Constant_7356" -> "567 /layers/layers.2/blocks.3/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1766 Constant_5547" -> "617 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1767 Constant_5544" -> "617 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1768 Constant_5541" -> "617 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1769 Constant_5571" -> "634 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1770 Constant_5568" -> "634 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1771 Constant_5565" -> "634 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1772 Constant_7359" -> "335 /layers/layers.2/blocks.3/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1773 Constant_7360" -> "397 /layers/layers.2/blocks.3/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1774 Constant_7363" -> "412 /layers/layers.2/blocks.4/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1775 onnx^^Add_2756" -> "485 /layers/layers.2/blocks.4/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1776 Constant_1594" -> "462 /layers/layers.2/blocks.4/attn/Gather_1" [label="[]", style=dashed];
-"1777 Constant_27909" -> "449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1778 Constant_27908" -> "449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1779 Constant_27907" -> "449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1780 Constant_27906" -> "449 /layers/layers.2/blocks.4/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1781 Constant_27914" -> "473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1782 Constant_27913" -> "473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1783 Constant_27912" -> "473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1784 Constant_27911" -> "473 /layers/layers.2/blocks.4/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1785 Constant_7364" -> "461 /layers/layers.2/blocks.4/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1786 Constant_1592" -> "448 /layers/layers.2/blocks.4/attn/Gather" [label="[]", style=dashed];
-"1787 Constant_7365" -> "526 /layers/layers.2/blocks.4/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1788 Constant_7368" -> "368 /layers/layers.2/blocks.4/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1789 Constant_7369" -> "423 /layers/layers.2/blocks.4/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1790 Constant_5595" -> "381 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1791 Constant_5592" -> "381 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1792 Constant_5589" -> "381 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1793 Constant_5619" -> "409 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1794 Constant_5616" -> "409 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1795 Constant_5613" -> "409 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1796 Constant_7372" -> "498 /layers/layers.2/blocks.5/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1797 /layers/layers.2/blocks.5/attn/Constant_3" -> "605 /layers/layers.2/blocks.5/attn/Reshape_2" [label="[4]", style=dashed];
-"1798 /layers/layers.2/blocks.5/attn/Constant_2" -> "586 /layers/layers.2/blocks.5/attn/Reshape_1" [label="[5]", style=dashed];
-"1799 onnx^^Add_2805" -> "574 /layers/layers.2/blocks.5/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1800 Constant_1742" -> "551 /layers/layers.2/blocks.5/attn/Gather_1" [label="[]", style=dashed];
-"1801 Constant_27954" -> "538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1802 Constant_27953" -> "538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1803 Constant_27952" -> "538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1804 Constant_27951" -> "538 /layers/layers.2/blocks.5/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1805 Constant_27959" -> "562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1806 Constant_27958" -> "562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1807 Constant_27957" -> "562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1808 Constant_27956" -> "562 /layers/layers.2/blocks.5/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1809 Constant_7373" -> "550 /layers/layers.2/blocks.5/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1810 Constant_1740" -> "537 /layers/layers.2/blocks.5/attn/Gather" [label="[]", style=dashed];
-"1811 Constant_7374" -> "606 /layers/layers.2/blocks.5/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1812 Constant_5643" -> "648 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1813 Constant_5640" -> "648 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1814 Constant_5637" -> "648 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1815 Constant_5667" -> "658 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1816 Constant_5664" -> "658 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1817 Constant_5661" -> "658 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1818 Constant_7377" -> "393 /layers/layers.2/blocks.5/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1819 Constant_7378" -> "446 /layers/layers.2/blocks.5/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1820 Constant_5739" -> "363 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1821 Constant_5736" -> "363 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1822 Constant_5733" -> "363 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1823 Constant_5691" -> "346 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1824 Constant_5688" -> "346 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1825 Constant_5685" -> "346 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1826 Constant_5727" -> "364 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1827 Constant_5724" -> "364 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1828 Constant_5721" -> "364 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1829 Constant_5703" -> "362 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1830 Constant_5700" -> "362 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1831 Constant_5697" -> "362 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1832 Constant_7383" -> "585 /layers/layers.3/blocks.0/attn/qkv/Add" [label="[1, 1, 2304]", style=solid];
-"1833 onnx^^Add_2901" -> "639 /layers/layers.3/blocks.0/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"1834 Constant_1952" -> "623 /layers/layers.3/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1835 Constant_28014" -> "613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1836 Constant_28013" -> "613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1837 Constant_28012" -> "613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1838 Constant_28011" -> "613 /layers/layers.3/blocks.0/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1839 Constant_28019" -> "630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1840 Constant_28018" -> "630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1841 Constant_28017" -> "630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1842 Constant_28016" -> "630 /layers/layers.3/blocks.0/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1843 Constant_7384" -> "622 /layers/layers.3/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1844 Constant_1950" -> "612 /layers/layers.3/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1845 Constant_7385" -> "657 /layers/layers.3/blocks.0/attn/proj/Add" [label="[1, 1, 768]", style=solid];
-"1846 Constant_7388" -> "548 /layers/layers.3/blocks.0/mlp/fc1/Add" [label="[1, 1, 3072]", style=solid];
-"1847 Constant_7389" -> "594 /layers/layers.3/blocks.0/mlp/fc2/Add" [label="[1, 1, 768]", style=solid];
-"1848 Constant_7392" -> "603 /layers/layers.3/blocks.1/attn/qkv/Add" [label="[1, 1, 2304]", style=solid];
-"1849 onnx^^Add_2950" -> "651 /layers/layers.3/blocks.1/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"1850 Constant_2058" -> "637 /layers/layers.3/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1851 Constant_28064" -> "628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1852 Constant_28063" -> "628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1853 Constant_28062" -> "628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1854 Constant_28061" -> "628 /layers/layers.3/blocks.1/attn/Gather_1/fq_input_0" [label="[]", style=solid];
-"1855 Constant_28069" -> "643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1856 Constant_28068" -> "643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1857 Constant_28067" -> "643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1858 Constant_28066" -> "643 /layers/layers.3/blocks.1/attn/Mul/fq_output_0" [label="[]", style=solid];
-"1859 Constant_7393" -> "636 /layers/layers.3/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1860 Constant_2056" -> "627 /layers/layers.3/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1861 Constant_7394" -> "663 /layers/layers.3/blocks.1/attn/proj/Add" [label="[1, 1, 768]", style=solid];
-"1862 Constant_7397" -> "570 /layers/layers.3/blocks.1/mlp/fc1/Add" [label="[1, 1, 3072]", style=solid];
-"1863 Constant_7398" -> "610 /layers/layers.3/blocks.1/mlp/fc2/Add" [label="[1, 1, 768]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_sq.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_sq.dot
deleted file mode 100644
index b2201cd3a37..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/swin-tiny-patch4-window7-224_sq.dot
+++ /dev/null
@@ -1,2754 +0,0 @@
-strict digraph {
-"0 input" [id=0, type=Parameter];
-"1 Multiply_6579" [id=1, type=Multiply];
-"2 Divide_2169" [id=2, type=Add];
-"3 Divide_2169_0_0/nncf_smooth_quant" [id=3, type=Multiply];
-"4 /patch_embed/proj/Conv/WithoutBiases" [id=4, type=Convolution];
-"5 /patch_embed/proj/Conv" [id=5, type=Add];
-"6 /patch_embed/Reshape" [id=6, type=Reshape];
-"7 /patch_embed/Shape" [id=7, type=ShapeOf];
-"8 /patch_embed/Transpose" [id=8, type=Transpose];
-"9 /patch_embed/Slice" [id=9, type=StridedSlice];
-"10 /patch_embed/norm/Div" [id=10, type=MVN];
-"11 /patch_embed/Concat" [id=11, type=Concat];
-"12 /patch_embed/norm/Mul" [id=12, type=Multiply];
-"13 /patch_embed/norm/Add_1" [id=13, type=Add];
-"14 /layers/layers.0/blocks.0/Add" [id=14, type=Add];
-"15 /layers/layers.0/blocks.0/norm1/Div" [id=15, type=MVN];
-"16 /layers/layers.0/blocks.0/Add_1" [id=16, type=Add];
-"17 /layers/layers.0/blocks.0/norm2/Div" [id=17, type=MVN];
-"18 /layers/layers.0/blocks.0/norm1/Mul" [id=18, type=Multiply];
-"19 /layers/layers.0/blocks.1/Add" [id=19, type=Add];
-"20 /layers/layers.0/blocks.1/norm1/Div" [id=20, type=MVN];
-"21 /layers/layers.0/blocks.0/norm2/Mul" [id=21, type=Multiply];
-"22 /layers/layers.0/blocks.0/norm1/Add_1" [id=22, type=Add];
-"23 /layers/layers.0/blocks.1/Add_1" [id=23, type=Add];
-"24 /layers/layers.0/blocks.1/norm2/Div" [id=24, type=MVN];
-"25 /layers/layers.0/blocks.1/norm1/Mul" [id=25, type=Multiply];
-"26 /layers/layers.0/blocks.0/norm2/Add_1" [id=26, type=Add];
-"27 /layers/layers.0/blocks.0/Reshape_1" [id=27, type=Reshape];
-"28 /layers/layers.0/downsample/Reshape" [id=28, type=Reshape];
-"29 /layers/layers.0/blocks.1/norm2/Mul" [id=29, type=Multiply];
-"30 /layers/layers.0/blocks.1/norm1/Add_1" [id=30, type=Add];
-"31 /layers/layers.0/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [id=31, type=Multiply];
-"32 /layers/layers.0/blocks.0/Transpose" [id=32, type=Transpose];
-"33 /layers/layers.0/downsample/Slice" [id=33, type=StridedSlice];
-"34 /layers/layers.0/downsample/Slice_2" [id=34, type=StridedSlice];
-"35 /layers/layers.0/blocks.1/norm2/Add_1" [id=35, type=Add];
-"36 /layers/layers.0/blocks.1/Reshape" [id=36, type=Reshape];
-"37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [id=37, type=MatMul];
-"38 /layers/layers.0/blocks.0/Reshape_2" [id=38, type=Reshape];
-"39 /layers/layers.0/downsample/Slice_1" [id=39, type=StridedSlice];
-"40 /layers/layers.0/downsample/Slice_4" [id=40, type=StridedSlice];
-"41 /layers/layers.0/downsample/Slice_3" [id=41, type=StridedSlice];
-"42 /layers/layers.0/downsample/Slice_5" [id=42, type=StridedSlice];
-"43 /layers/layers.0/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [id=43, type=Multiply];
-"44 /layers/layers.0/blocks.1/Slice" [id=44, type=StridedSlice];
-"45 /layers/layers.0/blocks.1/Slice_1" [id=45, type=StridedSlice];
-"46 /layers/layers.0/blocks.0/mlp/fc1/Add" [id=46, type=Add];
-"47 /layers/layers.0/blocks.0/Reshape_3" [id=47, type=Reshape];
-"48 /layers/layers.0/downsample/Concat" [id=48, type=Concat];
-"49 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [id=49, type=MatMul];
-"50 /layers/layers.0/blocks.1/Concat" [id=50, type=Concat];
-"51 /layers/layers.0/blocks.0/mlp/act/Mul_1" [id=51, type=Gelu];
-"52 /layers/layers.0/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [id=52, type=Multiply];
-"53 /layers/layers.0/downsample/Reshape_1" [id=53, type=Reshape];
-"54 /layers/layers.0/blocks.1/mlp/fc1/Add" [id=54, type=Add];
-"55 /layers/layers.0/blocks.1/Slice_2" [id=55, type=StridedSlice];
-"56 /layers/layers.0/blocks.1/Slice_3" [id=56, type=StridedSlice];
-"57 /layers/layers.0/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=57, type=Multiply];
-"58 /layers/layers.0/blocks.0/attn/qkv/MatMul" [id=58, type=MatMul];
-"59 /layers/layers.0/downsample/norm/Div" [id=59, type=MVN];
-"60 /layers/layers.0/blocks.1/mlp/act/Mul_1" [id=60, type=Gelu];
-"61 /layers/layers.0/blocks.1/Concat_1" [id=61, type=Concat];
-"62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [id=62, type=MatMul];
-"63 /layers/layers.0/blocks.0/attn/qkv/Add" [id=63, type=Add];
-"64 /layers/layers.0/downsample/norm/Mul" [id=64, type=Multiply];
-"65 /layers/layers.0/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=65, type=Multiply];
-"66 /layers/layers.0/blocks.1/Reshape_1" [id=66, type=Reshape];
-"67 /layers/layers.0/blocks.0/mlp/fc2/Add" [id=67, type=Add];
-"68 /layers/layers.0/blocks.0/attn/Reshape" [id=68, type=Reshape];
-"69 /layers/layers.0/downsample/norm/Add_1" [id=69, type=Add];
-"70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [id=70, type=MatMul];
-"71 /layers/layers.0/blocks.1/Transpose" [id=71, type=Transpose];
-"72 /layers/layers.0/blocks.0/attn/Transpose" [id=72, type=Transpose];
-"73 /layers/layers.0/downsample/norm/Add_1_0_0/nncf_smooth_quant" [id=73, type=Multiply];
-"74 /layers/layers.0/blocks.1/mlp/fc2/Add" [id=74, type=Add];
-"75 /layers/layers.0/blocks.1/Reshape_2" [id=75, type=Reshape];
-"76 /layers/layers.0/blocks.0/attn/Gather" [id=76, type=Gather];
-"77 /layers/layers.0/blocks.0/attn/Gather_1" [id=77, type=Gather];
-"78 /layers/layers.0/blocks.0/attn/Gather_2" [id=78, type=Gather];
-"79 /layers/layers.0/downsample/reduction/MatMul" [id=79, type=MatMul];
-"80 /layers/layers.0/blocks.1/Reshape_3" [id=80, type=Reshape];
-"81 /layers/layers.0/blocks.0/attn/Mul" [id=81, type=Multiply];
-"82 /layers/layers.0/blocks.0/attn/MatMul" [id=82, type=MatMul];
-"83 /layers/layers.0/blocks.0/attn/MatMul_1" [id=83, type=MatMul];
-"84 /layers/layers.1/blocks.0/Add" [id=84, type=Add];
-"85 /layers/layers.1/blocks.0/norm1/Div" [id=85, type=MVN];
-"86 /layers/layers.0/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [id=86, type=Multiply];
-"87 /layers/layers.0/blocks.0/attn/Add" [id=87, type=Add];
-"88 /layers/layers.0/blocks.0/attn/Transpose_2" [id=88, type=Transpose];
-"89 /layers/layers.1/blocks.0/Add_1" [id=89, type=Add];
-"90 /layers/layers.1/blocks.0/norm2/Div" [id=90, type=MVN];
-"91 /layers/layers.1/blocks.0/norm1/Mul" [id=91, type=Multiply];
-"92 /layers/layers.0/blocks.1/attn/qkv/MatMul" [id=92, type=MatMul];
-"93 /layers/layers.0/blocks.0/attn/softmax/Softmax" [id=93, type=Softmax];
-"94 /layers/layers.0/blocks.0/attn/Reshape_1" [id=94, type=Reshape];
-"95 /layers/layers.1/blocks.1/Add" [id=95, type=Add];
-"96 /layers/layers.1/blocks.1/norm1/Div" [id=96, type=MVN];
-"97 /layers/layers.1/blocks.0/norm2/Mul" [id=97, type=Multiply];
-"98 /layers/layers.1/blocks.0/norm1/Add_1" [id=98, type=Add];
-"99 /layers/layers.0/blocks.1/attn/qkv/Add" [id=99, type=Add];
-"100 /layers/layers.0/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [id=100, type=Multiply];
-"101 /layers/layers.1/blocks.1/Add_1" [id=101, type=Add];
-"102 /layers/layers.1/blocks.1/norm2/Div" [id=102, type=MVN];
-"103 /layers/layers.1/blocks.1/norm1/Mul" [id=103, type=Multiply];
-"104 /layers/layers.1/blocks.0/norm2/Add_1" [id=104, type=Add];
-"105 /layers/layers.1/blocks.0/Reshape_1" [id=105, type=Reshape];
-"106 /layers/layers.0/blocks.1/attn/Reshape" [id=106, type=Reshape];
-"107 /layers/layers.0/blocks.0/attn/proj/MatMul" [id=107, type=MatMul];
-"108 /layers/layers.1/downsample/Reshape" [id=108, type=Reshape];
-"109 /layers/layers.1/blocks.1/norm2/Mul" [id=109, type=Multiply];
-"110 /layers/layers.1/blocks.1/norm1/Add_1" [id=110, type=Add];
-"111 /layers/layers.1/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [id=111, type=Multiply];
-"112 /layers/layers.1/blocks.0/Transpose" [id=112, type=Transpose];
-"113 /layers/layers.0/blocks.1/attn/Transpose" [id=113, type=Transpose];
-"114 /layers/layers.0/blocks.0/attn/proj/Add" [id=114, type=Add];
-"115 /layers/layers.1/downsample/Slice" [id=115, type=StridedSlice];
-"116 /layers/layers.1/downsample/Slice_2" [id=116, type=StridedSlice];
-"117 /layers/layers.1/blocks.1/norm2/Add_1" [id=117, type=Add];
-"118 /layers/layers.1/blocks.1/Reshape" [id=118, type=Reshape];
-"119 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [id=119, type=MatMul];
-"120 /layers/layers.1/blocks.0/Reshape_2" [id=120, type=Reshape];
-"121 /layers/layers.0/blocks.1/attn/Gather" [id=121, type=Gather];
-"122 /layers/layers.0/blocks.1/attn/Gather_1" [id=122, type=Gather];
-"123 /layers/layers.0/blocks.1/attn/Gather_2" [id=123, type=Gather];
-"124 /layers/layers.0/blocks.0/Reshape_4" [id=124, type=Reshape];
-"125 /layers/layers.1/downsample/Slice_1" [id=125, type=StridedSlice];
-"126 /layers/layers.1/downsample/Slice_4" [id=126, type=StridedSlice];
-"127 /layers/layers.1/downsample/Slice_3" [id=127, type=StridedSlice];
-"128 /layers/layers.1/downsample/Slice_5" [id=128, type=StridedSlice];
-"129 /layers/layers.1/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [id=129, type=Multiply];
-"130 /layers/layers.1/blocks.1/Slice" [id=130, type=StridedSlice];
-"131 /layers/layers.1/blocks.1/Slice_1" [id=131, type=StridedSlice];
-"132 /layers/layers.1/blocks.0/mlp/fc1/Add" [id=132, type=Add];
-"133 /layers/layers.1/blocks.0/Reshape_3" [id=133, type=Reshape];
-"134 /layers/layers.0/blocks.1/attn/Mul" [id=134, type=Multiply];
-"135 /layers/layers.0/blocks.1/attn/MatMul" [id=135, type=MatMul];
-"136 /layers/layers.0/blocks.1/attn/MatMul_1" [id=136, type=MatMul];
-"137 /layers/layers.0/blocks.0/Reshape_5" [id=137, type=Reshape];
-"138 /layers/layers.1/downsample/Concat" [id=138, type=Concat];
-"139 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [id=139, type=MatMul];
-"140 /layers/layers.1/blocks.1/Concat" [id=140, type=Concat];
-"141 /layers/layers.1/blocks.0/mlp/act/Mul_1" [id=141, type=Gelu];
-"142 /layers/layers.1/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [id=142, type=Multiply];
-"143 /layers/layers.0/blocks.1/attn/Add" [id=143, type=Add];
-"144 /layers/layers.0/blocks.1/attn/Transpose_2" [id=144, type=Transpose];
-"145 /layers/layers.0/blocks.0/Transpose_1" [id=145, type=Transpose];
-"146 /layers/layers.1/downsample/Reshape_1" [id=146, type=Reshape];
-"147 /layers/layers.1/blocks.1/mlp/fc1/Add" [id=147, type=Add];
-"148 /layers/layers.1/blocks.1/Slice_2" [id=148, type=StridedSlice];
-"149 /layers/layers.1/blocks.1/Slice_3" [id=149, type=StridedSlice];
-"150 /layers/layers.1/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=150, type=Multiply];
-"151 /layers/layers.1/blocks.0/attn/qkv/MatMul" [id=151, type=MatMul];
-"152 /layers/layers.0/blocks.1/attn/Reshape_1" [id=152, type=Reshape];
-"153 /layers/layers.0/blocks.1/attn/Reshape_3" [id=153, type=Reshape];
-"154 /layers/layers.0/blocks.0/Reshape_6" [id=154, type=Reshape];
-"155 /layers/layers.1/downsample/norm/Div" [id=155, type=MVN];
-"156 /layers/layers.1/blocks.1/mlp/act/Mul_1" [id=156, type=Gelu];
-"157 /layers/layers.1/blocks.1/Concat_1" [id=157, type=Concat];
-"158 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [id=158, type=MatMul];
-"159 /layers/layers.1/blocks.0/attn/qkv/Add" [id=159, type=Add];
-"160 /layers/layers.0/blocks.1/attn/Add_1" [id=160, type=Add];
-"161 /layers/layers.0/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [id=161, type=Multiply];
-"162 /layers/layers.0/blocks.0/Reshape_7" [id=162, type=Reshape];
-"163 /layers/layers.1/downsample/norm/Mul" [id=163, type=Multiply];
-"164 /layers/layers.1/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=164, type=Multiply];
-"165 /layers/layers.1/blocks.1/Reshape_1" [id=165, type=Reshape];
-"166 /layers/layers.1/blocks.0/mlp/fc2/Add" [id=166, type=Add];
-"167 /layers/layers.1/blocks.0/attn/Reshape" [id=167, type=Reshape];
-"168 /layers/layers.0/blocks.1/attn/Reshape_2" [id=168, type=Reshape];
-"169 /layers/layers.0/blocks.1/attn/proj/MatMul" [id=169, type=MatMul];
-"170 /layers/layers.1/downsample/norm/Add_1" [id=170, type=Add];
-"171 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [id=171, type=MatMul];
-"172 /layers/layers.1/blocks.1/Transpose" [id=172, type=Transpose];
-"173 /layers/layers.1/blocks.0/attn/Transpose" [id=173, type=Transpose];
-"174 /layers/layers.0/blocks.1/attn/softmax/Softmax" [id=174, type=Softmax];
-"175 /layers/layers.0/blocks.1/attn/proj/Add" [id=175, type=Add];
-"176 /layers/layers.1/downsample/norm/Add_1_0_0/nncf_smooth_quant" [id=176, type=Multiply];
-"177 /layers/layers.1/blocks.1/mlp/fc2/Add" [id=177, type=Add];
-"178 /layers/layers.1/blocks.1/Reshape_2" [id=178, type=Reshape];
-"179 /layers/layers.1/blocks.0/attn/Gather" [id=179, type=Gather];
-"180 /layers/layers.1/blocks.0/attn/Gather_1" [id=180, type=Gather];
-"181 /layers/layers.1/blocks.0/attn/Gather_2" [id=181, type=Gather];
-"182 /layers/layers.0/blocks.1/Reshape_4" [id=182, type=Reshape];
-"183 /layers/layers.1/downsample/reduction/MatMul" [id=183, type=MatMul];
-"184 /layers/layers.1/blocks.1/Reshape_3" [id=184, type=Reshape];
-"185 /layers/layers.1/blocks.0/attn/Mul" [id=185, type=Multiply];
-"186 /layers/layers.1/blocks.0/attn/MatMul" [id=186, type=MatMul];
-"187 /layers/layers.1/blocks.0/attn/MatMul_1" [id=187, type=MatMul];
-"188 /layers/layers.0/blocks.1/Reshape_5" [id=188, type=Reshape];
-"189 /layers/layers.2/blocks.0/Add" [id=189, type=Add];
-"190 /layers/layers.2/blocks.0/norm1/Div" [id=190, type=MVN];
-"191 /layers/layers.1/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [id=191, type=Multiply];
-"192 /layers/layers.1/blocks.0/attn/Add" [id=192, type=Add];
-"193 /layers/layers.1/blocks.0/attn/Transpose_2" [id=193, type=Transpose];
-"194 /layers/layers.0/blocks.1/Transpose_1" [id=194, type=Transpose];
-"195 /layers/layers.2/blocks.0/Add_1" [id=195, type=Add];
-"196 /layers/layers.2/blocks.0/norm2/Div" [id=196, type=MVN];
-"197 /layers/layers.2/blocks.0/norm1/Mul" [id=197, type=Multiply];
-"198 /layers/layers.1/blocks.1/attn/qkv/MatMul" [id=198, type=MatMul];
-"199 /layers/layers.1/blocks.0/attn/softmax/Softmax" [id=199, type=Softmax];
-"200 /layers/layers.1/blocks.0/attn/Reshape_1" [id=200, type=Reshape];
-"201 /layers/layers.0/blocks.1/Reshape_6" [id=201, type=Reshape];
-"202 /layers/layers.2/blocks.1/Add" [id=202, type=Add];
-"203 /layers/layers.2/blocks.1/norm1/Div" [id=203, type=MVN];
-"204 /layers/layers.2/blocks.0/norm2/Mul" [id=204, type=Multiply];
-"205 /layers/layers.2/blocks.0/norm1/Add_1" [id=205, type=Add];
-"206 /layers/layers.1/blocks.1/attn/qkv/Add" [id=206, type=Add];
-"207 /layers/layers.1/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [id=207, type=Multiply];
-"208 /layers/layers.0/blocks.1/Slice_4" [id=208, type=StridedSlice];
-"209 /layers/layers.0/blocks.1/Slice_5" [id=209, type=StridedSlice];
-"210 /layers/layers.2/blocks.1/Add_1" [id=210, type=Add];
-"211 /layers/layers.2/blocks.1/norm2/Div" [id=211, type=MVN];
-"212 /layers/layers.2/blocks.1/norm1/Mul" [id=212, type=Multiply];
-"213 /layers/layers.2/blocks.0/norm2/Add_1" [id=213, type=Add];
-"214 /layers/layers.2/blocks.0/Reshape_1" [id=214, type=Reshape];
-"215 /layers/layers.1/blocks.1/attn/Reshape" [id=215, type=Reshape];
-"216 /layers/layers.1/blocks.0/attn/proj/MatMul" [id=216, type=MatMul];
-"217 /layers/layers.0/blocks.1/Concat_2" [id=217, type=Concat];
-"218 /layers/layers.2/blocks.2/Add" [id=218, type=Add];
-"219 /layers/layers.2/blocks.2/norm1/Div" [id=219, type=MVN];
-"220 /layers/layers.2/blocks.1/norm2/Mul" [id=220, type=Multiply];
-"221 /layers/layers.2/blocks.1/norm1/Add_1" [id=221, type=Add];
-"222 /layers/layers.2/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [id=222, type=Multiply];
-"223 /layers/layers.2/blocks.0/Transpose" [id=223, type=Transpose];
-"224 /layers/layers.1/blocks.1/attn/Transpose" [id=224, type=Transpose];
-"225 /layers/layers.1/blocks.0/attn/proj/Add" [id=225, type=Add];
-"226 /layers/layers.0/blocks.1/Slice_6" [id=226, type=StridedSlice];
-"227 /layers/layers.0/blocks.1/Slice_7" [id=227, type=StridedSlice];
-"228 /layers/layers.2/blocks.2/Add_1" [id=228, type=Add];
-"229 /layers/layers.2/blocks.2/norm2/Div" [id=229, type=MVN];
-"230 /layers/layers.2/blocks.2/norm1/Mul" [id=230, type=Multiply];
-"231 /layers/layers.2/blocks.1/norm2/Add_1" [id=231, type=Add];
-"232 /layers/layers.2/blocks.1/Reshape" [id=232, type=Reshape];
-"233 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [id=233, type=MatMul];
-"234 /layers/layers.2/blocks.0/Reshape_2" [id=234, type=Reshape];
-"235 /layers/layers.1/blocks.1/attn/Gather" [id=235, type=Gather];
-"236 /layers/layers.1/blocks.1/attn/Gather_1" [id=236, type=Gather];
-"237 /layers/layers.1/blocks.1/attn/Gather_2" [id=237, type=Gather];
-"238 /layers/layers.1/blocks.0/Reshape_4" [id=238, type=Reshape];
-"239 /layers/layers.0/blocks.1/Concat_3" [id=239, type=Concat];
-"240 /layers/layers.2/blocks.3/Add" [id=240, type=Add];
-"241 /layers/layers.2/blocks.3/norm1/Div" [id=241, type=MVN];
-"242 /layers/layers.2/blocks.2/norm2/Mul" [id=242, type=Multiply];
-"243 /layers/layers.2/blocks.2/norm1/Add_1" [id=243, type=Add];
-"244 /layers/layers.2/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [id=244, type=Multiply];
-"245 /layers/layers.2/blocks.1/Slice" [id=245, type=StridedSlice];
-"246 /layers/layers.2/blocks.1/Slice_1" [id=246, type=StridedSlice];
-"247 /layers/layers.2/blocks.0/mlp/fc1/Add" [id=247, type=Add];
-"248 /layers/layers.2/blocks.0/Reshape_3" [id=248, type=Reshape];
-"249 /layers/layers.1/blocks.1/attn/Mul" [id=249, type=Multiply];
-"250 /layers/layers.1/blocks.1/attn/MatMul" [id=250, type=MatMul];
-"251 /layers/layers.1/blocks.1/attn/MatMul_1" [id=251, type=MatMul];
-"252 /layers/layers.1/blocks.0/Reshape_5" [id=252, type=Reshape];
-"253 /layers/layers.0/blocks.1/Reshape_7" [id=253, type=Reshape];
-"254 /layers/layers.2/blocks.3/Add_1" [id=254, type=Add];
-"255 /layers/layers.2/blocks.3/norm2/Div" [id=255, type=MVN];
-"256 /layers/layers.2/blocks.3/norm1/Mul" [id=256, type=Multiply];
-"257 /layers/layers.2/blocks.2/norm2/Add_1" [id=257, type=Add];
-"258 /layers/layers.2/blocks.2/Reshape_1" [id=258, type=Reshape];
-"259 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [id=259, type=MatMul];
-"260 /layers/layers.2/blocks.1/Concat" [id=260, type=Concat];
-"261 /layers/layers.2/blocks.0/mlp/act/Mul_1" [id=261, type=Gelu];
-"262 /layers/layers.2/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [id=262, type=Multiply];
-"263 /layers/layers.1/blocks.1/attn/Add" [id=263, type=Add];
-"264 /layers/layers.1/blocks.1/attn/Transpose_2" [id=264, type=Transpose];
-"265 /layers/layers.1/blocks.0/Transpose_1" [id=265, type=Transpose];
-"266 /layers/layers.2/blocks.4/Add" [id=266, type=Add];
-"267 /layers/layers.2/blocks.4/norm1/Div" [id=267, type=MVN];
-"268 /layers/layers.2/blocks.3/norm2/Mul" [id=268, type=Multiply];
-"269 /layers/layers.2/blocks.3/norm1/Add_1" [id=269, type=Add];
-"270 /layers/layers.2/blocks.2/norm2/Add_1_0_0/nncf_smooth_quant" [id=270, type=Multiply];
-"271 /layers/layers.2/blocks.2/Transpose" [id=271, type=Transpose];
-"272 /layers/layers.2/blocks.1/mlp/fc1/Add" [id=272, type=Add];
-"273 /layers/layers.2/blocks.1/Slice_2" [id=273, type=StridedSlice];
-"274 /layers/layers.2/blocks.1/Slice_3" [id=274, type=StridedSlice];
-"275 /layers/layers.2/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=275, type=Multiply];
-"276 /layers/layers.2/blocks.0/attn/qkv/MatMul" [id=276, type=MatMul];
-"277 /layers/layers.1/blocks.1/attn/Reshape_1" [id=277, type=Reshape];
-"278 /layers/layers.1/blocks.1/attn/Reshape_3" [id=278, type=Reshape];
-"279 /layers/layers.1/blocks.0/Reshape_6" [id=279, type=Reshape];
-"280 /layers/layers.2/blocks.4/Add_1" [id=280, type=Add];
-"281 /layers/layers.2/blocks.4/norm2/Div" [id=281, type=MVN];
-"282 /layers/layers.2/blocks.4/norm1/Mul" [id=282, type=Multiply];
-"283 /layers/layers.2/blocks.3/norm2/Add_1" [id=283, type=Add];
-"284 /layers/layers.2/blocks.3/Reshape" [id=284, type=Reshape];
-"285 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [id=285, type=MatMul];
-"286 /layers/layers.2/blocks.2/Reshape_2" [id=286, type=Reshape];
-"287 /layers/layers.2/blocks.1/mlp/act/Mul_1" [id=287, type=Gelu];
-"288 /layers/layers.2/blocks.1/Concat_1" [id=288, type=Concat];
-"289 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [id=289, type=MatMul];
-"290 /layers/layers.2/blocks.0/attn/qkv/Add" [id=290, type=Add];
-"291 /layers/layers.1/blocks.1/attn/Add_1" [id=291, type=Add];
-"292 /layers/layers.1/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [id=292, type=Multiply];
-"293 /layers/layers.1/blocks.0/Reshape_7" [id=293, type=Reshape];
-"294 /layers/layers.2/blocks.5/Add" [id=294, type=Add];
-"295 /layers/layers.2/blocks.5/norm1/Div" [id=295, type=MVN];
-"296 /layers/layers.2/blocks.4/norm2/Mul" [id=296, type=Multiply];
-"297 /layers/layers.2/blocks.4/norm1/Add_1" [id=297, type=Add];
-"298 /layers/layers.2/blocks.3/norm2/Add_1_0_0/nncf_smooth_quant" [id=298, type=Multiply];
-"299 /layers/layers.2/blocks.3/Slice" [id=299, type=StridedSlice];
-"300 /layers/layers.2/blocks.3/Slice_1" [id=300, type=StridedSlice];
-"301 /layers/layers.2/blocks.2/mlp/fc1/Add" [id=301, type=Add];
-"302 /layers/layers.2/blocks.2/Reshape_3" [id=302, type=Reshape];
-"303 /layers/layers.2/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=303, type=Multiply];
-"304 /layers/layers.2/blocks.1/Reshape_1" [id=304, type=Reshape];
-"305 /layers/layers.2/blocks.0/mlp/fc2/Add" [id=305, type=Add];
-"306 /layers/layers.2/blocks.0/attn/Reshape" [id=306, type=Reshape];
-"307 /layers/layers.1/blocks.1/attn/Reshape_2" [id=307, type=Reshape];
-"308 /layers/layers.1/blocks.1/attn/proj/MatMul" [id=308, type=MatMul];
-"309 /layers/layers.2/blocks.5/Add_1" [id=309, type=Add];
-"310 /layers/layers.2/blocks.5/norm2/Div" [id=310, type=MVN];
-"311 /layers/layers.2/blocks.5/norm1/Mul" [id=311, type=Multiply];
-"312 /layers/layers.2/blocks.4/norm2/Add_1" [id=312, type=Add];
-"313 /layers/layers.2/blocks.4/Reshape_1" [id=313, type=Reshape];
-"314 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [id=314, type=MatMul];
-"315 /layers/layers.2/blocks.3/Concat" [id=315, type=Concat];
-"316 /layers/layers.2/blocks.2/mlp/act/Mul_1" [id=316, type=Gelu];
-"317 /layers/layers.2/blocks.2/Reshape_3_0_0/nncf_smooth_quant" [id=317, type=Multiply];
-"318 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [id=318, type=MatMul];
-"319 /layers/layers.2/blocks.1/Transpose" [id=319, type=Transpose];
-"320 /layers/layers.2/blocks.0/attn/Transpose" [id=320, type=Transpose];
-"321 /layers/layers.1/blocks.1/attn/softmax/Softmax" [id=321, type=Softmax];
-"322 /layers/layers.1/blocks.1/attn/proj/Add" [id=322, type=Add];
-"323 /layers/layers.2/downsample/Reshape" [id=323, type=Reshape];
-"324 /layers/layers.2/blocks.5/norm2/Mul" [id=324, type=Multiply];
-"325 /layers/layers.2/blocks.5/norm1/Add_1" [id=325, type=Add];
-"326 /layers/layers.2/blocks.4/norm2/Add_1_0_0/nncf_smooth_quant" [id=326, type=Multiply];
-"327 /layers/layers.2/blocks.4/Transpose" [id=327, type=Transpose];
-"328 /layers/layers.2/blocks.3/mlp/fc1/Add" [id=328, type=Add];
-"329 /layers/layers.2/blocks.3/Slice_2" [id=329, type=StridedSlice];
-"330 /layers/layers.2/blocks.3/Slice_3" [id=330, type=StridedSlice];
-"331 /layers/layers.2/blocks.2/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=331, type=Multiply];
-"332 /layers/layers.2/blocks.2/attn/qkv/MatMul" [id=332, type=MatMul];
-"333 /layers/layers.2/blocks.1/mlp/fc2/Add" [id=333, type=Add];
-"334 /layers/layers.2/blocks.1/Reshape_2" [id=334, type=Reshape];
-"335 /layers/layers.2/blocks.0/attn/Gather" [id=335, type=Gather];
-"336 /layers/layers.2/blocks.0/attn/Gather_1" [id=336, type=Gather];
-"337 /layers/layers.2/blocks.0/attn/Gather_2" [id=337, type=Gather];
-"338 /layers/layers.1/blocks.1/Reshape_4" [id=338, type=Reshape];
-"339 /layers/layers.2/downsample/Slice" [id=339, type=StridedSlice];
-"340 /layers/layers.2/downsample/Slice_2" [id=340, type=StridedSlice];
-"341 /layers/layers.2/blocks.5/norm2/Add_1" [id=341, type=Add];
-"342 /layers/layers.2/blocks.5/Reshape" [id=342, type=Reshape];
-"343 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [id=343, type=MatMul];
-"344 /layers/layers.2/blocks.4/Reshape_2" [id=344, type=Reshape];
-"345 /layers/layers.2/blocks.3/mlp/act/Mul_1" [id=345, type=Gelu];
-"346 /layers/layers.2/blocks.3/Concat_1" [id=346, type=Concat];
-"347 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [id=347, type=MatMul];
-"348 /layers/layers.2/blocks.2/attn/qkv/Add" [id=348, type=Add];
-"349 /layers/layers.2/blocks.1/Reshape_3" [id=349, type=Reshape];
-"350 /layers/layers.2/blocks.0/attn/Mul" [id=350, type=Multiply];
-"351 /layers/layers.2/blocks.0/attn/MatMul" [id=351, type=MatMul];
-"352 /layers/layers.2/blocks.0/attn/MatMul_1" [id=352, type=MatMul];
-"353 /layers/layers.1/blocks.1/Reshape_5" [id=353, type=Reshape];
-"354 /layers/layers.2/downsample/Slice_1" [id=354, type=StridedSlice];
-"355 /layers/layers.2/downsample/Slice_4" [id=355, type=StridedSlice];
-"356 /layers/layers.2/downsample/Slice_3" [id=356, type=StridedSlice];
-"357 /layers/layers.2/downsample/Slice_5" [id=357, type=StridedSlice];
-"358 /layers/layers.2/blocks.5/norm2/Add_1_0_0/nncf_smooth_quant" [id=358, type=Multiply];
-"359 /layers/layers.2/blocks.5/Slice" [id=359, type=StridedSlice];
-"360 /layers/layers.2/blocks.5/Slice_1" [id=360, type=StridedSlice];
-"361 /layers/layers.2/blocks.4/mlp/fc1/Add" [id=361, type=Add];
-"362 /layers/layers.2/blocks.4/Reshape_3" [id=362, type=Reshape];
-"363 /layers/layers.2/blocks.3/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=363, type=Multiply];
-"364 /layers/layers.2/blocks.3/Reshape_1" [id=364, type=Reshape];
-"365 /layers/layers.2/blocks.2/mlp/fc2/Add" [id=365, type=Add];
-"366 /layers/layers.2/blocks.2/attn/Reshape" [id=366, type=Reshape];
-"367 /layers/layers.2/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [id=367, type=Multiply];
-"368 /layers/layers.2/blocks.0/attn/Add" [id=368, type=Add];
-"369 /layers/layers.2/blocks.0/attn/Transpose_2" [id=369, type=Transpose];
-"370 /layers/layers.1/blocks.1/Transpose_1" [id=370, type=Transpose];
-"371 /layers/layers.2/downsample/Concat" [id=371, type=Concat];
-"372 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [id=372, type=MatMul];
-"373 /layers/layers.2/blocks.5/Concat" [id=373, type=Concat];
-"374 /layers/layers.2/blocks.4/mlp/act/Mul_1" [id=374, type=Gelu];
-"375 /layers/layers.2/blocks.4/Reshape_3_0_0/nncf_smooth_quant" [id=375, type=Multiply];
-"376 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [id=376, type=MatMul];
-"377 /layers/layers.2/blocks.3/Transpose" [id=377, type=Transpose];
-"378 /layers/layers.2/blocks.2/attn/Transpose" [id=378, type=Transpose];
-"379 /layers/layers.2/blocks.1/attn/qkv/MatMul" [id=379, type=MatMul];
-"380 /layers/layers.2/blocks.0/attn/softmax/Softmax" [id=380, type=Softmax];
-"381 /layers/layers.2/blocks.0/attn/Reshape_1" [id=381, type=Reshape];
-"382 /layers/layers.1/blocks.1/Reshape_6" [id=382, type=Reshape];
-"383 /layers/layers.2/downsample/Reshape_1" [id=383, type=Reshape];
-"384 /layers/layers.2/blocks.5/mlp/fc1/Add" [id=384, type=Add];
-"385 /layers/layers.2/blocks.5/Slice_2" [id=385, type=StridedSlice];
-"386 /layers/layers.2/blocks.5/Slice_3" [id=386, type=StridedSlice];
-"387 /layers/layers.2/blocks.4/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=387, type=Multiply];
-"388 /layers/layers.2/blocks.4/attn/qkv/MatMul" [id=388, type=MatMul];
-"389 /layers/layers.2/blocks.3/mlp/fc2/Add" [id=389, type=Add];
-"390 /layers/layers.2/blocks.3/Reshape_2" [id=390, type=Reshape];
-"391 /layers/layers.2/blocks.2/attn/Gather" [id=391, type=Gather];
-"392 /layers/layers.2/blocks.2/attn/Gather_1" [id=392, type=Gather];
-"393 /layers/layers.2/blocks.2/attn/Gather_2" [id=393, type=Gather];
-"394 /layers/layers.2/blocks.1/attn/qkv/Add" [id=394, type=Add];
-"395 /layers/layers.2/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [id=395, type=Multiply];
-"396 /layers/layers.1/blocks.1/Slice_4" [id=396, type=StridedSlice];
-"397 /layers/layers.1/blocks.1/Slice_5" [id=397, type=StridedSlice];
-"398 /layers/layers.2/downsample/norm/Div" [id=398, type=MVN];
-"399 /layers/layers.2/blocks.5/mlp/act/Mul_1" [id=399, type=Gelu];
-"400 /layers/layers.2/blocks.5/Concat_1" [id=400, type=Concat];
-"401 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [id=401, type=MatMul];
-"402 /layers/layers.2/blocks.4/attn/qkv/Add" [id=402, type=Add];
-"403 /layers/layers.2/blocks.3/Reshape_3" [id=403, type=Reshape];
-"404 /layers/layers.2/blocks.2/attn/Mul" [id=404, type=Multiply];
-"405 /layers/layers.2/blocks.2/attn/MatMul" [id=405, type=MatMul];
-"406 /layers/layers.2/blocks.2/attn/MatMul_1" [id=406, type=MatMul];
-"407 /layers/layers.2/blocks.1/attn/Reshape" [id=407, type=Reshape];
-"408 /layers/layers.2/blocks.0/attn/proj/MatMul" [id=408, type=MatMul];
-"409 /layers/layers.1/blocks.1/Concat_2" [id=409, type=Concat];
-"410 /layers/layers.2/downsample/norm/Mul" [id=410, type=Multiply];
-"411 /layers/layers.2/blocks.5/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=411, type=Multiply];
-"412 /layers/layers.2/blocks.5/Reshape_1" [id=412, type=Reshape];
-"413 /layers/layers.2/blocks.4/mlp/fc2/Add" [id=413, type=Add];
-"414 /layers/layers.2/blocks.4/attn/Reshape" [id=414, type=Reshape];
-"415 /layers/layers.2/blocks.3/Reshape_3_0_0/nncf_smooth_quant" [id=415, type=Multiply];
-"416 /layers/layers.2/blocks.2/attn/Add" [id=416, type=Add];
-"417 /layers/layers.2/blocks.2/attn/Transpose_2" [id=417, type=Transpose];
-"418 /layers/layers.2/blocks.1/attn/Transpose" [id=418, type=Transpose];
-"419 /layers/layers.2/blocks.0/attn/proj/Add" [id=419, type=Add];
-"420 /layers/layers.1/blocks.1/Slice_6" [id=420, type=StridedSlice];
-"421 /layers/layers.1/blocks.1/Slice_7" [id=421, type=StridedSlice];
-"422 /layers/layers.2/downsample/norm/Add_1" [id=422, type=Add];
-"423 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [id=423, type=MatMul];
-"424 /layers/layers.2/blocks.5/Transpose" [id=424, type=Transpose];
-"425 /layers/layers.2/blocks.4/attn/Transpose" [id=425, type=Transpose];
-"426 /layers/layers.2/blocks.3/attn/qkv/MatMul" [id=426, type=MatMul];
-"427 /layers/layers.2/blocks.2/attn/softmax/Softmax" [id=427, type=Softmax];
-"428 /layers/layers.2/blocks.2/attn/Reshape_1" [id=428, type=Reshape];
-"429 /layers/layers.2/blocks.1/attn/Gather" [id=429, type=Gather];
-"430 /layers/layers.2/blocks.1/attn/Gather_1" [id=430, type=Gather];
-"431 /layers/layers.2/blocks.1/attn/Gather_2" [id=431, type=Gather];
-"432 /layers/layers.2/blocks.0/Reshape_4" [id=432, type=Reshape];
-"433 /layers/layers.1/blocks.1/Concat_3" [id=433, type=Concat];
-"434 /layers/layers.2/downsample/norm/Add_1_0_0/nncf_smooth_quant" [id=434, type=Multiply];
-"435 /layers/layers.2/blocks.5/mlp/fc2/Add" [id=435, type=Add];
-"436 /layers/layers.2/blocks.5/Reshape_2" [id=436, type=Reshape];
-"437 /layers/layers.2/blocks.4/attn/Gather" [id=437, type=Gather];
-"438 /layers/layers.2/blocks.4/attn/Gather_1" [id=438, type=Gather];
-"439 /layers/layers.2/blocks.4/attn/Gather_2" [id=439, type=Gather];
-"440 /layers/layers.2/blocks.3/attn/qkv/Add" [id=440, type=Add];
-"441 /layers/layers.2/blocks.2/attn/Reshape_1_0_0/nncf_smooth_quant" [id=441, type=Multiply];
-"442 /layers/layers.2/blocks.1/attn/Mul" [id=442, type=Multiply];
-"443 /layers/layers.2/blocks.1/attn/MatMul" [id=443, type=MatMul];
-"444 /layers/layers.2/blocks.1/attn/MatMul_1" [id=444, type=MatMul];
-"445 /layers/layers.2/blocks.0/Reshape_5" [id=445, type=Reshape];
-"446 /layers/layers.1/blocks.1/Reshape_7" [id=446, type=Reshape];
-"447 /layers/layers.2/downsample/reduction/MatMul" [id=447, type=MatMul];
-"448 /layers/layers.2/blocks.5/Reshape_3" [id=448, type=Reshape];
-"449 /layers/layers.2/blocks.4/attn/Mul" [id=449, type=Multiply];
-"450 /layers/layers.2/blocks.4/attn/MatMul" [id=450, type=MatMul];
-"451 /layers/layers.2/blocks.4/attn/MatMul_1" [id=451, type=MatMul];
-"452 /layers/layers.2/blocks.3/attn/Reshape" [id=452, type=Reshape];
-"453 /layers/layers.2/blocks.2/attn/proj/MatMul" [id=453, type=MatMul];
-"454 /layers/layers.2/blocks.1/attn/Add" [id=454, type=Add];
-"455 /layers/layers.2/blocks.1/attn/Transpose_2" [id=455, type=Transpose];
-"456 /layers/layers.2/blocks.0/Transpose_1" [id=456, type=Transpose];
-"457 /layers/layers.3/blocks.0/Add" [id=457, type=Add];
-"458 /layers/layers.3/blocks.0/norm1/Div" [id=458, type=MVN];
-"459 /layers/layers.2/blocks.5/Reshape_3_0_0/nncf_smooth_quant" [id=459, type=Multiply];
-"460 /layers/layers.2/blocks.4/attn/Add" [id=460, type=Add];
-"461 /layers/layers.2/blocks.4/attn/Transpose_2" [id=461, type=Transpose];
-"462 /layers/layers.2/blocks.3/attn/Transpose" [id=462, type=Transpose];
-"463 /layers/layers.2/blocks.2/attn/proj/Add" [id=463, type=Add];
-"464 /layers/layers.2/blocks.1/attn/Reshape_1" [id=464, type=Reshape];
-"465 /layers/layers.2/blocks.1/attn/Reshape_3" [id=465, type=Reshape];
-"466 /layers/layers.2/blocks.0/Reshape_6" [id=466, type=Reshape];
-"467 /layers/layers.3/blocks.0/Add_1" [id=467, type=Add];
-"468 /layers/layers.3/blocks.0/norm2/Div" [id=468, type=MVN];
-"469 /layers/layers.3/blocks.0/norm1/Mul" [id=469, type=Multiply];
-"470 /layers/layers.2/blocks.5/attn/qkv/MatMul" [id=470, type=MatMul];
-"471 /layers/layers.2/blocks.4/attn/softmax/Softmax" [id=471, type=Softmax];
-"472 /layers/layers.2/blocks.4/attn/Reshape_1" [id=472, type=Reshape];
-"473 /layers/layers.2/blocks.3/attn/Gather" [id=473, type=Gather];
-"474 /layers/layers.2/blocks.3/attn/Gather_1" [id=474, type=Gather];
-"475 /layers/layers.2/blocks.3/attn/Gather_2" [id=475, type=Gather];
-"476 /layers/layers.2/blocks.2/Reshape_4" [id=476, type=Reshape];
-"477 /layers/layers.2/blocks.1/attn/Add_1" [id=477, type=Add];
-"478 /layers/layers.2/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [id=478, type=Multiply];
-"479 /layers/layers.2/blocks.0/Reshape_7" [id=479, type=Reshape];
-"480 /layers/layers.3/blocks.1/Add" [id=480, type=Add];
-"481 /layers/layers.3/blocks.1/norm1/Div" [id=481, type=MVN];
-"482 /layers/layers.3/blocks.0/norm2/Mul" [id=482, type=Multiply];
-"483 /layers/layers.3/blocks.0/norm1/Add_1" [id=483, type=Add];
-"484 /layers/layers.2/blocks.5/attn/qkv/Add" [id=484, type=Add];
-"485 /layers/layers.2/blocks.4/attn/Reshape_1_0_0/nncf_smooth_quant" [id=485, type=Multiply];
-"486 /layers/layers.2/blocks.3/attn/Mul" [id=486, type=Multiply];
-"487 /layers/layers.2/blocks.3/attn/MatMul" [id=487, type=MatMul];
-"488 /layers/layers.2/blocks.3/attn/MatMul_1" [id=488, type=MatMul];
-"489 /layers/layers.2/blocks.2/Reshape_5" [id=489, type=Reshape];
-"490 /layers/layers.2/blocks.1/attn/Reshape_2" [id=490, type=Reshape];
-"491 /layers/layers.2/blocks.1/attn/proj/MatMul" [id=491, type=MatMul];
-"492 /layers/layers.3/blocks.1/Add_1" [id=492, type=Add];
-"493 /layers/layers.3/blocks.1/norm2/Div" [id=493, type=MVN];
-"494 /layers/layers.3/blocks.1/norm1/Mul" [id=494, type=Multiply];
-"495 /layers/layers.3/blocks.0/norm2/Add_1" [id=495, type=Add];
-"496 /layers/layers.3/blocks.0/Reshape_1" [id=496, type=Reshape];
-"497 /layers/layers.2/blocks.5/attn/Reshape" [id=497, type=Reshape];
-"498 /layers/layers.2/blocks.4/attn/proj/MatMul" [id=498, type=MatMul];
-"499 /layers/layers.2/blocks.3/attn/Add" [id=499, type=Add];
-"500 /layers/layers.2/blocks.3/attn/Transpose_2" [id=500, type=Transpose];
-"501 /layers/layers.2/blocks.2/Transpose_1" [id=501, type=Transpose];
-"502 /layers/layers.2/blocks.1/attn/softmax/Softmax" [id=502, type=Softmax];
-"503 /layers/layers.2/blocks.1/attn/proj/Add" [id=503, type=Add];
-"504 /norm/Div" [id=504, type=MVN];
-"505 /layers/layers.3/blocks.1/norm2/Mul" [id=505, type=Multiply];
-"506 /layers/layers.3/blocks.1/norm1/Add_1" [id=506, type=Add];
-"507 /layers/layers.3/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [id=507, type=Multiply];
-"508 /layers/layers.3/blocks.0/Transpose" [id=508, type=Reshape];
-"509 /layers/layers.2/blocks.5/attn/Transpose" [id=509, type=Transpose];
-"510 /layers/layers.2/blocks.4/attn/proj/Add" [id=510, type=Add];
-"511 /layers/layers.2/blocks.3/attn/Reshape_1" [id=511, type=Reshape];
-"512 /layers/layers.2/blocks.3/attn/Reshape_3" [id=512, type=Reshape];
-"513 /layers/layers.2/blocks.2/Reshape_6" [id=513, type=Reshape];
-"514 /layers/layers.2/blocks.1/Reshape_4" [id=514, type=Reshape];
-"515 /norm/Mul" [id=515, type=Multiply];
-"516 /layers/layers.3/blocks.1/norm2/Add_1" [id=516, type=Add];
-"517 /layers/layers.3/blocks.1/Reshape_1" [id=517, type=Reshape];
-"518 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [id=518, type=MatMul];
-"519 /layers/layers.3/blocks.0/Reshape_2" [id=519, type=Reshape];
-"520 /layers/layers.2/blocks.5/attn/Gather" [id=520, type=Gather];
-"521 /layers/layers.2/blocks.5/attn/Gather_1" [id=521, type=Gather];
-"522 /layers/layers.2/blocks.5/attn/Gather_2" [id=522, type=Gather];
-"523 /layers/layers.2/blocks.4/Reshape_4" [id=523, type=Reshape];
-"524 /layers/layers.2/blocks.3/attn/Add_1" [id=524, type=Add];
-"525 /layers/layers.2/blocks.3/attn/Reshape_3_0_0/nncf_smooth_quant" [id=525, type=Multiply];
-"526 /layers/layers.2/blocks.2/Reshape_7" [id=526, type=Reshape];
-"527 /layers/layers.2/blocks.1/Reshape_5" [id=527, type=Reshape];
-"528 /norm/Add_1" [id=528, type=Add];
-"529 /layers/layers.3/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [id=529, type=Multiply];
-"530 /layers/layers.3/blocks.1/Transpose" [id=530, type=Reshape];
-"531 /layers/layers.3/blocks.0/mlp/fc1/Add" [id=531, type=Add];
-"532 /layers/layers.3/blocks.0/Reshape_3" [id=532, type=Reshape];
-"533 /layers/layers.2/blocks.5/attn/Mul" [id=533, type=Multiply];
-"534 /layers/layers.2/blocks.5/attn/MatMul" [id=534, type=MatMul];
-"535 /layers/layers.2/blocks.5/attn/MatMul_1" [id=535, type=MatMul];
-"536 /layers/layers.2/blocks.4/Reshape_5" [id=536, type=Reshape];
-"537 /layers/layers.2/blocks.3/attn/Reshape_2" [id=537, type=Reshape];
-"538 /layers/layers.2/blocks.3/attn/proj/MatMul" [id=538, type=MatMul];
-"539 /layers/layers.2/blocks.1/Transpose_1" [id=539, type=Transpose];
-"540 ReduceMean_6037" [id=540, type=ReduceMean];
-"541 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [id=541, type=MatMul];
-"542 /layers/layers.3/blocks.1/Reshape_2" [id=542, type=Reshape];
-"543 /layers/layers.3/blocks.0/mlp/act/Mul_1" [id=543, type=Gelu];
-"544 /layers/layers.3/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [id=544, type=Multiply];
-"545 /layers/layers.2/blocks.5/attn/Add" [id=545, type=Add];
-"546 /layers/layers.2/blocks.5/attn/Transpose_2" [id=546, type=Transpose];
-"547 /layers/layers.2/blocks.4/Transpose_1" [id=547, type=Transpose];
-"548 /layers/layers.2/blocks.3/attn/softmax/Softmax" [id=548, type=Softmax];
-"549 /layers/layers.2/blocks.3/attn/proj/Add" [id=549, type=Add];
-"550 /layers/layers.2/blocks.1/Reshape_6" [id=550, type=Reshape];
-"551 /avgpool/GlobalAveragePool" [id=551, type=Reshape];
-"552 /layers/layers.3/blocks.1/mlp/fc1/Add" [id=552, type=Add];
-"553 /layers/layers.3/blocks.1/Reshape_3" [id=553, type=Reshape];
-"554 /layers/layers.3/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=554, type=Multiply];
-"555 /layers/layers.3/blocks.0/attn/qkv/MatMul" [id=555, type=MatMul];
-"556 /layers/layers.2/blocks.5/attn/Reshape_1" [id=556, type=Reshape];
-"557 /layers/layers.2/blocks.5/attn/Reshape_3" [id=557, type=Reshape];
-"558 /layers/layers.2/blocks.4/Reshape_6" [id=558, type=Reshape];
-"559 /layers/layers.2/blocks.3/Reshape_4" [id=559, type=Reshape];
-"560 /layers/layers.2/blocks.1/Slice_4" [id=560, type=StridedSlice];
-"561 /layers/layers.2/blocks.1/Slice_5" [id=561, type=StridedSlice];
-"562 /Flatten" [id=562, type=Reshape];
-"563 /layers/layers.3/blocks.1/mlp/act/Mul_1" [id=563, type=Gelu];
-"564 /layers/layers.3/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [id=564, type=Multiply];
-"565 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [id=565, type=MatMul];
-"566 /layers/layers.3/blocks.0/attn/qkv/Add" [id=566, type=Add];
-"567 /layers/layers.2/blocks.5/attn/Add_1" [id=567, type=Add];
-"568 /layers/layers.2/blocks.5/attn/Reshape_3_0_0/nncf_smooth_quant" [id=568, type=Multiply];
-"569 /layers/layers.2/blocks.4/Reshape_7" [id=569, type=Reshape];
-"570 /layers/layers.2/blocks.3/Reshape_5" [id=570, type=Reshape];
-"571 /layers/layers.2/blocks.1/Concat_2" [id=571, type=Concat];
-"572 /Flatten_0_0/nncf_smooth_quant" [id=572, type=Multiply];
-"573 /layers/layers.3/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [id=573, type=Multiply];
-"574 /layers/layers.3/blocks.1/attn/qkv/MatMul" [id=574, type=MatMul];
-"575 /layers/layers.3/blocks.0/mlp/fc2/Add" [id=575, type=Add];
-"576 /layers/layers.3/blocks.0/attn/Reshape" [id=576, type=Reshape];
-"577 /layers/layers.2/blocks.5/attn/Reshape_2" [id=577, type=Reshape];
-"578 /layers/layers.2/blocks.5/attn/proj/MatMul" [id=578, type=MatMul];
-"579 /layers/layers.2/blocks.3/Transpose_1" [id=579, type=Transpose];
-"580 /layers/layers.2/blocks.1/Slice_6" [id=580, type=StridedSlice];
-"581 /layers/layers.2/blocks.1/Slice_7" [id=581, type=StridedSlice];
-"582 /head/Gemm/WithoutBiases" [id=582, type=MatMul];
-"583 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [id=583, type=MatMul];
-"584 /layers/layers.3/blocks.1/attn/qkv/Add" [id=584, type=Add];
-"585 /layers/layers.3/blocks.0/attn/Transpose" [id=585, type=Transpose];
-"586 /layers/layers.2/blocks.5/attn/softmax/Softmax" [id=586, type=Softmax];
-"587 /layers/layers.2/blocks.5/attn/proj/Add" [id=587, type=Add];
-"588 /layers/layers.2/blocks.3/Reshape_6" [id=588, type=Reshape];
-"589 /layers/layers.2/blocks.1/Concat_3" [id=589, type=Concat];
-"590 probs" [id=590, type=Add];
-"591 /layers/layers.3/blocks.1/mlp/fc2/Add" [id=591, type=Add];
-"592 /layers/layers.3/blocks.1/attn/Reshape" [id=592, type=Reshape];
-"593 /layers/layers.3/blocks.0/attn/Gather" [id=593, type=Gather];
-"594 /layers/layers.3/blocks.0/attn/Gather_1" [id=594, type=Gather];
-"595 /layers/layers.3/blocks.0/attn/Gather_2" [id=595, type=Gather];
-"596 /layers/layers.2/blocks.5/Reshape_4" [id=596, type=Reshape];
-"597 /layers/layers.2/blocks.3/Slice_4" [id=597, type=StridedSlice];
-"598 /layers/layers.2/blocks.3/Slice_5" [id=598, type=StridedSlice];
-"599 /layers/layers.2/blocks.1/Reshape_7" [id=599, type=Reshape];
-"600 probs/sink_port_0" [id=600, type=Result];
-"601 /layers/layers.3/blocks.1/attn/Transpose" [id=601, type=Transpose];
-"602 /layers/layers.3/blocks.0/attn/Mul" [id=602, type=Multiply];
-"603 /layers/layers.3/blocks.0/attn/MatMul" [id=603, type=MatMul];
-"604 /layers/layers.3/blocks.0/attn/MatMul_1" [id=604, type=MatMul];
-"605 /layers/layers.2/blocks.5/Reshape_5" [id=605, type=Reshape];
-"606 /layers/layers.2/blocks.3/Concat_2" [id=606, type=Concat];
-"607 /layers/layers.3/blocks.1/attn/Gather" [id=607, type=Gather];
-"608 /layers/layers.3/blocks.1/attn/Gather_1" [id=608, type=Gather];
-"609 /layers/layers.3/blocks.1/attn/Gather_2" [id=609, type=Gather];
-"610 /layers/layers.3/blocks.0/attn/Add" [id=610, type=Add];
-"611 /layers/layers.3/blocks.0/attn/Transpose_2" [id=611, type=Transpose];
-"612 /layers/layers.2/blocks.5/Transpose_1" [id=612, type=Transpose];
-"613 /layers/layers.2/blocks.3/Slice_6" [id=613, type=StridedSlice];
-"614 /layers/layers.2/blocks.3/Slice_7" [id=614, type=StridedSlice];
-"615 /layers/layers.3/blocks.1/attn/Mul" [id=615, type=Multiply];
-"616 /layers/layers.3/blocks.1/attn/MatMul" [id=616, type=MatMul];
-"617 /layers/layers.3/blocks.1/attn/MatMul_1" [id=617, type=MatMul];
-"618 /layers/layers.3/blocks.0/attn/softmax/Softmax" [id=618, type=Softmax];
-"619 /layers/layers.3/blocks.0/attn/Reshape_1" [id=619, type=Reshape];
-"620 /layers/layers.2/blocks.5/Reshape_6" [id=620, type=Reshape];
-"621 /layers/layers.2/blocks.3/Concat_3" [id=621, type=Concat];
-"622 /layers/layers.3/blocks.1/attn/Add" [id=622, type=Add];
-"623 /layers/layers.3/blocks.1/attn/Transpose_2" [id=623, type=Transpose];
-"624 /layers/layers.3/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [id=624, type=Multiply];
-"625 /layers/layers.2/blocks.5/Slice_4" [id=625, type=StridedSlice];
-"626 /layers/layers.2/blocks.5/Slice_5" [id=626, type=StridedSlice];
-"627 /layers/layers.2/blocks.3/Reshape_7" [id=627, type=Reshape];
-"628 /layers/layers.3/blocks.1/attn/softmax/Softmax" [id=628, type=Softmax];
-"629 /layers/layers.3/blocks.1/attn/Reshape_1" [id=629, type=Reshape];
-"630 /layers/layers.3/blocks.0/attn/proj/MatMul" [id=630, type=MatMul];
-"631 /layers/layers.2/blocks.5/Concat_2" [id=631, type=Concat];
-"632 /layers/layers.3/blocks.1/attn/Reshape_1_0_0/nncf_smooth_quant" [id=632, type=Multiply];
-"633 /layers/layers.3/blocks.0/attn/proj/Add" [id=633, type=Add];
-"634 /layers/layers.2/blocks.5/Slice_6" [id=634, type=StridedSlice];
-"635 /layers/layers.2/blocks.5/Slice_7" [id=635, type=StridedSlice];
-"636 /layers/layers.3/blocks.1/attn/proj/MatMul" [id=636, type=MatMul];
-"637 /layers/layers.3/blocks.0/Reshape_4" [id=637, type=Reshape];
-"638 /layers/layers.2/blocks.5/Concat_3" [id=638, type=Concat];
-"639 /layers/layers.3/blocks.1/attn/proj/Add" [id=639, type=Add];
-"640 /layers/layers.3/blocks.0/Reshape_5" [id=640, type=Reshape];
-"641 /layers/layers.2/blocks.5/Reshape_7" [id=641, type=Reshape];
-"642 /layers/layers.3/blocks.1/Reshape_4" [id=642, type=Reshape];
-"643 /layers/layers.3/blocks.0/Transpose_1" [id=643, type=Reshape];
-"644 /layers/layers.3/blocks.1/Reshape_5" [id=644, type=Reshape];
-"645 /layers/layers.3/blocks.0/Reshape_6" [id=645, type=Reshape];
-"646 /layers/layers.3/blocks.1/Transpose_1" [id=646, type=Reshape];
-"647 /layers/layers.3/blocks.0/Reshape_7" [id=647, type=Reshape];
-"648 /layers/layers.3/blocks.1/Reshape_6" [id=648, type=Reshape];
-"649 /layers/layers.3/blocks.1/Reshape_7" [id=649, type=Reshape];
-"650 Constant_7401" [id=650, type=Constant];
-"651 head.weight" [id=651, type=Constant];
-"652 Constant_26065" [id=652, type=Constant];
-"653 Constant_2148" [id=653, type=Constant];
-"654 Constant_6567" [id=654, type=Constant];
-"655 Constant_6036" [id=655, type=Constant];
-"656 Constant_7400" [id=656, type=Constant];
-"657 Constant_7399" [id=657, type=Constant];
-"658 Constant_2123" [id=658, type=Constant];
-"659 Transpose_6564" [id=659, type=Constant];
-"660 Constant_26059" [id=660, type=Constant];
-"661 Transpose_6560" [id=661, type=Constant];
-"662 Constant_26053" [id=662, type=Constant];
-"663 Constant_7396" [id=663, type=Constant];
-"664 Constant_7395" [id=664, type=Constant];
-"665 Constant_2097" [id=665, type=Constant];
-"666 /layers/layers.3/blocks.1/Constant_7" [id=666, type=Constant];
-"667 /layers/layers.3/blocks.1/Constant_6" [id=667, type=Constant];
-"668 Constant_6554" [id=668, type=Constant];
-"669 /layers/layers.3/blocks.1/Constant_5" [id=669, type=Constant];
-"670 /layers/layers.3/blocks.1/Constant_4" [id=670, type=Constant];
-"671 Transpose_6552" [id=671, type=Constant];
-"672 Constant_26069" [id=672, type=Constant];
-"673 /layers/layers.3/blocks.1/attn/Constant_2" [id=673, type=Constant];
-"674 Constant_2070" [id=674, type=Constant];
-"675 Constant_2060" [id=675, type=Constant];
-"676 /patch_embed/Constant" [id=676, type=Constant];
-"677 Constant_2054" [id=677, type=Constant];
-"678 /layers/layers.3/blocks.1/attn/Constant" [id=678, type=Constant];
-"679 Transpose_6549" [id=679, type=Constant];
-"680 Constant_26061" [id=680, type=Constant];
-"681 /layers/layers.3/blocks.1/Constant_3" [id=681, type=Constant];
-"682 /layers/layers.3/blocks.1/Constant_2" [id=682, type=Constant];
-"683 Constant_6544" [id=683, type=Constant];
-"684 /layers/layers.3/blocks.1/Constant_1" [id=684, type=Constant];
-"685 Constant_7391" [id=685, type=Constant];
-"686 Constant_7390" [id=686, type=Constant];
-"687 Constant_2017" [id=687, type=Constant];
-"688 Transpose_6541" [id=688, type=Constant];
-"689 Constant_26055" [id=689, type=Constant];
-"690 Transpose_6537" [id=690, type=Constant];
-"691 Constant_26049" [id=691, type=Constant];
-"692 Constant_7387" [id=692, type=Constant];
-"693 Constant_7386" [id=693, type=Constant];
-"694 Constant_1991" [id=694, type=Constant];
-"695 /layers/layers.3/blocks.0/Constant_7" [id=695, type=Constant];
-"696 /layers/layers.3/blocks.0/Constant_6" [id=696, type=Constant];
-"697 Constant_6531" [id=697, type=Constant];
-"698 /layers/layers.3/blocks.0/Constant_5" [id=698, type=Constant];
-"699 /layers/layers.3/blocks.0/Constant_4" [id=699, type=Constant];
-"700 Transpose_6529" [id=700, type=Constant];
-"701 Constant_26067" [id=701, type=Constant];
-"702 /layers/layers.3/blocks.0/attn/Constant_2" [id=702, type=Constant];
-"703 Constant_1964" [id=703, type=Constant];
-"704 Constant_1954" [id=704, type=Constant];
-"705 Constant_1948" [id=705, type=Constant];
-"706 /layers/layers.3/blocks.0/attn/Constant" [id=706, type=Constant];
-"707 Transpose_6526" [id=707, type=Constant];
-"708 Constant_26057" [id=708, type=Constant];
-"709 /layers/layers.3/blocks.0/Constant_3" [id=709, type=Constant];
-"710 /layers/layers.3/blocks.0/Constant_2" [id=710, type=Constant];
-"711 Constant_6521" [id=711, type=Constant];
-"712 /layers/layers.3/blocks.0/Constant_1" [id=712, type=Constant];
-"713 Constant_7382" [id=713, type=Constant];
-"714 Constant_7381" [id=714, type=Constant];
-"715 Constant_1911" [id=715, type=Constant];
-"716 Transpose_6518" [id=716, type=Constant];
-"717 Constant_26041" [id=717, type=Constant];
-"718 Constant_7380" [id=718, type=Constant];
-"719 Constant_7379" [id=719, type=Constant];
-"720 Constant_1897" [id=720, type=Constant];
-"721 /layers/layers.2/downsample/Constant_25" [id=721, type=Constant];
-"722 Constant_5751" [id=722, type=Constant];
-"723 Constant_5748" [id=723, type=Constant];
-"724 Constant_5745" [id=724, type=Constant];
-"725 Constant_5715" [id=725, type=Constant];
-"726 Constant_5712" [id=726, type=Constant];
-"727 Constant_5709" [id=727, type=Constant];
-"728 /layers/layers.2/downsample/Constant" [id=728, type=Constant];
-"729 Transpose_6514" [id=729, type=Constant];
-"730 Constant_26035" [id=730, type=Constant];
-"731 Transpose_6510" [id=731, type=Constant];
-"732 Constant_26025" [id=732, type=Constant];
-"733 Constant_7376" [id=733, type=Constant];
-"734 Constant_7375" [id=734, type=Constant];
-"735 Constant_1832" [id=735, type=Constant];
-"736 /layers/layers.2/blocks.5/Constant_31" [id=736, type=Constant];
-"737 Constant_5679" [id=737, type=Constant];
-"738 Constant_5676" [id=738, type=Constant];
-"739 Constant_5673" [id=739, type=Constant];
-"740 Constant_5655" [id=740, type=Constant];
-"741 Constant_5652" [id=741, type=Constant];
-"742 Constant_5649" [id=742, type=Constant];
-"743 /layers/layers.2/blocks.5/Constant_18" [id=743, type=Constant];
-"744 Constant_1779" [id=744, type=Constant];
-"745 /layers/layers.2/blocks.5/Constant_17" [id=745, type=Constant];
-"746 /layers/layers.2/blocks.5/Constant_16" [id=746, type=Constant];
-"747 Transpose_6506" [id=747, type=Constant];
-"748 Constant_26063" [id=748, type=Constant];
-"749 /layers/layers.2/blocks.5/attn/Constant_4" [id=749, type=Constant];
-"750 Constant_1763" [id=750, type=Constant];
-"751 Constant_1744" [id=751, type=Constant];
-"752 Constant_1738" [id=752, type=Constant];
-"753 /layers/layers.2/blocks.5/attn/Constant" [id=753, type=Constant];
-"754 Transpose_6503" [id=754, type=Constant];
-"755 Constant_26043" [id=755, type=Constant];
-"756 /layers/layers.2/blocks.5/Constant_15" [id=756, type=Constant];
-"757 /layers/layers.2/blocks.5/Constant_14" [id=757, type=Constant];
-"758 Constant_1722" [id=758, type=Constant];
-"759 /layers/layers.2/blocks.5/Constant_13" [id=759, type=Constant];
-"760 Constant_5631" [id=760, type=Constant];
-"761 Constant_5628" [id=761, type=Constant];
-"762 Constant_5625" [id=762, type=Constant];
-"763 Constant_5607" [id=763, type=Constant];
-"764 Constant_5604" [id=764, type=Constant];
-"765 Constant_5601" [id=765, type=Constant];
-"766 /layers/layers.2/blocks.5/Constant" [id=766, type=Constant];
-"767 Constant_7371" [id=767, type=Constant];
-"768 Constant_7370" [id=768, type=Constant];
-"769 Constant_1659" [id=769, type=Constant];
-"770 Transpose_6499" [id=770, type=Constant];
-"771 Constant_26029" [id=771, type=Constant];
-"772 Transpose_6495" [id=772, type=Constant];
-"773 Constant_26021" [id=773, type=Constant];
-"774 Constant_7367" [id=774, type=Constant];
-"775 Constant_7366" [id=775, type=Constant];
-"776 Constant_1633" [id=776, type=Constant];
-"777 /layers/layers.2/blocks.4/Constant_7" [id=777, type=Constant];
-"778 /layers/layers.2/blocks.4/Constant_6" [id=778, type=Constant];
-"779 Constant_1622" [id=779, type=Constant];
-"780 /layers/layers.2/blocks.4/Constant_5" [id=780, type=Constant];
-"781 /layers/layers.2/blocks.4/Constant_4" [id=781, type=Constant];
-"782 Transpose_6491" [id=782, type=Constant];
-"783 Constant_26047" [id=783, type=Constant];
-"784 /layers/layers.2/blocks.4/attn/Constant_2" [id=784, type=Constant];
-"785 Constant_1606" [id=785, type=Constant];
-"786 Constant_1596" [id=786, type=Constant];
-"787 Constant_1590" [id=787, type=Constant];
-"788 /layers/layers.2/blocks.4/attn/Constant" [id=788, type=Constant];
-"789 Transpose_6488" [id=789, type=Constant];
-"790 Constant_26031" [id=790, type=Constant];
-"791 /layers/layers.2/blocks.4/Constant_3" [id=791, type=Constant];
-"792 /layers/layers.2/blocks.4/Constant_2" [id=792, type=Constant];
-"793 Constant_1574" [id=793, type=Constant];
-"794 /layers/layers.2/blocks.4/Constant_1" [id=794, type=Constant];
-"795 Constant_7362" [id=795, type=Constant];
-"796 Constant_7361" [id=796, type=Constant];
-"797 Constant_1553" [id=797, type=Constant];
-"798 Transpose_6484" [id=798, type=Constant];
-"799 Constant_26023" [id=799, type=Constant];
-"800 Transpose_6480" [id=800, type=Constant];
-"801 Constant_26015" [id=801, type=Constant];
-"802 Constant_7358" [id=802, type=Constant];
-"803 Constant_7357" [id=803, type=Constant];
-"804 Constant_1527" [id=804, type=Constant];
-"805 /layers/layers.2/blocks.3/Constant_31" [id=805, type=Constant];
-"806 Constant_5583" [id=806, type=Constant];
-"807 Constant_5580" [id=807, type=Constant];
-"808 Constant_5577" [id=808, type=Constant];
-"809 Constant_5559" [id=809, type=Constant];
-"810 Constant_5556" [id=810, type=Constant];
-"811 Constant_5553" [id=811, type=Constant];
-"812 /layers/layers.2/blocks.3/Constant_18" [id=812, type=Constant];
-"813 Constant_1474" [id=813, type=Constant];
-"814 /layers/layers.2/blocks.3/Constant_17" [id=814, type=Constant];
-"815 /layers/layers.2/blocks.3/Constant_16" [id=815, type=Constant];
-"816 Transpose_6476" [id=816, type=Constant];
-"817 Constant_26051" [id=817, type=Constant];
-"818 /layers/layers.2/blocks.3/attn/Constant_4" [id=818, type=Constant];
-"819 Constant_1458" [id=819, type=Constant];
-"820 Constant_1439" [id=820, type=Constant];
-"821 Constant_1433" [id=821, type=Constant];
-"822 /layers/layers.2/blocks.3/attn/Constant" [id=822, type=Constant];
-"823 Transpose_6473" [id=823, type=Constant];
-"824 Constant_26037" [id=824, type=Constant];
-"825 /layers/layers.2/blocks.3/Constant_15" [id=825, type=Constant];
-"826 /layers/layers.2/blocks.3/Constant_14" [id=826, type=Constant];
-"827 Constant_1417" [id=827, type=Constant];
-"828 /layers/layers.2/blocks.3/Constant_13" [id=828, type=Constant];
-"829 Constant_5535" [id=829, type=Constant];
-"830 Constant_5532" [id=830, type=Constant];
-"831 Constant_5529" [id=831, type=Constant];
-"832 Constant_5511" [id=832, type=Constant];
-"833 Constant_5508" [id=833, type=Constant];
-"834 Constant_5505" [id=834, type=Constant];
-"835 /layers/layers.2/blocks.3/Constant" [id=835, type=Constant];
-"836 Constant_7353" [id=836, type=Constant];
-"837 Constant_7352" [id=837, type=Constant];
-"838 Constant_1354" [id=838, type=Constant];
-"839 Transpose_6469" [id=839, type=Constant];
-"840 Constant_26017" [id=840, type=Constant];
-"841 Transpose_6465" [id=841, type=Constant];
-"842 Constant_26009" [id=842, type=Constant];
-"843 Constant_7349" [id=843, type=Constant];
-"844 Constant_7348" [id=844, type=Constant];
-"845 Constant_1328" [id=845, type=Constant];
-"846 /layers/layers.2/blocks.2/Constant_7" [id=846, type=Constant];
-"847 /layers/layers.2/blocks.2/Constant_6" [id=847, type=Constant];
-"848 Constant_1317" [id=848, type=Constant];
-"849 /layers/layers.2/blocks.2/Constant_5" [id=849, type=Constant];
-"850 /layers/layers.2/blocks.2/Constant_4" [id=850, type=Constant];
-"851 Transpose_6461" [id=851, type=Constant];
-"852 Constant_26039" [id=852, type=Constant];
-"853 /layers/layers.2/blocks.2/attn/Constant_2" [id=853, type=Constant];
-"854 Constant_1301" [id=854, type=Constant];
-"855 Constant_1291" [id=855, type=Constant];
-"856 Constant_1285" [id=856, type=Constant];
-"857 /layers/layers.2/blocks.2/attn/Constant" [id=857, type=Constant];
-"858 Transpose_6458" [id=858, type=Constant];
-"859 Constant_26019" [id=859, type=Constant];
-"860 /layers/layers.2/blocks.2/Constant_3" [id=860, type=Constant];
-"861 /layers/layers.2/blocks.2/Constant_2" [id=861, type=Constant];
-"862 Constant_1269" [id=862, type=Constant];
-"863 /layers/layers.2/blocks.2/Constant_1" [id=863, type=Constant];
-"864 Constant_7344" [id=864, type=Constant];
-"865 Constant_7343" [id=865, type=Constant];
-"866 Constant_1248" [id=866, type=Constant];
-"867 Transpose_6454" [id=867, type=Constant];
-"868 Constant_26011" [id=868, type=Constant];
-"869 Transpose_6450" [id=869, type=Constant];
-"870 Constant_26003" [id=870, type=Constant];
-"871 Constant_7340" [id=871, type=Constant];
-"872 Constant_7339" [id=872, type=Constant];
-"873 Constant_1222" [id=873, type=Constant];
-"874 /layers/layers.2/blocks.1/Constant_31" [id=874, type=Constant];
-"875 Constant_5487" [id=875, type=Constant];
-"876 Constant_5484" [id=876, type=Constant];
-"877 Constant_5481" [id=877, type=Constant];
-"878 Constant_5463" [id=878, type=Constant];
-"879 Constant_5460" [id=879, type=Constant];
-"880 Constant_5457" [id=880, type=Constant];
-"881 /layers/layers.2/blocks.1/Constant_18" [id=881, type=Constant];
-"882 Constant_1169" [id=882, type=Constant];
-"883 /layers/layers.2/blocks.1/Constant_17" [id=883, type=Constant];
-"884 /layers/layers.2/blocks.1/Constant_16" [id=884, type=Constant];
-"885 Transpose_6446" [id=885, type=Constant];
-"886 Constant_26045" [id=886, type=Constant];
-"887 /layers/layers.2/blocks.1/attn/Constant_4" [id=887, type=Constant];
-"888 Constant_1153" [id=888, type=Constant];
-"889 Constant_1134" [id=889, type=Constant];
-"890 Constant_1128" [id=890, type=Constant];
-"891 /layers/layers.2/blocks.1/attn/Constant" [id=891, type=Constant];
-"892 Transpose_6443" [id=892, type=Constant];
-"893 Constant_26027" [id=893, type=Constant];
-"894 /layers/layers.2/blocks.1/Constant_15" [id=894, type=Constant];
-"895 /layers/layers.2/blocks.1/Constant_14" [id=895, type=Constant];
-"896 Constant_1112" [id=896, type=Constant];
-"897 /layers/layers.2/blocks.1/Constant_13" [id=897, type=Constant];
-"898 Constant_5439" [id=898, type=Constant];
-"899 Constant_5436" [id=899, type=Constant];
-"900 Constant_5433" [id=900, type=Constant];
-"901 Constant_5415" [id=901, type=Constant];
-"902 Constant_5412" [id=902, type=Constant];
-"903 Constant_5409" [id=903, type=Constant];
-"904 /layers/layers.2/blocks.1/Constant" [id=904, type=Constant];
-"905 Constant_7335" [id=905, type=Constant];
-"906 Constant_7334" [id=906, type=Constant];
-"907 Constant_1049" [id=907, type=Constant];
-"908 Transpose_6439" [id=908, type=Constant];
-"909 Constant_26005" [id=909, type=Constant];
-"910 Transpose_6435" [id=910, type=Constant];
-"911 Constant_26001" [id=911, type=Constant];
-"912 Constant_7331" [id=912, type=Constant];
-"913 Constant_7330" [id=913, type=Constant];
-"914 Constant_1023" [id=914, type=Constant];
-"915 /layers/layers.2/blocks.0/Constant_7" [id=915, type=Constant];
-"916 /layers/layers.2/blocks.0/Constant_6" [id=916, type=Constant];
-"917 Constant_1012" [id=917, type=Constant];
-"918 /layers/layers.2/blocks.0/Constant_5" [id=918, type=Constant];
-"919 /layers/layers.2/blocks.0/Constant_4" [id=919, type=Constant];
-"920 Transpose_6431" [id=920, type=Constant];
-"921 Constant_26033" [id=921, type=Constant];
-"922 /layers/layers.2/blocks.0/attn/Constant_2" [id=922, type=Constant];
-"923 Constant_996" [id=923, type=Constant];
-"924 Constant_986" [id=924, type=Constant];
-"925 Constant_980" [id=925, type=Constant];
-"926 /layers/layers.2/blocks.0/attn/Constant" [id=926, type=Constant];
-"927 Transpose_6428" [id=927, type=Constant];
-"928 Constant_26007" [id=928, type=Constant];
-"929 /layers/layers.2/blocks.0/Constant_3" [id=929, type=Constant];
-"930 /layers/layers.2/blocks.0/Constant_2" [id=930, type=Constant];
-"931 Constant_964" [id=931, type=Constant];
-"932 /layers/layers.2/blocks.0/Constant_1" [id=932, type=Constant];
-"933 Constant_7326" [id=933, type=Constant];
-"934 Constant_7325" [id=934, type=Constant];
-"935 Constant_943" [id=935, type=Constant];
-"936 Transpose_6424" [id=936, type=Constant];
-"937 Constant_25995" [id=937, type=Constant];
-"938 Constant_7324" [id=938, type=Constant];
-"939 Constant_7323" [id=939, type=Constant];
-"940 Constant_929" [id=940, type=Constant];
-"941 /layers/layers.1/downsample/Constant_25" [id=941, type=Constant];
-"942 Constant_5391" [id=942, type=Constant];
-"943 Constant_5388" [id=943, type=Constant];
-"944 Constant_5385" [id=944, type=Constant];
-"945 Constant_5355" [id=945, type=Constant];
-"946 Constant_5352" [id=946, type=Constant];
-"947 Constant_5349" [id=947, type=Constant];
-"948 /layers/layers.1/downsample/Constant" [id=948, type=Constant];
-"949 Transpose_6420" [id=949, type=Constant];
-"950 Constant_25991" [id=950, type=Constant];
-"951 Transpose_6416" [id=951, type=Constant];
-"952 Constant_25985" [id=952, type=Constant];
-"953 Constant_7320" [id=953, type=Constant];
-"954 Constant_7319" [id=954, type=Constant];
-"955 Constant_864" [id=955, type=Constant];
-"956 /layers/layers.1/blocks.1/Constant_31" [id=956, type=Constant];
-"957 Constant_5319" [id=957, type=Constant];
-"958 Constant_5316" [id=958, type=Constant];
-"959 Constant_5313" [id=959, type=Constant];
-"960 Constant_5295" [id=960, type=Constant];
-"961 Constant_5292" [id=961, type=Constant];
-"962 Constant_5289" [id=962, type=Constant];
-"963 /layers/layers.1/blocks.1/Constant_18" [id=963, type=Constant];
-"964 Constant_811" [id=964, type=Constant];
-"965 /layers/layers.1/blocks.1/Constant_17" [id=965, type=Constant];
-"966 /layers/layers.1/blocks.1/Constant_16" [id=966, type=Constant];
-"967 Transpose_6412" [id=967, type=Constant];
-"968 Constant_26013" [id=968, type=Constant];
-"969 /layers/layers.1/blocks.1/attn/Constant_4" [id=969, type=Constant];
-"970 Constant_795" [id=970, type=Constant];
-"971 Constant_776" [id=971, type=Constant];
-"972 Constant_770" [id=972, type=Constant];
-"973 /layers/layers.1/blocks.1/attn/Constant" [id=973, type=Constant];
-"974 Transpose_6409" [id=974, type=Constant];
-"975 Constant_25997" [id=975, type=Constant];
-"976 /layers/layers.1/blocks.1/Constant_15" [id=976, type=Constant];
-"977 /layers/layers.1/blocks.1/Constant_14" [id=977, type=Constant];
-"978 Constant_754" [id=978, type=Constant];
-"979 /layers/layers.1/blocks.1/Constant_13" [id=979, type=Constant];
-"980 Constant_5271" [id=980, type=Constant];
-"981 Constant_5268" [id=981, type=Constant];
-"982 Constant_5265" [id=982, type=Constant];
-"983 Constant_5247" [id=983, type=Constant];
-"984 Constant_5244" [id=984, type=Constant];
-"985 Constant_5241" [id=985, type=Constant];
-"986 /layers/layers.1/blocks.1/Constant" [id=986, type=Constant];
-"987 Constant_7315" [id=987, type=Constant];
-"988 Constant_7314" [id=988, type=Constant];
-"989 Constant_691" [id=989, type=Constant];
-"990 Transpose_6405" [id=990, type=Constant];
-"991 Constant_25987" [id=991, type=Constant];
-"992 Transpose_6401" [id=992, type=Constant];
-"993 Constant_25983" [id=993, type=Constant];
-"994 Constant_7311" [id=994, type=Constant];
-"995 Constant_7310" [id=995, type=Constant];
-"996 Constant_665" [id=996, type=Constant];
-"997 /layers/layers.1/blocks.0/Constant_7" [id=997, type=Constant];
-"998 /layers/layers.1/blocks.0/Constant_6" [id=998, type=Constant];
-"999 Constant_654" [id=999, type=Constant];
-"1000 /layers/layers.1/blocks.0/Constant_5" [id=1000, type=Constant];
-"1001 /layers/layers.1/blocks.0/Constant_4" [id=1001, type=Constant];
-"1002 Transpose_6397" [id=1002, type=Constant];
-"1003 Constant_25999" [id=1003, type=Constant];
-"1004 /layers/layers.1/blocks.0/attn/Constant_2" [id=1004, type=Constant];
-"1005 Constant_638" [id=1005, type=Constant];
-"1006 Constant_628" [id=1006, type=Constant];
-"1007 Constant_622" [id=1007, type=Constant];
-"1008 /layers/layers.1/blocks.0/attn/Constant" [id=1008, type=Constant];
-"1009 Transpose_6394" [id=1009, type=Constant];
-"1010 Constant_25989" [id=1010, type=Constant];
-"1011 /layers/layers.1/blocks.0/Constant_3" [id=1011, type=Constant];
-"1012 /layers/layers.1/blocks.0/Constant_2" [id=1012, type=Constant];
-"1013 Constant_606" [id=1013, type=Constant];
-"1014 /layers/layers.1/blocks.0/Constant_1" [id=1014, type=Constant];
-"1015 Constant_7306" [id=1015, type=Constant];
-"1016 Constant_7305" [id=1016, type=Constant];
-"1017 Constant_585" [id=1017, type=Constant];
-"1018 Transpose_6390" [id=1018, type=Constant];
-"1019 Constant_25977" [id=1019, type=Constant];
-"1020 Constant_7304" [id=1020, type=Constant];
-"1021 Constant_7303" [id=1021, type=Constant];
-"1022 Constant_571" [id=1022, type=Constant];
-"1023 /layers/layers.0/downsample/Constant_25" [id=1023, type=Constant];
-"1024 Constant_5223" [id=1024, type=Constant];
-"1025 Constant_5220" [id=1025, type=Constant];
-"1026 Constant_5217" [id=1026, type=Constant];
-"1027 Constant_5187" [id=1027, type=Constant];
-"1028 Constant_5184" [id=1028, type=Constant];
-"1029 Constant_5181" [id=1029, type=Constant];
-"1030 /layers/layers.0/downsample/Constant" [id=1030, type=Constant];
-"1031 Transpose_6386" [id=1031, type=Constant];
-"1032 Constant_25975" [id=1032, type=Constant];
-"1033 Transpose_6382" [id=1033, type=Constant];
-"1034 Constant_25969" [id=1034, type=Constant];
-"1035 Constant_7300" [id=1035, type=Constant];
-"1036 Constant_7299" [id=1036, type=Constant];
-"1037 Constant_506" [id=1037, type=Constant];
-"1038 /layers/layers.0/blocks.1/Constant_31" [id=1038, type=Constant];
-"1039 Constant_5151" [id=1039, type=Constant];
-"1040 Constant_5148" [id=1040, type=Constant];
-"1041 Constant_5145" [id=1041, type=Constant];
-"1042 Constant_5127" [id=1042, type=Constant];
-"1043 Constant_5124" [id=1043, type=Constant];
-"1044 Constant_5121" [id=1044, type=Constant];
-"1045 /layers/layers.0/blocks.1/Constant_18" [id=1045, type=Constant];
-"1046 Constant_453" [id=1046, type=Constant];
-"1047 /layers/layers.0/blocks.1/Constant_17" [id=1047, type=Constant];
-"1048 /layers/layers.0/blocks.1/Constant_16" [id=1048, type=Constant];
-"1049 Transpose_6378" [id=1049, type=Constant];
-"1050 Constant_25993" [id=1050, type=Constant];
-"1051 /layers/layers.0/blocks.1/attn/Constant_4" [id=1051, type=Constant];
-"1052 Constant_437" [id=1052, type=Constant];
-"1053 Constant_418" [id=1053, type=Constant];
-"1054 Constant_412" [id=1054, type=Constant];
-"1055 /layers/layers.0/blocks.1/attn/Constant" [id=1055, type=Constant];
-"1056 Transpose_6375" [id=1056, type=Constant];
-"1057 Constant_25979" [id=1057, type=Constant];
-"1058 /layers/layers.0/blocks.1/Constant_15" [id=1058, type=Constant];
-"1059 /layers/layers.0/blocks.1/Constant_14" [id=1059, type=Constant];
-"1060 Constant_396" [id=1060, type=Constant];
-"1061 /layers/layers.0/blocks.1/Constant_13" [id=1061, type=Constant];
-"1062 Constant_5103" [id=1062, type=Constant];
-"1063 Constant_5100" [id=1063, type=Constant];
-"1064 Constant_5097" [id=1064, type=Constant];
-"1065 Constant_5079" [id=1065, type=Constant];
-"1066 Constant_5076" [id=1066, type=Constant];
-"1067 Constant_5073" [id=1067, type=Constant];
-"1068 /layers/layers.0/blocks.1/Constant" [id=1068, type=Constant];
-"1069 Constant_7295" [id=1069, type=Constant];
-"1070 Constant_7294" [id=1070, type=Constant];
-"1071 Constant_333" [id=1071, type=Constant];
-"1072 Transpose_6371" [id=1072, type=Constant];
-"1073 Constant_25971" [id=1073, type=Constant];
-"1074 Transpose_6367" [id=1074, type=Constant];
-"1075 Constant_25967" [id=1075, type=Constant];
-"1076 Constant_7291" [id=1076, type=Constant];
-"1077 Constant_7290" [id=1077, type=Constant];
-"1078 Constant_307" [id=1078, type=Constant];
-"1079 /layers/layers.0/blocks.0/Constant_8" [id=1079, type=Constant];
-"1080 /layers/layers.0/blocks.0/Constant_7" [id=1080, type=Constant];
-"1081 Constant_296" [id=1081, type=Constant];
-"1082 /layers/layers.0/blocks.0/Constant_6" [id=1082, type=Constant];
-"1083 /layers/layers.0/blocks.0/Constant_5" [id=1083, type=Constant];
-"1084 Transpose_6363" [id=1084, type=Constant];
-"1085 Constant_25981" [id=1085, type=Constant];
-"1086 /layers/layers.0/blocks.0/attn/Constant_2" [id=1086, type=Constant];
-"1087 Constant_280" [id=1087, type=Constant];
-"1088 Constant_270" [id=1088, type=Constant];
-"1089 Constant_264" [id=1089, type=Constant];
-"1090 /layers/layers.0/blocks.0/attn/Constant" [id=1090, type=Constant];
-"1091 Transpose_6360" [id=1091, type=Constant];
-"1092 Constant_25973" [id=1092, type=Constant];
-"1093 /layers/layers.0/blocks.0/Constant_4" [id=1093, type=Constant];
-"1094 /layers/layers.0/blocks.0/Constant_3" [id=1094, type=Constant];
-"1095 Constant_248" [id=1095, type=Constant];
-"1096 /layers/layers.0/blocks.0/Constant_2" [id=1096, type=Constant];
-"1097 Constant_7286" [id=1097, type=Constant];
-"1098 Constant_7285" [id=1098, type=Constant];
-"1099 Constant_227" [id=1099, type=Constant];
-"1100 Constant_7284" [id=1100, type=Constant];
-"1101 Constant_7283" [id=1101, type=Constant];
-"1102 Constant_213" [id=1102, type=Constant];
-"1103 Constant_211" [id=1103, type=Constant];
-"1104 /patch_embed/Constant_4" [id=1104, type=Constant];
-"1105 Broadcast_201" [id=1105, type=Constant];
-"1106 /patch_embed/Constant_3" [id=1106, type=Constant];
-"1107 /patch_embed/Constant_2" [id=1107, type=Constant];
-"1108 Reshape_190" [id=1108, type=Constant];
-"1109 Gather_7282" [id=1109, type=Constant];
-"1110 Constant_25965" [id=1110, type=Constant];
-"1111 Gather_7279" [id=1111, type=Constant];
-"1112 Gather_7276" [id=1112, type=Constant];
-"1113 Constant_7287" [id=1113, type=Constant];
-"1114 onnx^^Add_2244" [id=1114, label="1114 onnx::Add_2244", type=Constant];
-"1115 Constant_268" [id=1115, type=Constant];
-"1116 /patch_embed/proj/Constant" [id=1116, type=Constant];
-"1117 Constant_7288" [id=1117, type=Constant];
-"1118 Constant_266" [id=1118, type=Constant];
-"1119 /layers/layers.0/blocks.0/Constant" [id=1119, type=Constant];
-"1120 Constant_7289" [id=1120, type=Constant];
-"1121 Constant_7292" [id=1121, type=Constant];
-"1122 Constant_7293" [id=1122, type=Constant];
-"1123 Constant_5067" [id=1123, type=Constant];
-"1124 Constant_5064" [id=1124, type=Constant];
-"1125 Constant_5061" [id=1125, type=Constant];
-"1126 Constant_5091" [id=1126, type=Constant];
-"1127 Constant_5088" [id=1127, type=Constant];
-"1128 Constant_5085" [id=1128, type=Constant];
-"1129 Constant_7296" [id=1129, type=Constant];
-"1130 /layers/layers.0/blocks.1/attn/Constant_3" [id=1130, type=Constant];
-"1131 onnx^^Add_2301" [id=1131, label="1131 onnx::Add_2301", type=Constant];
-"1132 /layers/layers.0/blocks.1/attn/Constant_2" [id=1132, type=Constant];
-"1133 onnx^^Add_2293" [id=1133, label="1133 onnx::Add_2293", type=Constant];
-"1134 Constant_416" [id=1134, type=Constant];
-"1135 Constant_7297" [id=1135, type=Constant];
-"1136 Constant_414" [id=1136, type=Constant];
-"1137 Constant_7298" [id=1137, type=Constant];
-"1138 Constant_5115" [id=1138, type=Constant];
-"1139 Constant_5112" [id=1139, type=Constant];
-"1140 Constant_5109" [id=1140, type=Constant];
-"1141 Constant_5139" [id=1141, type=Constant];
-"1142 Constant_5136" [id=1142, type=Constant];
-"1143 Constant_5133" [id=1143, type=Constant];
-"1144 Constant_7301" [id=1144, type=Constant];
-"1145 Constant_7302" [id=1145, type=Constant];
-"1146 Constant_5211" [id=1146, type=Constant];
-"1147 Constant_5208" [id=1147, type=Constant];
-"1148 Constant_5205" [id=1148, type=Constant];
-"1149 Constant_5163" [id=1149, type=Constant];
-"1150 Constant_5160" [id=1150, type=Constant];
-"1151 Constant_5157" [id=1151, type=Constant];
-"1152 Constant_5199" [id=1152, type=Constant];
-"1153 Constant_5196" [id=1153, type=Constant];
-"1154 Constant_5193" [id=1154, type=Constant];
-"1155 Constant_5175" [id=1155, type=Constant];
-"1156 Constant_5172" [id=1156, type=Constant];
-"1157 Constant_5169" [id=1157, type=Constant];
-"1158 Constant_7307" [id=1158, type=Constant];
-"1159 onnx^^Add_2389" [id=1159, label="1159 onnx::Add_2389", type=Constant];
-"1160 Constant_626" [id=1160, type=Constant];
-"1161 Constant_7308" [id=1161, type=Constant];
-"1162 Constant_624" [id=1162, type=Constant];
-"1163 Constant_7309" [id=1163, type=Constant];
-"1164 Constant_7312" [id=1164, type=Constant];
-"1165 Constant_7313" [id=1165, type=Constant];
-"1166 Constant_5235" [id=1166, type=Constant];
-"1167 Constant_5232" [id=1167, type=Constant];
-"1168 Constant_5229" [id=1168, type=Constant];
-"1169 Constant_5259" [id=1169, type=Constant];
-"1170 Constant_5256" [id=1170, type=Constant];
-"1171 Constant_5253" [id=1171, type=Constant];
-"1172 Constant_7316" [id=1172, type=Constant];
-"1173 /layers/layers.1/blocks.1/attn/Constant_3" [id=1173, type=Constant];
-"1174 onnx^^Add_2446" [id=1174, label="1174 onnx::Add_2446", type=Constant];
-"1175 /layers/layers.1/blocks.1/attn/Constant_2" [id=1175, type=Constant];
-"1176 onnx^^Add_2438" [id=1176, label="1176 onnx::Add_2438", type=Constant];
-"1177 Constant_774" [id=1177, type=Constant];
-"1178 Constant_7317" [id=1178, type=Constant];
-"1179 Constant_772" [id=1179, type=Constant];
-"1180 Constant_7318" [id=1180, type=Constant];
-"1181 Constant_5283" [id=1181, type=Constant];
-"1182 Constant_5280" [id=1182, type=Constant];
-"1183 Constant_5277" [id=1183, type=Constant];
-"1184 Constant_5307" [id=1184, type=Constant];
-"1185 Constant_5304" [id=1185, type=Constant];
-"1186 Constant_5301" [id=1186, type=Constant];
-"1187 Constant_7321" [id=1187, type=Constant];
-"1188 Constant_7322" [id=1188, type=Constant];
-"1189 Constant_5379" [id=1189, type=Constant];
-"1190 Constant_5376" [id=1190, type=Constant];
-"1191 Constant_5373" [id=1191, type=Constant];
-"1192 Constant_5331" [id=1192, type=Constant];
-"1193 Constant_5328" [id=1193, type=Constant];
-"1194 Constant_5325" [id=1194, type=Constant];
-"1195 Constant_5367" [id=1195, type=Constant];
-"1196 Constant_5364" [id=1196, type=Constant];
-"1197 Constant_5361" [id=1197, type=Constant];
-"1198 Constant_5343" [id=1198, type=Constant];
-"1199 Constant_5340" [id=1199, type=Constant];
-"1200 Constant_5337" [id=1200, type=Constant];
-"1201 Constant_7327" [id=1201, type=Constant];
-"1202 onnx^^Add_2534" [id=1202, label="1202 onnx::Add_2534", type=Constant];
-"1203 Constant_984" [id=1203, type=Constant];
-"1204 Constant_7328" [id=1204, type=Constant];
-"1205 Constant_982" [id=1205, type=Constant];
-"1206 Constant_7329" [id=1206, type=Constant];
-"1207 Constant_7332" [id=1207, type=Constant];
-"1208 Constant_7333" [id=1208, type=Constant];
-"1209 Constant_5403" [id=1209, type=Constant];
-"1210 Constant_5400" [id=1210, type=Constant];
-"1211 Constant_5397" [id=1211, type=Constant];
-"1212 Constant_5427" [id=1212, type=Constant];
-"1213 Constant_5424" [id=1213, type=Constant];
-"1214 Constant_5421" [id=1214, type=Constant];
-"1215 Constant_7336" [id=1215, type=Constant];
-"1216 /layers/layers.2/blocks.1/attn/Constant_3" [id=1216, type=Constant];
-"1217 onnx^^Add_2702" [id=1217, label="1217 onnx::Add_2702", type=Constant];
-"1218 /layers/layers.2/blocks.1/attn/Constant_2" [id=1218, type=Constant];
-"1219 onnx^^Add_2583" [id=1219, label="1219 onnx::Add_2583", type=Constant];
-"1220 Constant_1132" [id=1220, type=Constant];
-"1221 Constant_7337" [id=1221, type=Constant];
-"1222 Constant_1130" [id=1222, type=Constant];
-"1223 Constant_7338" [id=1223, type=Constant];
-"1224 Constant_5451" [id=1224, type=Constant];
-"1225 Constant_5448" [id=1225, type=Constant];
-"1226 Constant_5445" [id=1226, type=Constant];
-"1227 Constant_5475" [id=1227, type=Constant];
-"1228 Constant_5472" [id=1228, type=Constant];
-"1229 Constant_5469" [id=1229, type=Constant];
-"1230 Constant_7341" [id=1230, type=Constant];
-"1231 Constant_7342" [id=1231, type=Constant];
-"1232 Constant_7345" [id=1232, type=Constant];
-"1233 onnx^^Add_2645" [id=1233, label="1233 onnx::Add_2645", type=Constant];
-"1234 Constant_1289" [id=1234, type=Constant];
-"1235 Constant_7346" [id=1235, type=Constant];
-"1236 Constant_1287" [id=1236, type=Constant];
-"1237 Constant_7347" [id=1237, type=Constant];
-"1238 Constant_7350" [id=1238, type=Constant];
-"1239 Constant_7351" [id=1239, type=Constant];
-"1240 Constant_5499" [id=1240, type=Constant];
-"1241 Constant_5496" [id=1241, type=Constant];
-"1242 Constant_5493" [id=1242, type=Constant];
-"1243 Constant_5523" [id=1243, type=Constant];
-"1244 Constant_5520" [id=1244, type=Constant];
-"1245 Constant_5517" [id=1245, type=Constant];
-"1246 Constant_7354" [id=1246, type=Constant];
-"1247 /layers/layers.2/blocks.3/attn/Constant_3" [id=1247, type=Constant];
-"1248 /layers/layers.2/blocks.3/attn/Constant_2" [id=1248, type=Constant];
-"1249 onnx^^Add_2694" [id=1249, label="1249 onnx::Add_2694", type=Constant];
-"1250 Constant_1437" [id=1250, type=Constant];
-"1251 Constant_7355" [id=1251, type=Constant];
-"1252 Constant_1435" [id=1252, type=Constant];
-"1253 Constant_7356" [id=1253, type=Constant];
-"1254 Constant_5547" [id=1254, type=Constant];
-"1255 Constant_5544" [id=1255, type=Constant];
-"1256 Constant_5541" [id=1256, type=Constant];
-"1257 Constant_5571" [id=1257, type=Constant];
-"1258 Constant_5568" [id=1258, type=Constant];
-"1259 Constant_5565" [id=1259, type=Constant];
-"1260 Constant_7359" [id=1260, type=Constant];
-"1261 Constant_7360" [id=1261, type=Constant];
-"1262 Constant_7363" [id=1262, type=Constant];
-"1263 onnx^^Add_2756" [id=1263, label="1263 onnx::Add_2756", type=Constant];
-"1264 Constant_1594" [id=1264, type=Constant];
-"1265 Constant_7364" [id=1265, type=Constant];
-"1266 Constant_1592" [id=1266, type=Constant];
-"1267 Constant_7365" [id=1267, type=Constant];
-"1268 Constant_7368" [id=1268, type=Constant];
-"1269 Constant_7369" [id=1269, type=Constant];
-"1270 Constant_5595" [id=1270, type=Constant];
-"1271 Constant_5592" [id=1271, type=Constant];
-"1272 Constant_5589" [id=1272, type=Constant];
-"1273 Constant_5619" [id=1273, type=Constant];
-"1274 Constant_5616" [id=1274, type=Constant];
-"1275 Constant_5613" [id=1275, type=Constant];
-"1276 Constant_7372" [id=1276, type=Constant];
-"1277 /layers/layers.2/blocks.5/attn/Constant_3" [id=1277, type=Constant];
-"1278 /layers/layers.2/blocks.5/attn/Constant_2" [id=1278, type=Constant];
-"1279 onnx^^Add_2805" [id=1279, label="1279 onnx::Add_2805", type=Constant];
-"1280 Constant_1742" [id=1280, type=Constant];
-"1281 Constant_7373" [id=1281, type=Constant];
-"1282 Constant_1740" [id=1282, type=Constant];
-"1283 Constant_7374" [id=1283, type=Constant];
-"1284 Constant_5643" [id=1284, type=Constant];
-"1285 Constant_5640" [id=1285, type=Constant];
-"1286 Constant_5637" [id=1286, type=Constant];
-"1287 Constant_5667" [id=1287, type=Constant];
-"1288 Constant_5664" [id=1288, type=Constant];
-"1289 Constant_5661" [id=1289, type=Constant];
-"1290 Constant_7377" [id=1290, type=Constant];
-"1291 Constant_7378" [id=1291, type=Constant];
-"1292 Constant_5739" [id=1292, type=Constant];
-"1293 Constant_5736" [id=1293, type=Constant];
-"1294 Constant_5733" [id=1294, type=Constant];
-"1295 Constant_5691" [id=1295, type=Constant];
-"1296 Constant_5688" [id=1296, type=Constant];
-"1297 Constant_5685" [id=1297, type=Constant];
-"1298 Constant_5727" [id=1298, type=Constant];
-"1299 Constant_5724" [id=1299, type=Constant];
-"1300 Constant_5721" [id=1300, type=Constant];
-"1301 Constant_5703" [id=1301, type=Constant];
-"1302 Constant_5700" [id=1302, type=Constant];
-"1303 Constant_5697" [id=1303, type=Constant];
-"1304 Constant_7383" [id=1304, type=Constant];
-"1305 onnx^^Add_2901" [id=1305, label="1305 onnx::Add_2901", type=Constant];
-"1306 Constant_1952" [id=1306, type=Constant];
-"1307 Constant_7384" [id=1307, type=Constant];
-"1308 Constant_1950" [id=1308, type=Constant];
-"1309 Constant_7385" [id=1309, type=Constant];
-"1310 Constant_7388" [id=1310, type=Constant];
-"1311 Constant_7389" [id=1311, type=Constant];
-"1312 Constant_7392" [id=1312, type=Constant];
-"1313 onnx^^Add_2950" [id=1313, label="1313 onnx::Add_2950", type=Constant];
-"1314 Constant_2058" [id=1314, type=Constant];
-"1315 Constant_7393" [id=1315, type=Constant];
-"1316 Constant_2056" [id=1316, type=Constant];
-"1317 Constant_7394" [id=1317, type=Constant];
-"1318 Constant_7397" [id=1318, type=Constant];
-"1319 Constant_7398" [id=1319, type=Constant];
-"0 input" -> "1 Multiply_6579" [label="[1, 3, 224, 224]", style=solid];
-"1 Multiply_6579" -> "2 Divide_2169" [label="[1, 3, 224, 224]", style=solid];
-"2 Divide_2169" -> "3 Divide_2169_0_0/nncf_smooth_quant" [label="[1, 3, 224, 224]", style=solid];
-"3 Divide_2169_0_0/nncf_smooth_quant" -> "4 /patch_embed/proj/Conv/WithoutBiases" [label="[1, 3, 224, 224]", style=solid];
-"4 /patch_embed/proj/Conv/WithoutBiases" -> "5 /patch_embed/proj/Conv" [label="[1, 96, 56, 56]", style=solid];
-"5 /patch_embed/proj/Conv" -> "6 /patch_embed/Reshape" [label="[1, 96, 56, 56]", style=solid];
-"5 /patch_embed/proj/Conv" -> "7 /patch_embed/Shape" [label="[1, 96, 56, 56]", style=solid];
-"6 /patch_embed/Reshape" -> "8 /patch_embed/Transpose" [label="[1, 96, 3136]", style=solid];
-"7 /patch_embed/Shape" -> "9 /patch_embed/Slice" [label="[4]", style=dashed];
-"8 /patch_embed/Transpose" -> "10 /patch_embed/norm/Div" [label="[1, 3136, 96]", style=solid];
-"9 /patch_embed/Slice" -> "11 /patch_embed/Concat" [label="[2]", style=dashed];
-"10 /patch_embed/norm/Div" -> "12 /patch_embed/norm/Mul" [label="[1, 3136, 96]", style=solid];
-"11 /patch_embed/Concat" -> "6 /patch_embed/Reshape" [label="[3]", style=dashed];
-"12 /patch_embed/norm/Mul" -> "13 /patch_embed/norm/Add_1" [label="[1, 3136, 96]", style=solid];
-"13 /patch_embed/norm/Add_1" -> "14 /layers/layers.0/blocks.0/Add" [label="[1, 3136, 96]", style=solid];
-"13 /patch_embed/norm/Add_1" -> "15 /layers/layers.0/blocks.0/norm1/Div" [label="[1, 3136, 96]", style=solid];
-"14 /layers/layers.0/blocks.0/Add" -> "16 /layers/layers.0/blocks.0/Add_1" [label="[1, 3136, 96]", style=solid];
-"14 /layers/layers.0/blocks.0/Add" -> "17 /layers/layers.0/blocks.0/norm2/Div" [label="[1, 3136, 96]", style=solid];
-"15 /layers/layers.0/blocks.0/norm1/Div" -> "18 /layers/layers.0/blocks.0/norm1/Mul" [label="[1, 3136, 96]", style=solid];
-"16 /layers/layers.0/blocks.0/Add_1" -> "19 /layers/layers.0/blocks.1/Add" [label="[1, 3136, 96]", style=solid];
-"16 /layers/layers.0/blocks.0/Add_1" -> "20 /layers/layers.0/blocks.1/norm1/Div" [label="[1, 3136, 96]", style=solid];
-"17 /layers/layers.0/blocks.0/norm2/Div" -> "21 /layers/layers.0/blocks.0/norm2/Mul" [label="[1, 3136, 96]", style=solid];
-"18 /layers/layers.0/blocks.0/norm1/Mul" -> "22 /layers/layers.0/blocks.0/norm1/Add_1" [label="[1, 3136, 96]", style=solid];
-"19 /layers/layers.0/blocks.1/Add" -> "23 /layers/layers.0/blocks.1/Add_1" [label="[1, 3136, 96]", style=solid];
-"19 /layers/layers.0/blocks.1/Add" -> "24 /layers/layers.0/blocks.1/norm2/Div" [label="[1, 3136, 96]", style=solid];
-"20 /layers/layers.0/blocks.1/norm1/Div" -> "25 /layers/layers.0/blocks.1/norm1/Mul" [label="[1, 3136, 96]", style=solid];
-"21 /layers/layers.0/blocks.0/norm2/Mul" -> "26 /layers/layers.0/blocks.0/norm2/Add_1" [label="[1, 3136, 96]", style=solid];
-"22 /layers/layers.0/blocks.0/norm1/Add_1" -> "27 /layers/layers.0/blocks.0/Reshape_1" [label="[1, 3136, 96]", style=solid];
-"23 /layers/layers.0/blocks.1/Add_1" -> "28 /layers/layers.0/downsample/Reshape" [label="[1, 3136, 96]", style=solid];
-"24 /layers/layers.0/blocks.1/norm2/Div" -> "29 /layers/layers.0/blocks.1/norm2/Mul" [label="[1, 3136, 96]", style=solid];
-"25 /layers/layers.0/blocks.1/norm1/Mul" -> "30 /layers/layers.0/blocks.1/norm1/Add_1" [label="[1, 3136, 96]", style=solid];
-"26 /layers/layers.0/blocks.0/norm2/Add_1" -> "31 /layers/layers.0/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 3136, 96]", style=solid];
-"27 /layers/layers.0/blocks.0/Reshape_1" -> "32 /layers/layers.0/blocks.0/Transpose" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"28 /layers/layers.0/downsample/Reshape" -> "33 /layers/layers.0/downsample/Slice" [label="[1, 56, 56, 96]", style=solid];
-"28 /layers/layers.0/downsample/Reshape" -> "34 /layers/layers.0/downsample/Slice_2" [label="[1, 56, 56, 96]", style=solid];
-"29 /layers/layers.0/blocks.1/norm2/Mul" -> "35 /layers/layers.0/blocks.1/norm2/Add_1" [label="[1, 3136, 96]", style=solid];
-"30 /layers/layers.0/blocks.1/norm1/Add_1" -> "36 /layers/layers.0/blocks.1/Reshape" [label="[1, 3136, 96]", style=solid];
-"31 /layers/layers.0/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" -> "37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [label="[1, 3136, 96]", style=solid];
-"32 /layers/layers.0/blocks.0/Transpose" -> "38 /layers/layers.0/blocks.0/Reshape_2" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"33 /layers/layers.0/downsample/Slice" -> "39 /layers/layers.0/downsample/Slice_1" [label="[1, 28, 56, 96]", style=solid];
-"33 /layers/layers.0/downsample/Slice" -> "40 /layers/layers.0/downsample/Slice_4" [label="[1, 28, 56, 96]", style=solid];
-"34 /layers/layers.0/downsample/Slice_2" -> "41 /layers/layers.0/downsample/Slice_3" [label="[1, 28, 56, 96]", style=solid];
-"34 /layers/layers.0/downsample/Slice_2" -> "42 /layers/layers.0/downsample/Slice_5" [label="[1, 28, 56, 96]", style=solid];
-"35 /layers/layers.0/blocks.1/norm2/Add_1" -> "43 /layers/layers.0/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 3136, 96]", style=solid];
-"36 /layers/layers.0/blocks.1/Reshape" -> "44 /layers/layers.0/blocks.1/Slice" [label="[1, 56, 56, 96]", style=solid];
-"36 /layers/layers.0/blocks.1/Reshape" -> "45 /layers/layers.0/blocks.1/Slice_1" [label="[1, 56, 56, 96]", style=solid];
-"37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" -> "46 /layers/layers.0/blocks.0/mlp/fc1/Add" [label="[1, 3136, 384]", style=solid];
-"38 /layers/layers.0/blocks.0/Reshape_2" -> "47 /layers/layers.0/blocks.0/Reshape_3" [label="[64, 7, 7, 96]", style=solid];
-"39 /layers/layers.0/downsample/Slice_1" -> "48 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"40 /layers/layers.0/downsample/Slice_4" -> "48 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"41 /layers/layers.0/downsample/Slice_3" -> "48 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"42 /layers/layers.0/downsample/Slice_5" -> "48 /layers/layers.0/downsample/Concat" [label="[1, 28, 28, 96]", style=solid];
-"43 /layers/layers.0/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" -> "49 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [label="[1, 3136, 96]", style=solid];
-"44 /layers/layers.0/blocks.1/Slice" -> "50 /layers/layers.0/blocks.1/Concat" [label="[1, 53, 56, 96]", style=solid];
-"45 /layers/layers.0/blocks.1/Slice_1" -> "50 /layers/layers.0/blocks.1/Concat" [label="[1, 3, 56, 96]", style=solid];
-"46 /layers/layers.0/blocks.0/mlp/fc1/Add" -> "51 /layers/layers.0/blocks.0/mlp/act/Mul_1" [label="[1, 3136, 384]", style=solid];
-"47 /layers/layers.0/blocks.0/Reshape_3" -> "52 /layers/layers.0/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[64, 49, 96]", style=solid];
-"48 /layers/layers.0/downsample/Concat" -> "53 /layers/layers.0/downsample/Reshape_1" [label="[1, 28, 28, 384]", style=solid];
-"49 /layers/layers.0/blocks.1/mlp/fc1/MatMul" -> "54 /layers/layers.0/blocks.1/mlp/fc1/Add" [label="[1, 3136, 384]", style=solid];
-"50 /layers/layers.0/blocks.1/Concat" -> "55 /layers/layers.0/blocks.1/Slice_2" [label="[1, 56, 56, 96]", style=solid];
-"50 /layers/layers.0/blocks.1/Concat" -> "56 /layers/layers.0/blocks.1/Slice_3" [label="[1, 56, 56, 96]", style=solid];
-"51 /layers/layers.0/blocks.0/mlp/act/Mul_1" -> "57 /layers/layers.0/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 3136, 384]", style=solid];
-"52 /layers/layers.0/blocks.0/Reshape_3_0_0/nncf_smooth_quant" -> "58 /layers/layers.0/blocks.0/attn/qkv/MatMul" [label="[64, 49, 96]", style=solid];
-"53 /layers/layers.0/downsample/Reshape_1" -> "59 /layers/layers.0/downsample/norm/Div" [label="[1, 784, 384]", style=solid];
-"54 /layers/layers.0/blocks.1/mlp/fc1/Add" -> "60 /layers/layers.0/blocks.1/mlp/act/Mul_1" [label="[1, 3136, 384]", style=solid];
-"55 /layers/layers.0/blocks.1/Slice_2" -> "61 /layers/layers.0/blocks.1/Concat_1" [label="[1, 56, 53, 96]", style=solid];
-"56 /layers/layers.0/blocks.1/Slice_3" -> "61 /layers/layers.0/blocks.1/Concat_1" [label="[1, 56, 3, 96]", style=solid];
-"57 /layers/layers.0/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [label="[1, 3136, 384]", style=solid];
-"58 /layers/layers.0/blocks.0/attn/qkv/MatMul" -> "63 /layers/layers.0/blocks.0/attn/qkv/Add" [label="[64, 49, 288]", style=solid];
-"59 /layers/layers.0/downsample/norm/Div" -> "64 /layers/layers.0/downsample/norm/Mul" [label="[1, 784, 384]", style=solid];
-"60 /layers/layers.0/blocks.1/mlp/act/Mul_1" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 3136, 384]", style=solid];
-"61 /layers/layers.0/blocks.1/Concat_1" -> "66 /layers/layers.0/blocks.1/Reshape_1" [label="[1, 56, 56, 96]", style=solid];
-"62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" -> "67 /layers/layers.0/blocks.0/mlp/fc2/Add" [label="[1, 3136, 96]", style=solid];
-"63 /layers/layers.0/blocks.0/attn/qkv/Add" -> "68 /layers/layers.0/blocks.0/attn/Reshape" [label="[64, 49, 288]", style=solid];
-"64 /layers/layers.0/downsample/norm/Mul" -> "69 /layers/layers.0/downsample/norm/Add_1" [label="[1, 784, 384]", style=solid];
-"65 /layers/layers.0/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [label="[1, 3136, 384]", style=solid];
-"66 /layers/layers.0/blocks.1/Reshape_1" -> "71 /layers/layers.0/blocks.1/Transpose" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"67 /layers/layers.0/blocks.0/mlp/fc2/Add" -> "16 /layers/layers.0/blocks.0/Add_1" [label="[1, 3136, 96]", style=solid];
-"68 /layers/layers.0/blocks.0/attn/Reshape" -> "72 /layers/layers.0/blocks.0/attn/Transpose" [label="[64, 49, 3, 3, 32]", style=solid];
-"69 /layers/layers.0/downsample/norm/Add_1" -> "73 /layers/layers.0/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 784, 384]", style=solid];
-"70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" -> "74 /layers/layers.0/blocks.1/mlp/fc2/Add" [label="[1, 3136, 96]", style=solid];
-"71 /layers/layers.0/blocks.1/Transpose" -> "75 /layers/layers.0/blocks.1/Reshape_2" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[3, 64, 3, 49, 32]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "77 /layers/layers.0/blocks.0/attn/Gather_1" [label="[3, 64, 3, 49, 32]", style=solid];
-"72 /layers/layers.0/blocks.0/attn/Transpose" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[3, 64, 3, 49, 32]", style=solid];
-"73 /layers/layers.0/downsample/norm/Add_1_0_0/nncf_smooth_quant" -> "79 /layers/layers.0/downsample/reduction/MatMul" [label="[1, 784, 384]", style=solid];
-"74 /layers/layers.0/blocks.1/mlp/fc2/Add" -> "23 /layers/layers.0/blocks.1/Add_1" [label="[1, 3136, 96]", style=solid];
-"75 /layers/layers.0/blocks.1/Reshape_2" -> "80 /layers/layers.0/blocks.1/Reshape_3" [label="[64, 7, 7, 96]", style=solid];
-"76 /layers/layers.0/blocks.0/attn/Gather" -> "81 /layers/layers.0/blocks.0/attn/Mul" [label="[64, 3, 49, 32]", style=solid];
-"77 /layers/layers.0/blocks.0/attn/Gather_1" -> "82 /layers/layers.0/blocks.0/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"78 /layers/layers.0/blocks.0/attn/Gather_2" -> "83 /layers/layers.0/blocks.0/attn/MatMul_1" [label="[64, 3, 49, 32]", style=solid];
-"79 /layers/layers.0/downsample/reduction/MatMul" -> "84 /layers/layers.1/blocks.0/Add" [label="[1, 784, 192]", style=solid];
-"79 /layers/layers.0/downsample/reduction/MatMul" -> "85 /layers/layers.1/blocks.0/norm1/Div" [label="[1, 784, 192]", style=solid];
-"80 /layers/layers.0/blocks.1/Reshape_3" -> "86 /layers/layers.0/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[64, 49, 96]", style=solid];
-"81 /layers/layers.0/blocks.0/attn/Mul" -> "82 /layers/layers.0/blocks.0/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"82 /layers/layers.0/blocks.0/attn/MatMul" -> "87 /layers/layers.0/blocks.0/attn/Add" [label="[64, 3, 49, 49]", style=solid];
-"83 /layers/layers.0/blocks.0/attn/MatMul_1" -> "88 /layers/layers.0/blocks.0/attn/Transpose_2" [label="[64, 3, 49, 32]", style=solid];
-"84 /layers/layers.1/blocks.0/Add" -> "89 /layers/layers.1/blocks.0/Add_1" [label="[1, 784, 192]", style=solid];
-"84 /layers/layers.1/blocks.0/Add" -> "90 /layers/layers.1/blocks.0/norm2/Div" [label="[1, 784, 192]", style=solid];
-"85 /layers/layers.1/blocks.0/norm1/Div" -> "91 /layers/layers.1/blocks.0/norm1/Mul" [label="[1, 784, 192]", style=solid];
-"86 /layers/layers.0/blocks.1/Reshape_3_0_0/nncf_smooth_quant" -> "92 /layers/layers.0/blocks.1/attn/qkv/MatMul" [label="[64, 49, 96]", style=solid];
-"87 /layers/layers.0/blocks.0/attn/Add" -> "93 /layers/layers.0/blocks.0/attn/softmax/Softmax" [label="[64, 3, 49, 49]", style=solid];
-"88 /layers/layers.0/blocks.0/attn/Transpose_2" -> "94 /layers/layers.0/blocks.0/attn/Reshape_1" [label="[64, 49, 3, 32]", style=solid];
-"89 /layers/layers.1/blocks.0/Add_1" -> "95 /layers/layers.1/blocks.1/Add" [label="[1, 784, 192]", style=solid];
-"89 /layers/layers.1/blocks.0/Add_1" -> "96 /layers/layers.1/blocks.1/norm1/Div" [label="[1, 784, 192]", style=solid];
-"90 /layers/layers.1/blocks.0/norm2/Div" -> "97 /layers/layers.1/blocks.0/norm2/Mul" [label="[1, 784, 192]", style=solid];
-"91 /layers/layers.1/blocks.0/norm1/Mul" -> "98 /layers/layers.1/blocks.0/norm1/Add_1" [label="[1, 784, 192]", style=solid];
-"92 /layers/layers.0/blocks.1/attn/qkv/MatMul" -> "99 /layers/layers.0/blocks.1/attn/qkv/Add" [label="[64, 49, 288]", style=solid];
-"93 /layers/layers.0/blocks.0/attn/softmax/Softmax" -> "83 /layers/layers.0/blocks.0/attn/MatMul_1" [label="[64, 3, 49, 49]", style=solid];
-"94 /layers/layers.0/blocks.0/attn/Reshape_1" -> "100 /layers/layers.0/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[64, 49, 96]", style=solid];
-"95 /layers/layers.1/blocks.1/Add" -> "101 /layers/layers.1/blocks.1/Add_1" [label="[1, 784, 192]", style=solid];
-"95 /layers/layers.1/blocks.1/Add" -> "102 /layers/layers.1/blocks.1/norm2/Div" [label="[1, 784, 192]", style=solid];
-"96 /layers/layers.1/blocks.1/norm1/Div" -> "103 /layers/layers.1/blocks.1/norm1/Mul" [label="[1, 784, 192]", style=solid];
-"97 /layers/layers.1/blocks.0/norm2/Mul" -> "104 /layers/layers.1/blocks.0/norm2/Add_1" [label="[1, 784, 192]", style=solid];
-"98 /layers/layers.1/blocks.0/norm1/Add_1" -> "105 /layers/layers.1/blocks.0/Reshape_1" [label="[1, 784, 192]", style=solid];
-"99 /layers/layers.0/blocks.1/attn/qkv/Add" -> "106 /layers/layers.0/blocks.1/attn/Reshape" [label="[64, 49, 288]", style=solid];
-"100 /layers/layers.0/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" -> "107 /layers/layers.0/blocks.0/attn/proj/MatMul" [label="[64, 49, 96]", style=solid];
-"101 /layers/layers.1/blocks.1/Add_1" -> "108 /layers/layers.1/downsample/Reshape" [label="[1, 784, 192]", style=solid];
-"102 /layers/layers.1/blocks.1/norm2/Div" -> "109 /layers/layers.1/blocks.1/norm2/Mul" [label="[1, 784, 192]", style=solid];
-"103 /layers/layers.1/blocks.1/norm1/Mul" -> "110 /layers/layers.1/blocks.1/norm1/Add_1" [label="[1, 784, 192]", style=solid];
-"104 /layers/layers.1/blocks.0/norm2/Add_1" -> "111 /layers/layers.1/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 784, 192]", style=solid];
-"105 /layers/layers.1/blocks.0/Reshape_1" -> "112 /layers/layers.1/blocks.0/Transpose" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"106 /layers/layers.0/blocks.1/attn/Reshape" -> "113 /layers/layers.0/blocks.1/attn/Transpose" [label="[64, 49, 3, 3, 32]", style=solid];
-"107 /layers/layers.0/blocks.0/attn/proj/MatMul" -> "114 /layers/layers.0/blocks.0/attn/proj/Add" [label="[64, 49, 96]", style=solid];
-"108 /layers/layers.1/downsample/Reshape" -> "115 /layers/layers.1/downsample/Slice" [label="[1, 28, 28, 192]", style=solid];
-"108 /layers/layers.1/downsample/Reshape" -> "116 /layers/layers.1/downsample/Slice_2" [label="[1, 28, 28, 192]", style=solid];
-"109 /layers/layers.1/blocks.1/norm2/Mul" -> "117 /layers/layers.1/blocks.1/norm2/Add_1" [label="[1, 784, 192]", style=solid];
-"110 /layers/layers.1/blocks.1/norm1/Add_1" -> "118 /layers/layers.1/blocks.1/Reshape" [label="[1, 784, 192]", style=solid];
-"111 /layers/layers.1/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" -> "119 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [label="[1, 784, 192]", style=solid];
-"112 /layers/layers.1/blocks.0/Transpose" -> "120 /layers/layers.1/blocks.0/Reshape_2" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"113 /layers/layers.0/blocks.1/attn/Transpose" -> "121 /layers/layers.0/blocks.1/attn/Gather" [label="[3, 64, 3, 49, 32]", style=solid];
-"113 /layers/layers.0/blocks.1/attn/Transpose" -> "122 /layers/layers.0/blocks.1/attn/Gather_1" [label="[3, 64, 3, 49, 32]", style=solid];
-"113 /layers/layers.0/blocks.1/attn/Transpose" -> "123 /layers/layers.0/blocks.1/attn/Gather_2" [label="[3, 64, 3, 49, 32]", style=solid];
-"114 /layers/layers.0/blocks.0/attn/proj/Add" -> "124 /layers/layers.0/blocks.0/Reshape_4" [label="[64, 49, 96]", style=solid];
-"115 /layers/layers.1/downsample/Slice" -> "125 /layers/layers.1/downsample/Slice_1" [label="[1, 14, 28, 192]", style=solid];
-"115 /layers/layers.1/downsample/Slice" -> "126 /layers/layers.1/downsample/Slice_4" [label="[1, 14, 28, 192]", style=solid];
-"116 /layers/layers.1/downsample/Slice_2" -> "127 /layers/layers.1/downsample/Slice_3" [label="[1, 14, 28, 192]", style=solid];
-"116 /layers/layers.1/downsample/Slice_2" -> "128 /layers/layers.1/downsample/Slice_5" [label="[1, 14, 28, 192]", style=solid];
-"117 /layers/layers.1/blocks.1/norm2/Add_1" -> "129 /layers/layers.1/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 784, 192]", style=solid];
-"118 /layers/layers.1/blocks.1/Reshape" -> "130 /layers/layers.1/blocks.1/Slice" [label="[1, 28, 28, 192]", style=solid];
-"118 /layers/layers.1/blocks.1/Reshape" -> "131 /layers/layers.1/blocks.1/Slice_1" [label="[1, 28, 28, 192]", style=solid];
-"119 /layers/layers.1/blocks.0/mlp/fc1/MatMul" -> "132 /layers/layers.1/blocks.0/mlp/fc1/Add" [label="[1, 784, 768]", style=solid];
-"120 /layers/layers.1/blocks.0/Reshape_2" -> "133 /layers/layers.1/blocks.0/Reshape_3" [label="[16, 7, 7, 192]", style=solid];
-"121 /layers/layers.0/blocks.1/attn/Gather" -> "134 /layers/layers.0/blocks.1/attn/Mul" [label="[64, 3, 49, 32]", style=solid];
-"122 /layers/layers.0/blocks.1/attn/Gather_1" -> "135 /layers/layers.0/blocks.1/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"123 /layers/layers.0/blocks.1/attn/Gather_2" -> "136 /layers/layers.0/blocks.1/attn/MatMul_1" [label="[64, 3, 49, 32]", style=solid];
-"124 /layers/layers.0/blocks.0/Reshape_4" -> "137 /layers/layers.0/blocks.0/Reshape_5" [label="[64, 7, 7, 96]", style=solid];
-"125 /layers/layers.1/downsample/Slice_1" -> "138 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"126 /layers/layers.1/downsample/Slice_4" -> "138 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"127 /layers/layers.1/downsample/Slice_3" -> "138 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"128 /layers/layers.1/downsample/Slice_5" -> "138 /layers/layers.1/downsample/Concat" [label="[1, 14, 14, 192]", style=solid];
-"129 /layers/layers.1/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" -> "139 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [label="[1, 784, 192]", style=solid];
-"130 /layers/layers.1/blocks.1/Slice" -> "140 /layers/layers.1/blocks.1/Concat" [label="[1, 25, 28, 192]", style=solid];
-"131 /layers/layers.1/blocks.1/Slice_1" -> "140 /layers/layers.1/blocks.1/Concat" [label="[1, 3, 28, 192]", style=solid];
-"132 /layers/layers.1/blocks.0/mlp/fc1/Add" -> "141 /layers/layers.1/blocks.0/mlp/act/Mul_1" [label="[1, 784, 768]", style=solid];
-"133 /layers/layers.1/blocks.0/Reshape_3" -> "142 /layers/layers.1/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[16, 49, 192]", style=solid];
-"134 /layers/layers.0/blocks.1/attn/Mul" -> "135 /layers/layers.0/blocks.1/attn/MatMul" [label="[64, 3, 49, 32]", style=solid];
-"135 /layers/layers.0/blocks.1/attn/MatMul" -> "143 /layers/layers.0/blocks.1/attn/Add" [label="[64, 3, 49, 49]", style=solid];
-"136 /layers/layers.0/blocks.1/attn/MatMul_1" -> "144 /layers/layers.0/blocks.1/attn/Transpose_2" [label="[64, 3, 49, 32]", style=solid];
-"137 /layers/layers.0/blocks.0/Reshape_5" -> "145 /layers/layers.0/blocks.0/Transpose_1" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"138 /layers/layers.1/downsample/Concat" -> "146 /layers/layers.1/downsample/Reshape_1" [label="[1, 14, 14, 768]", style=solid];
-"139 /layers/layers.1/blocks.1/mlp/fc1/MatMul" -> "147 /layers/layers.1/blocks.1/mlp/fc1/Add" [label="[1, 784, 768]", style=solid];
-"140 /layers/layers.1/blocks.1/Concat" -> "148 /layers/layers.1/blocks.1/Slice_2" [label="[1, 28, 28, 192]", style=solid];
-"140 /layers/layers.1/blocks.1/Concat" -> "149 /layers/layers.1/blocks.1/Slice_3" [label="[1, 28, 28, 192]", style=solid];
-"141 /layers/layers.1/blocks.0/mlp/act/Mul_1" -> "150 /layers/layers.1/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 784, 768]", style=solid];
-"142 /layers/layers.1/blocks.0/Reshape_3_0_0/nncf_smooth_quant" -> "151 /layers/layers.1/blocks.0/attn/qkv/MatMul" [label="[16, 49, 192]", style=solid];
-"143 /layers/layers.0/blocks.1/attn/Add" -> "152 /layers/layers.0/blocks.1/attn/Reshape_1" [label="[64, 3, 49, 49]", style=solid];
-"144 /layers/layers.0/blocks.1/attn/Transpose_2" -> "153 /layers/layers.0/blocks.1/attn/Reshape_3" [label="[64, 49, 3, 32]", style=solid];
-"145 /layers/layers.0/blocks.0/Transpose_1" -> "154 /layers/layers.0/blocks.0/Reshape_6" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"146 /layers/layers.1/downsample/Reshape_1" -> "155 /layers/layers.1/downsample/norm/Div" [label="[1, 196, 768]", style=solid];
-"147 /layers/layers.1/blocks.1/mlp/fc1/Add" -> "156 /layers/layers.1/blocks.1/mlp/act/Mul_1" [label="[1, 784, 768]", style=solid];
-"148 /layers/layers.1/blocks.1/Slice_2" -> "157 /layers/layers.1/blocks.1/Concat_1" [label="[1, 28, 25, 192]", style=solid];
-"149 /layers/layers.1/blocks.1/Slice_3" -> "157 /layers/layers.1/blocks.1/Concat_1" [label="[1, 28, 3, 192]", style=solid];
-"150 /layers/layers.1/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "158 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [label="[1, 784, 768]", style=solid];
-"151 /layers/layers.1/blocks.0/attn/qkv/MatMul" -> "159 /layers/layers.1/blocks.0/attn/qkv/Add" [label="[16, 49, 576]", style=solid];
-"152 /layers/layers.0/blocks.1/attn/Reshape_1" -> "160 /layers/layers.0/blocks.1/attn/Add_1" [label="[1, 64, 3, 49, 49]", style=solid];
-"153 /layers/layers.0/blocks.1/attn/Reshape_3" -> "161 /layers/layers.0/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[64, 49, 96]", style=solid];
-"154 /layers/layers.0/blocks.0/Reshape_6" -> "162 /layers/layers.0/blocks.0/Reshape_7" [label="[1, 56, 56, 96]", style=solid];
-"155 /layers/layers.1/downsample/norm/Div" -> "163 /layers/layers.1/downsample/norm/Mul" [label="[1, 196, 768]", style=solid];
-"156 /layers/layers.1/blocks.1/mlp/act/Mul_1" -> "164 /layers/layers.1/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 784, 768]", style=solid];
-"157 /layers/layers.1/blocks.1/Concat_1" -> "165 /layers/layers.1/blocks.1/Reshape_1" [label="[1, 28, 28, 192]", style=solid];
-"158 /layers/layers.1/blocks.0/mlp/fc2/MatMul" -> "166 /layers/layers.1/blocks.0/mlp/fc2/Add" [label="[1, 784, 192]", style=solid];
-"159 /layers/layers.1/blocks.0/attn/qkv/Add" -> "167 /layers/layers.1/blocks.0/attn/Reshape" [label="[16, 49, 576]", style=solid];
-"160 /layers/layers.0/blocks.1/attn/Add_1" -> "168 /layers/layers.0/blocks.1/attn/Reshape_2" [label="[1, 64, 3, 49, 49]", style=solid];
-"161 /layers/layers.0/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" -> "169 /layers/layers.0/blocks.1/attn/proj/MatMul" [label="[64, 49, 96]", style=solid];
-"162 /layers/layers.0/blocks.0/Reshape_7" -> "14 /layers/layers.0/blocks.0/Add" [label="[1, 3136, 96]", style=solid];
-"163 /layers/layers.1/downsample/norm/Mul" -> "170 /layers/layers.1/downsample/norm/Add_1" [label="[1, 196, 768]", style=solid];
-"164 /layers/layers.1/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "171 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [label="[1, 784, 768]", style=solid];
-"165 /layers/layers.1/blocks.1/Reshape_1" -> "172 /layers/layers.1/blocks.1/Transpose" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"166 /layers/layers.1/blocks.0/mlp/fc2/Add" -> "89 /layers/layers.1/blocks.0/Add_1" [label="[1, 784, 192]", style=solid];
-"167 /layers/layers.1/blocks.0/attn/Reshape" -> "173 /layers/layers.1/blocks.0/attn/Transpose" [label="[16, 49, 3, 6, 32]", style=solid];
-"168 /layers/layers.0/blocks.1/attn/Reshape_2" -> "174 /layers/layers.0/blocks.1/attn/softmax/Softmax" [label="[64, 3, 49, 49]", style=solid];
-"169 /layers/layers.0/blocks.1/attn/proj/MatMul" -> "175 /layers/layers.0/blocks.1/attn/proj/Add" [label="[64, 49, 96]", style=solid];
-"170 /layers/layers.1/downsample/norm/Add_1" -> "176 /layers/layers.1/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 768]", style=solid];
-"171 /layers/layers.1/blocks.1/mlp/fc2/MatMul" -> "177 /layers/layers.1/blocks.1/mlp/fc2/Add" [label="[1, 784, 192]", style=solid];
-"172 /layers/layers.1/blocks.1/Transpose" -> "178 /layers/layers.1/blocks.1/Reshape_2" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"173 /layers/layers.1/blocks.0/attn/Transpose" -> "179 /layers/layers.1/blocks.0/attn/Gather" [label="[3, 16, 6, 49, 32]", style=solid];
-"173 /layers/layers.1/blocks.0/attn/Transpose" -> "180 /layers/layers.1/blocks.0/attn/Gather_1" [label="[3, 16, 6, 49, 32]", style=solid];
-"173 /layers/layers.1/blocks.0/attn/Transpose" -> "181 /layers/layers.1/blocks.0/attn/Gather_2" [label="[3, 16, 6, 49, 32]", style=solid];
-"174 /layers/layers.0/blocks.1/attn/softmax/Softmax" -> "136 /layers/layers.0/blocks.1/attn/MatMul_1" [label="[64, 3, 49, 49]", style=solid];
-"175 /layers/layers.0/blocks.1/attn/proj/Add" -> "182 /layers/layers.0/blocks.1/Reshape_4" [label="[64, 49, 96]", style=solid];
-"176 /layers/layers.1/downsample/norm/Add_1_0_0/nncf_smooth_quant" -> "183 /layers/layers.1/downsample/reduction/MatMul" [label="[1, 196, 768]", style=solid];
-"177 /layers/layers.1/blocks.1/mlp/fc2/Add" -> "101 /layers/layers.1/blocks.1/Add_1" [label="[1, 784, 192]", style=solid];
-"178 /layers/layers.1/blocks.1/Reshape_2" -> "184 /layers/layers.1/blocks.1/Reshape_3" [label="[16, 7, 7, 192]", style=solid];
-"179 /layers/layers.1/blocks.0/attn/Gather" -> "185 /layers/layers.1/blocks.0/attn/Mul" [label="[16, 6, 49, 32]", style=solid];
-"180 /layers/layers.1/blocks.0/attn/Gather_1" -> "186 /layers/layers.1/blocks.0/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"181 /layers/layers.1/blocks.0/attn/Gather_2" -> "187 /layers/layers.1/blocks.0/attn/MatMul_1" [label="[16, 6, 49, 32]", style=solid];
-"182 /layers/layers.0/blocks.1/Reshape_4" -> "188 /layers/layers.0/blocks.1/Reshape_5" [label="[64, 7, 7, 96]", style=solid];
-"183 /layers/layers.1/downsample/reduction/MatMul" -> "189 /layers/layers.2/blocks.0/Add" [label="[1, 196, 384]", style=solid];
-"183 /layers/layers.1/downsample/reduction/MatMul" -> "190 /layers/layers.2/blocks.0/norm1/Div" [label="[1, 196, 384]", style=solid];
-"184 /layers/layers.1/blocks.1/Reshape_3" -> "191 /layers/layers.1/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[16, 49, 192]", style=solid];
-"185 /layers/layers.1/blocks.0/attn/Mul" -> "186 /layers/layers.1/blocks.0/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"186 /layers/layers.1/blocks.0/attn/MatMul" -> "192 /layers/layers.1/blocks.0/attn/Add" [label="[16, 6, 49, 49]", style=solid];
-"187 /layers/layers.1/blocks.0/attn/MatMul_1" -> "193 /layers/layers.1/blocks.0/attn/Transpose_2" [label="[16, 6, 49, 32]", style=solid];
-"188 /layers/layers.0/blocks.1/Reshape_5" -> "194 /layers/layers.0/blocks.1/Transpose_1" [label="[1, 8, 8, 7, 7, 96]", style=solid];
-"189 /layers/layers.2/blocks.0/Add" -> "195 /layers/layers.2/blocks.0/Add_1" [label="[1, 196, 384]", style=solid];
-"189 /layers/layers.2/blocks.0/Add" -> "196 /layers/layers.2/blocks.0/norm2/Div" [label="[1, 196, 384]", style=solid];
-"190 /layers/layers.2/blocks.0/norm1/Div" -> "197 /layers/layers.2/blocks.0/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"191 /layers/layers.1/blocks.1/Reshape_3_0_0/nncf_smooth_quant" -> "198 /layers/layers.1/blocks.1/attn/qkv/MatMul" [label="[16, 49, 192]", style=solid];
-"192 /layers/layers.1/blocks.0/attn/Add" -> "199 /layers/layers.1/blocks.0/attn/softmax/Softmax" [label="[16, 6, 49, 49]", style=solid];
-"193 /layers/layers.1/blocks.0/attn/Transpose_2" -> "200 /layers/layers.1/blocks.0/attn/Reshape_1" [label="[16, 49, 6, 32]", style=solid];
-"194 /layers/layers.0/blocks.1/Transpose_1" -> "201 /layers/layers.0/blocks.1/Reshape_6" [label="[1, 8, 7, 8, 7, 96]", style=solid];
-"195 /layers/layers.2/blocks.0/Add_1" -> "202 /layers/layers.2/blocks.1/Add" [label="[1, 196, 384]", style=solid];
-"195 /layers/layers.2/blocks.0/Add_1" -> "203 /layers/layers.2/blocks.1/norm1/Div" [label="[1, 196, 384]", style=solid];
-"196 /layers/layers.2/blocks.0/norm2/Div" -> "204 /layers/layers.2/blocks.0/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"197 /layers/layers.2/blocks.0/norm1/Mul" -> "205 /layers/layers.2/blocks.0/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"198 /layers/layers.1/blocks.1/attn/qkv/MatMul" -> "206 /layers/layers.1/blocks.1/attn/qkv/Add" [label="[16, 49, 576]", style=solid];
-"199 /layers/layers.1/blocks.0/attn/softmax/Softmax" -> "187 /layers/layers.1/blocks.0/attn/MatMul_1" [label="[16, 6, 49, 49]", style=solid];
-"200 /layers/layers.1/blocks.0/attn/Reshape_1" -> "207 /layers/layers.1/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[16, 49, 192]", style=solid];
-"201 /layers/layers.0/blocks.1/Reshape_6" -> "208 /layers/layers.0/blocks.1/Slice_4" [label="[1, 56, 56, 96]", style=solid];
-"201 /layers/layers.0/blocks.1/Reshape_6" -> "209 /layers/layers.0/blocks.1/Slice_5" [label="[1, 56, 56, 96]", style=solid];
-"202 /layers/layers.2/blocks.1/Add" -> "210 /layers/layers.2/blocks.1/Add_1" [label="[1, 196, 384]", style=solid];
-"202 /layers/layers.2/blocks.1/Add" -> "211 /layers/layers.2/blocks.1/norm2/Div" [label="[1, 196, 384]", style=solid];
-"203 /layers/layers.2/blocks.1/norm1/Div" -> "212 /layers/layers.2/blocks.1/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"204 /layers/layers.2/blocks.0/norm2/Mul" -> "213 /layers/layers.2/blocks.0/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"205 /layers/layers.2/blocks.0/norm1/Add_1" -> "214 /layers/layers.2/blocks.0/Reshape_1" [label="[1, 196, 384]", style=solid];
-"206 /layers/layers.1/blocks.1/attn/qkv/Add" -> "215 /layers/layers.1/blocks.1/attn/Reshape" [label="[16, 49, 576]", style=solid];
-"207 /layers/layers.1/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" -> "216 /layers/layers.1/blocks.0/attn/proj/MatMul" [label="[16, 49, 192]", style=solid];
-"208 /layers/layers.0/blocks.1/Slice_4" -> "217 /layers/layers.0/blocks.1/Concat_2" [label="[1, 3, 56, 96]", style=solid];
-"209 /layers/layers.0/blocks.1/Slice_5" -> "217 /layers/layers.0/blocks.1/Concat_2" [label="[1, 53, 56, 96]", style=solid];
-"210 /layers/layers.2/blocks.1/Add_1" -> "218 /layers/layers.2/blocks.2/Add" [label="[1, 196, 384]", style=solid];
-"210 /layers/layers.2/blocks.1/Add_1" -> "219 /layers/layers.2/blocks.2/norm1/Div" [label="[1, 196, 384]", style=solid];
-"211 /layers/layers.2/blocks.1/norm2/Div" -> "220 /layers/layers.2/blocks.1/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"212 /layers/layers.2/blocks.1/norm1/Mul" -> "221 /layers/layers.2/blocks.1/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"213 /layers/layers.2/blocks.0/norm2/Add_1" -> "222 /layers/layers.2/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"214 /layers/layers.2/blocks.0/Reshape_1" -> "223 /layers/layers.2/blocks.0/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"215 /layers/layers.1/blocks.1/attn/Reshape" -> "224 /layers/layers.1/blocks.1/attn/Transpose" [label="[16, 49, 3, 6, 32]", style=solid];
-"216 /layers/layers.1/blocks.0/attn/proj/MatMul" -> "225 /layers/layers.1/blocks.0/attn/proj/Add" [label="[16, 49, 192]", style=solid];
-"217 /layers/layers.0/blocks.1/Concat_2" -> "226 /layers/layers.0/blocks.1/Slice_6" [label="[1, 56, 56, 96]", style=solid];
-"217 /layers/layers.0/blocks.1/Concat_2" -> "227 /layers/layers.0/blocks.1/Slice_7" [label="[1, 56, 56, 96]", style=solid];
-"218 /layers/layers.2/blocks.2/Add" -> "228 /layers/layers.2/blocks.2/Add_1" [label="[1, 196, 384]", style=solid];
-"218 /layers/layers.2/blocks.2/Add" -> "229 /layers/layers.2/blocks.2/norm2/Div" [label="[1, 196, 384]", style=solid];
-"219 /layers/layers.2/blocks.2/norm1/Div" -> "230 /layers/layers.2/blocks.2/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"220 /layers/layers.2/blocks.1/norm2/Mul" -> "231 /layers/layers.2/blocks.1/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"221 /layers/layers.2/blocks.1/norm1/Add_1" -> "232 /layers/layers.2/blocks.1/Reshape" [label="[1, 196, 384]", style=solid];
-"222 /layers/layers.2/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" -> "233 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"223 /layers/layers.2/blocks.0/Transpose" -> "234 /layers/layers.2/blocks.0/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"224 /layers/layers.1/blocks.1/attn/Transpose" -> "235 /layers/layers.1/blocks.1/attn/Gather" [label="[3, 16, 6, 49, 32]", style=solid];
-"224 /layers/layers.1/blocks.1/attn/Transpose" -> "236 /layers/layers.1/blocks.1/attn/Gather_1" [label="[3, 16, 6, 49, 32]", style=solid];
-"224 /layers/layers.1/blocks.1/attn/Transpose" -> "237 /layers/layers.1/blocks.1/attn/Gather_2" [label="[3, 16, 6, 49, 32]", style=solid];
-"225 /layers/layers.1/blocks.0/attn/proj/Add" -> "238 /layers/layers.1/blocks.0/Reshape_4" [label="[16, 49, 192]", style=solid];
-"226 /layers/layers.0/blocks.1/Slice_6" -> "239 /layers/layers.0/blocks.1/Concat_3" [label="[1, 56, 3, 96]", style=solid];
-"227 /layers/layers.0/blocks.1/Slice_7" -> "239 /layers/layers.0/blocks.1/Concat_3" [label="[1, 56, 53, 96]", style=solid];
-"228 /layers/layers.2/blocks.2/Add_1" -> "240 /layers/layers.2/blocks.3/Add" [label="[1, 196, 384]", style=solid];
-"228 /layers/layers.2/blocks.2/Add_1" -> "241 /layers/layers.2/blocks.3/norm1/Div" [label="[1, 196, 384]", style=solid];
-"229 /layers/layers.2/blocks.2/norm2/Div" -> "242 /layers/layers.2/blocks.2/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"230 /layers/layers.2/blocks.2/norm1/Mul" -> "243 /layers/layers.2/blocks.2/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"231 /layers/layers.2/blocks.1/norm2/Add_1" -> "244 /layers/layers.2/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"232 /layers/layers.2/blocks.1/Reshape" -> "245 /layers/layers.2/blocks.1/Slice" [label="[1, 14, 14, 384]", style=solid];
-"232 /layers/layers.2/blocks.1/Reshape" -> "246 /layers/layers.2/blocks.1/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"233 /layers/layers.2/blocks.0/mlp/fc1/MatMul" -> "247 /layers/layers.2/blocks.0/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"234 /layers/layers.2/blocks.0/Reshape_2" -> "248 /layers/layers.2/blocks.0/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"235 /layers/layers.1/blocks.1/attn/Gather" -> "249 /layers/layers.1/blocks.1/attn/Mul" [label="[16, 6, 49, 32]", style=solid];
-"236 /layers/layers.1/blocks.1/attn/Gather_1" -> "250 /layers/layers.1/blocks.1/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"237 /layers/layers.1/blocks.1/attn/Gather_2" -> "251 /layers/layers.1/blocks.1/attn/MatMul_1" [label="[16, 6, 49, 32]", style=solid];
-"238 /layers/layers.1/blocks.0/Reshape_4" -> "252 /layers/layers.1/blocks.0/Reshape_5" [label="[16, 7, 7, 192]", style=solid];
-"239 /layers/layers.0/blocks.1/Concat_3" -> "253 /layers/layers.0/blocks.1/Reshape_7" [label="[1, 56, 56, 96]", style=solid];
-"240 /layers/layers.2/blocks.3/Add" -> "254 /layers/layers.2/blocks.3/Add_1" [label="[1, 196, 384]", style=solid];
-"240 /layers/layers.2/blocks.3/Add" -> "255 /layers/layers.2/blocks.3/norm2/Div" [label="[1, 196, 384]", style=solid];
-"241 /layers/layers.2/blocks.3/norm1/Div" -> "256 /layers/layers.2/blocks.3/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"242 /layers/layers.2/blocks.2/norm2/Mul" -> "257 /layers/layers.2/blocks.2/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"243 /layers/layers.2/blocks.2/norm1/Add_1" -> "258 /layers/layers.2/blocks.2/Reshape_1" [label="[1, 196, 384]", style=solid];
-"244 /layers/layers.2/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" -> "259 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"245 /layers/layers.2/blocks.1/Slice" -> "260 /layers/layers.2/blocks.1/Concat" [label="[1, 11, 14, 384]", style=solid];
-"246 /layers/layers.2/blocks.1/Slice_1" -> "260 /layers/layers.2/blocks.1/Concat" [label="[1, 3, 14, 384]", style=solid];
-"247 /layers/layers.2/blocks.0/mlp/fc1/Add" -> "261 /layers/layers.2/blocks.0/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"248 /layers/layers.2/blocks.0/Reshape_3" -> "262 /layers/layers.2/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"249 /layers/layers.1/blocks.1/attn/Mul" -> "250 /layers/layers.1/blocks.1/attn/MatMul" [label="[16, 6, 49, 32]", style=solid];
-"250 /layers/layers.1/blocks.1/attn/MatMul" -> "263 /layers/layers.1/blocks.1/attn/Add" [label="[16, 6, 49, 49]", style=solid];
-"251 /layers/layers.1/blocks.1/attn/MatMul_1" -> "264 /layers/layers.1/blocks.1/attn/Transpose_2" [label="[16, 6, 49, 32]", style=solid];
-"252 /layers/layers.1/blocks.0/Reshape_5" -> "265 /layers/layers.1/blocks.0/Transpose_1" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"253 /layers/layers.0/blocks.1/Reshape_7" -> "19 /layers/layers.0/blocks.1/Add" [label="[1, 3136, 96]", style=solid];
-"254 /layers/layers.2/blocks.3/Add_1" -> "266 /layers/layers.2/blocks.4/Add" [label="[1, 196, 384]", style=solid];
-"254 /layers/layers.2/blocks.3/Add_1" -> "267 /layers/layers.2/blocks.4/norm1/Div" [label="[1, 196, 384]", style=solid];
-"255 /layers/layers.2/blocks.3/norm2/Div" -> "268 /layers/layers.2/blocks.3/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"256 /layers/layers.2/blocks.3/norm1/Mul" -> "269 /layers/layers.2/blocks.3/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"257 /layers/layers.2/blocks.2/norm2/Add_1" -> "270 /layers/layers.2/blocks.2/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"258 /layers/layers.2/blocks.2/Reshape_1" -> "271 /layers/layers.2/blocks.2/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"259 /layers/layers.2/blocks.1/mlp/fc1/MatMul" -> "272 /layers/layers.2/blocks.1/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"260 /layers/layers.2/blocks.1/Concat" -> "273 /layers/layers.2/blocks.1/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"260 /layers/layers.2/blocks.1/Concat" -> "274 /layers/layers.2/blocks.1/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"261 /layers/layers.2/blocks.0/mlp/act/Mul_1" -> "275 /layers/layers.2/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"262 /layers/layers.2/blocks.0/Reshape_3_0_0/nncf_smooth_quant" -> "276 /layers/layers.2/blocks.0/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"263 /layers/layers.1/blocks.1/attn/Add" -> "277 /layers/layers.1/blocks.1/attn/Reshape_1" [label="[16, 6, 49, 49]", style=solid];
-"264 /layers/layers.1/blocks.1/attn/Transpose_2" -> "278 /layers/layers.1/blocks.1/attn/Reshape_3" [label="[16, 49, 6, 32]", style=solid];
-"265 /layers/layers.1/blocks.0/Transpose_1" -> "279 /layers/layers.1/blocks.0/Reshape_6" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"266 /layers/layers.2/blocks.4/Add" -> "280 /layers/layers.2/blocks.4/Add_1" [label="[1, 196, 384]", style=solid];
-"266 /layers/layers.2/blocks.4/Add" -> "281 /layers/layers.2/blocks.4/norm2/Div" [label="[1, 196, 384]", style=solid];
-"267 /layers/layers.2/blocks.4/norm1/Div" -> "282 /layers/layers.2/blocks.4/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"268 /layers/layers.2/blocks.3/norm2/Mul" -> "283 /layers/layers.2/blocks.3/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"269 /layers/layers.2/blocks.3/norm1/Add_1" -> "284 /layers/layers.2/blocks.3/Reshape" [label="[1, 196, 384]", style=solid];
-"270 /layers/layers.2/blocks.2/norm2/Add_1_0_0/nncf_smooth_quant" -> "285 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"271 /layers/layers.2/blocks.2/Transpose" -> "286 /layers/layers.2/blocks.2/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"272 /layers/layers.2/blocks.1/mlp/fc1/Add" -> "287 /layers/layers.2/blocks.1/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"273 /layers/layers.2/blocks.1/Slice_2" -> "288 /layers/layers.2/blocks.1/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"274 /layers/layers.2/blocks.1/Slice_3" -> "288 /layers/layers.2/blocks.1/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"275 /layers/layers.2/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "289 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"276 /layers/layers.2/blocks.0/attn/qkv/MatMul" -> "290 /layers/layers.2/blocks.0/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"277 /layers/layers.1/blocks.1/attn/Reshape_1" -> "291 /layers/layers.1/blocks.1/attn/Add_1" [label="[1, 16, 6, 49, 49]", style=solid];
-"278 /layers/layers.1/blocks.1/attn/Reshape_3" -> "292 /layers/layers.1/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[16, 49, 192]", style=solid];
-"279 /layers/layers.1/blocks.0/Reshape_6" -> "293 /layers/layers.1/blocks.0/Reshape_7" [label="[1, 28, 28, 192]", style=solid];
-"280 /layers/layers.2/blocks.4/Add_1" -> "294 /layers/layers.2/blocks.5/Add" [label="[1, 196, 384]", style=solid];
-"280 /layers/layers.2/blocks.4/Add_1" -> "295 /layers/layers.2/blocks.5/norm1/Div" [label="[1, 196, 384]", style=solid];
-"281 /layers/layers.2/blocks.4/norm2/Div" -> "296 /layers/layers.2/blocks.4/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"282 /layers/layers.2/blocks.4/norm1/Mul" -> "297 /layers/layers.2/blocks.4/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"283 /layers/layers.2/blocks.3/norm2/Add_1" -> "298 /layers/layers.2/blocks.3/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"284 /layers/layers.2/blocks.3/Reshape" -> "299 /layers/layers.2/blocks.3/Slice" [label="[1, 14, 14, 384]", style=solid];
-"284 /layers/layers.2/blocks.3/Reshape" -> "300 /layers/layers.2/blocks.3/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"285 /layers/layers.2/blocks.2/mlp/fc1/MatMul" -> "301 /layers/layers.2/blocks.2/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"286 /layers/layers.2/blocks.2/Reshape_2" -> "302 /layers/layers.2/blocks.2/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"287 /layers/layers.2/blocks.1/mlp/act/Mul_1" -> "303 /layers/layers.2/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"288 /layers/layers.2/blocks.1/Concat_1" -> "304 /layers/layers.2/blocks.1/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"289 /layers/layers.2/blocks.0/mlp/fc2/MatMul" -> "305 /layers/layers.2/blocks.0/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"290 /layers/layers.2/blocks.0/attn/qkv/Add" -> "306 /layers/layers.2/blocks.0/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"291 /layers/layers.1/blocks.1/attn/Add_1" -> "307 /layers/layers.1/blocks.1/attn/Reshape_2" [label="[1, 16, 6, 49, 49]", style=solid];
-"292 /layers/layers.1/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" -> "308 /layers/layers.1/blocks.1/attn/proj/MatMul" [label="[16, 49, 192]", style=solid];
-"293 /layers/layers.1/blocks.0/Reshape_7" -> "84 /layers/layers.1/blocks.0/Add" [label="[1, 784, 192]", style=solid];
-"294 /layers/layers.2/blocks.5/Add" -> "309 /layers/layers.2/blocks.5/Add_1" [label="[1, 196, 384]", style=solid];
-"294 /layers/layers.2/blocks.5/Add" -> "310 /layers/layers.2/blocks.5/norm2/Div" [label="[1, 196, 384]", style=solid];
-"295 /layers/layers.2/blocks.5/norm1/Div" -> "311 /layers/layers.2/blocks.5/norm1/Mul" [label="[1, 196, 384]", style=solid];
-"296 /layers/layers.2/blocks.4/norm2/Mul" -> "312 /layers/layers.2/blocks.4/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"297 /layers/layers.2/blocks.4/norm1/Add_1" -> "313 /layers/layers.2/blocks.4/Reshape_1" [label="[1, 196, 384]", style=solid];
-"298 /layers/layers.2/blocks.3/norm2/Add_1_0_0/nncf_smooth_quant" -> "314 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"299 /layers/layers.2/blocks.3/Slice" -> "315 /layers/layers.2/blocks.3/Concat" [label="[1, 11, 14, 384]", style=solid];
-"300 /layers/layers.2/blocks.3/Slice_1" -> "315 /layers/layers.2/blocks.3/Concat" [label="[1, 3, 14, 384]", style=solid];
-"301 /layers/layers.2/blocks.2/mlp/fc1/Add" -> "316 /layers/layers.2/blocks.2/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"302 /layers/layers.2/blocks.2/Reshape_3" -> "317 /layers/layers.2/blocks.2/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"303 /layers/layers.2/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "318 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"304 /layers/layers.2/blocks.1/Reshape_1" -> "319 /layers/layers.2/blocks.1/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"305 /layers/layers.2/blocks.0/mlp/fc2/Add" -> "195 /layers/layers.2/blocks.0/Add_1" [label="[1, 196, 384]", style=solid];
-"306 /layers/layers.2/blocks.0/attn/Reshape" -> "320 /layers/layers.2/blocks.0/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"307 /layers/layers.1/blocks.1/attn/Reshape_2" -> "321 /layers/layers.1/blocks.1/attn/softmax/Softmax" [label="[16, 6, 49, 49]", style=solid];
-"308 /layers/layers.1/blocks.1/attn/proj/MatMul" -> "322 /layers/layers.1/blocks.1/attn/proj/Add" [label="[16, 49, 192]", style=solid];
-"309 /layers/layers.2/blocks.5/Add_1" -> "323 /layers/layers.2/downsample/Reshape" [label="[1, 196, 384]", style=solid];
-"310 /layers/layers.2/blocks.5/norm2/Div" -> "324 /layers/layers.2/blocks.5/norm2/Mul" [label="[1, 196, 384]", style=solid];
-"311 /layers/layers.2/blocks.5/norm1/Mul" -> "325 /layers/layers.2/blocks.5/norm1/Add_1" [label="[1, 196, 384]", style=solid];
-"312 /layers/layers.2/blocks.4/norm2/Add_1" -> "326 /layers/layers.2/blocks.4/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"313 /layers/layers.2/blocks.4/Reshape_1" -> "327 /layers/layers.2/blocks.4/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"314 /layers/layers.2/blocks.3/mlp/fc1/MatMul" -> "328 /layers/layers.2/blocks.3/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"315 /layers/layers.2/blocks.3/Concat" -> "329 /layers/layers.2/blocks.3/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"315 /layers/layers.2/blocks.3/Concat" -> "330 /layers/layers.2/blocks.3/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"316 /layers/layers.2/blocks.2/mlp/act/Mul_1" -> "331 /layers/layers.2/blocks.2/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"317 /layers/layers.2/blocks.2/Reshape_3_0_0/nncf_smooth_quant" -> "332 /layers/layers.2/blocks.2/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"318 /layers/layers.2/blocks.1/mlp/fc2/MatMul" -> "333 /layers/layers.2/blocks.1/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"319 /layers/layers.2/blocks.1/Transpose" -> "334 /layers/layers.2/blocks.1/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"320 /layers/layers.2/blocks.0/attn/Transpose" -> "335 /layers/layers.2/blocks.0/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"320 /layers/layers.2/blocks.0/attn/Transpose" -> "336 /layers/layers.2/blocks.0/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"320 /layers/layers.2/blocks.0/attn/Transpose" -> "337 /layers/layers.2/blocks.0/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"321 /layers/layers.1/blocks.1/attn/softmax/Softmax" -> "251 /layers/layers.1/blocks.1/attn/MatMul_1" [label="[16, 6, 49, 49]", style=solid];
-"322 /layers/layers.1/blocks.1/attn/proj/Add" -> "338 /layers/layers.1/blocks.1/Reshape_4" [label="[16, 49, 192]", style=solid];
-"323 /layers/layers.2/downsample/Reshape" -> "339 /layers/layers.2/downsample/Slice" [label="[1, 14, 14, 384]", style=solid];
-"323 /layers/layers.2/downsample/Reshape" -> "340 /layers/layers.2/downsample/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"324 /layers/layers.2/blocks.5/norm2/Mul" -> "341 /layers/layers.2/blocks.5/norm2/Add_1" [label="[1, 196, 384]", style=solid];
-"325 /layers/layers.2/blocks.5/norm1/Add_1" -> "342 /layers/layers.2/blocks.5/Reshape" [label="[1, 196, 384]", style=solid];
-"326 /layers/layers.2/blocks.4/norm2/Add_1_0_0/nncf_smooth_quant" -> "343 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"327 /layers/layers.2/blocks.4/Transpose" -> "344 /layers/layers.2/blocks.4/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"328 /layers/layers.2/blocks.3/mlp/fc1/Add" -> "345 /layers/layers.2/blocks.3/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"329 /layers/layers.2/blocks.3/Slice_2" -> "346 /layers/layers.2/blocks.3/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"330 /layers/layers.2/blocks.3/Slice_3" -> "346 /layers/layers.2/blocks.3/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"331 /layers/layers.2/blocks.2/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "347 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"332 /layers/layers.2/blocks.2/attn/qkv/MatMul" -> "348 /layers/layers.2/blocks.2/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"333 /layers/layers.2/blocks.1/mlp/fc2/Add" -> "210 /layers/layers.2/blocks.1/Add_1" [label="[1, 196, 384]", style=solid];
-"334 /layers/layers.2/blocks.1/Reshape_2" -> "349 /layers/layers.2/blocks.1/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"335 /layers/layers.2/blocks.0/attn/Gather" -> "350 /layers/layers.2/blocks.0/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"336 /layers/layers.2/blocks.0/attn/Gather_1" -> "351 /layers/layers.2/blocks.0/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"337 /layers/layers.2/blocks.0/attn/Gather_2" -> "352 /layers/layers.2/blocks.0/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"338 /layers/layers.1/blocks.1/Reshape_4" -> "353 /layers/layers.1/blocks.1/Reshape_5" [label="[16, 7, 7, 192]", style=solid];
-"339 /layers/layers.2/downsample/Slice" -> "354 /layers/layers.2/downsample/Slice_1" [label="[1, 7, 14, 384]", style=solid];
-"339 /layers/layers.2/downsample/Slice" -> "355 /layers/layers.2/downsample/Slice_4" [label="[1, 7, 14, 384]", style=solid];
-"340 /layers/layers.2/downsample/Slice_2" -> "356 /layers/layers.2/downsample/Slice_3" [label="[1, 7, 14, 384]", style=solid];
-"340 /layers/layers.2/downsample/Slice_2" -> "357 /layers/layers.2/downsample/Slice_5" [label="[1, 7, 14, 384]", style=solid];
-"341 /layers/layers.2/blocks.5/norm2/Add_1" -> "358 /layers/layers.2/blocks.5/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 196, 384]", style=solid];
-"342 /layers/layers.2/blocks.5/Reshape" -> "359 /layers/layers.2/blocks.5/Slice" [label="[1, 14, 14, 384]", style=solid];
-"342 /layers/layers.2/blocks.5/Reshape" -> "360 /layers/layers.2/blocks.5/Slice_1" [label="[1, 14, 14, 384]", style=solid];
-"343 /layers/layers.2/blocks.4/mlp/fc1/MatMul" -> "361 /layers/layers.2/blocks.4/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"344 /layers/layers.2/blocks.4/Reshape_2" -> "362 /layers/layers.2/blocks.4/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"345 /layers/layers.2/blocks.3/mlp/act/Mul_1" -> "363 /layers/layers.2/blocks.3/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"346 /layers/layers.2/blocks.3/Concat_1" -> "364 /layers/layers.2/blocks.3/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"347 /layers/layers.2/blocks.2/mlp/fc2/MatMul" -> "365 /layers/layers.2/blocks.2/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"348 /layers/layers.2/blocks.2/attn/qkv/Add" -> "366 /layers/layers.2/blocks.2/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"349 /layers/layers.2/blocks.1/Reshape_3" -> "367 /layers/layers.2/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"350 /layers/layers.2/blocks.0/attn/Mul" -> "351 /layers/layers.2/blocks.0/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"351 /layers/layers.2/blocks.0/attn/MatMul" -> "368 /layers/layers.2/blocks.0/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"352 /layers/layers.2/blocks.0/attn/MatMul_1" -> "369 /layers/layers.2/blocks.0/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"353 /layers/layers.1/blocks.1/Reshape_5" -> "370 /layers/layers.1/blocks.1/Transpose_1" [label="[1, 4, 4, 7, 7, 192]", style=solid];
-"354 /layers/layers.2/downsample/Slice_1" -> "371 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"355 /layers/layers.2/downsample/Slice_4" -> "371 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"356 /layers/layers.2/downsample/Slice_3" -> "371 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"357 /layers/layers.2/downsample/Slice_5" -> "371 /layers/layers.2/downsample/Concat" [label="[1, 7, 7, 384]", style=solid];
-"358 /layers/layers.2/blocks.5/norm2/Add_1_0_0/nncf_smooth_quant" -> "372 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [label="[1, 196, 384]", style=solid];
-"359 /layers/layers.2/blocks.5/Slice" -> "373 /layers/layers.2/blocks.5/Concat" [label="[1, 11, 14, 384]", style=solid];
-"360 /layers/layers.2/blocks.5/Slice_1" -> "373 /layers/layers.2/blocks.5/Concat" [label="[1, 3, 14, 384]", style=solid];
-"361 /layers/layers.2/blocks.4/mlp/fc1/Add" -> "374 /layers/layers.2/blocks.4/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"362 /layers/layers.2/blocks.4/Reshape_3" -> "375 /layers/layers.2/blocks.4/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"363 /layers/layers.2/blocks.3/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "376 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"364 /layers/layers.2/blocks.3/Reshape_1" -> "377 /layers/layers.2/blocks.3/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"365 /layers/layers.2/blocks.2/mlp/fc2/Add" -> "228 /layers/layers.2/blocks.2/Add_1" [label="[1, 196, 384]", style=solid];
-"366 /layers/layers.2/blocks.2/attn/Reshape" -> "378 /layers/layers.2/blocks.2/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"367 /layers/layers.2/blocks.1/Reshape_3_0_0/nncf_smooth_quant" -> "379 /layers/layers.2/blocks.1/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"368 /layers/layers.2/blocks.0/attn/Add" -> "380 /layers/layers.2/blocks.0/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"369 /layers/layers.2/blocks.0/attn/Transpose_2" -> "381 /layers/layers.2/blocks.0/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"370 /layers/layers.1/blocks.1/Transpose_1" -> "382 /layers/layers.1/blocks.1/Reshape_6" [label="[1, 4, 7, 4, 7, 192]", style=solid];
-"371 /layers/layers.2/downsample/Concat" -> "383 /layers/layers.2/downsample/Reshape_1" [label="[1, 7, 7, 1536]", style=solid];
-"372 /layers/layers.2/blocks.5/mlp/fc1/MatMul" -> "384 /layers/layers.2/blocks.5/mlp/fc1/Add" [label="[1, 196, 1536]", style=solid];
-"373 /layers/layers.2/blocks.5/Concat" -> "385 /layers/layers.2/blocks.5/Slice_2" [label="[1, 14, 14, 384]", style=solid];
-"373 /layers/layers.2/blocks.5/Concat" -> "386 /layers/layers.2/blocks.5/Slice_3" [label="[1, 14, 14, 384]", style=solid];
-"374 /layers/layers.2/blocks.4/mlp/act/Mul_1" -> "387 /layers/layers.2/blocks.4/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"375 /layers/layers.2/blocks.4/Reshape_3_0_0/nncf_smooth_quant" -> "388 /layers/layers.2/blocks.4/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"376 /layers/layers.2/blocks.3/mlp/fc2/MatMul" -> "389 /layers/layers.2/blocks.3/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"377 /layers/layers.2/blocks.3/Transpose" -> "390 /layers/layers.2/blocks.3/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"378 /layers/layers.2/blocks.2/attn/Transpose" -> "391 /layers/layers.2/blocks.2/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"378 /layers/layers.2/blocks.2/attn/Transpose" -> "392 /layers/layers.2/blocks.2/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"378 /layers/layers.2/blocks.2/attn/Transpose" -> "393 /layers/layers.2/blocks.2/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"379 /layers/layers.2/blocks.1/attn/qkv/MatMul" -> "394 /layers/layers.2/blocks.1/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"380 /layers/layers.2/blocks.0/attn/softmax/Softmax" -> "352 /layers/layers.2/blocks.0/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"381 /layers/layers.2/blocks.0/attn/Reshape_1" -> "395 /layers/layers.2/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"382 /layers/layers.1/blocks.1/Reshape_6" -> "396 /layers/layers.1/blocks.1/Slice_4" [label="[1, 28, 28, 192]", style=solid];
-"382 /layers/layers.1/blocks.1/Reshape_6" -> "397 /layers/layers.1/blocks.1/Slice_5" [label="[1, 28, 28, 192]", style=solid];
-"383 /layers/layers.2/downsample/Reshape_1" -> "398 /layers/layers.2/downsample/norm/Div" [label="[1, 49, 1536]", style=solid];
-"384 /layers/layers.2/blocks.5/mlp/fc1/Add" -> "399 /layers/layers.2/blocks.5/mlp/act/Mul_1" [label="[1, 196, 1536]", style=solid];
-"385 /layers/layers.2/blocks.5/Slice_2" -> "400 /layers/layers.2/blocks.5/Concat_1" [label="[1, 14, 11, 384]", style=solid];
-"386 /layers/layers.2/blocks.5/Slice_3" -> "400 /layers/layers.2/blocks.5/Concat_1" [label="[1, 14, 3, 384]", style=solid];
-"387 /layers/layers.2/blocks.4/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "401 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"388 /layers/layers.2/blocks.4/attn/qkv/MatMul" -> "402 /layers/layers.2/blocks.4/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"389 /layers/layers.2/blocks.3/mlp/fc2/Add" -> "254 /layers/layers.2/blocks.3/Add_1" [label="[1, 196, 384]", style=solid];
-"390 /layers/layers.2/blocks.3/Reshape_2" -> "403 /layers/layers.2/blocks.3/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"391 /layers/layers.2/blocks.2/attn/Gather" -> "404 /layers/layers.2/blocks.2/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"392 /layers/layers.2/blocks.2/attn/Gather_1" -> "405 /layers/layers.2/blocks.2/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"393 /layers/layers.2/blocks.2/attn/Gather_2" -> "406 /layers/layers.2/blocks.2/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"394 /layers/layers.2/blocks.1/attn/qkv/Add" -> "407 /layers/layers.2/blocks.1/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"395 /layers/layers.2/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" -> "408 /layers/layers.2/blocks.0/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"396 /layers/layers.1/blocks.1/Slice_4" -> "409 /layers/layers.1/blocks.1/Concat_2" [label="[1, 3, 28, 192]", style=solid];
-"397 /layers/layers.1/blocks.1/Slice_5" -> "409 /layers/layers.1/blocks.1/Concat_2" [label="[1, 25, 28, 192]", style=solid];
-"398 /layers/layers.2/downsample/norm/Div" -> "410 /layers/layers.2/downsample/norm/Mul" [label="[1, 49, 1536]", style=solid];
-"399 /layers/layers.2/blocks.5/mlp/act/Mul_1" -> "411 /layers/layers.2/blocks.5/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 196, 1536]", style=solid];
-"400 /layers/layers.2/blocks.5/Concat_1" -> "412 /layers/layers.2/blocks.5/Reshape_1" [label="[1, 14, 14, 384]", style=solid];
-"401 /layers/layers.2/blocks.4/mlp/fc2/MatMul" -> "413 /layers/layers.2/blocks.4/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"402 /layers/layers.2/blocks.4/attn/qkv/Add" -> "414 /layers/layers.2/blocks.4/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"403 /layers/layers.2/blocks.3/Reshape_3" -> "415 /layers/layers.2/blocks.3/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"404 /layers/layers.2/blocks.2/attn/Mul" -> "405 /layers/layers.2/blocks.2/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"405 /layers/layers.2/blocks.2/attn/MatMul" -> "416 /layers/layers.2/blocks.2/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"406 /layers/layers.2/blocks.2/attn/MatMul_1" -> "417 /layers/layers.2/blocks.2/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"407 /layers/layers.2/blocks.1/attn/Reshape" -> "418 /layers/layers.2/blocks.1/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"408 /layers/layers.2/blocks.0/attn/proj/MatMul" -> "419 /layers/layers.2/blocks.0/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"409 /layers/layers.1/blocks.1/Concat_2" -> "420 /layers/layers.1/blocks.1/Slice_6" [label="[1, 28, 28, 192]", style=solid];
-"409 /layers/layers.1/blocks.1/Concat_2" -> "421 /layers/layers.1/blocks.1/Slice_7" [label="[1, 28, 28, 192]", style=solid];
-"410 /layers/layers.2/downsample/norm/Mul" -> "422 /layers/layers.2/downsample/norm/Add_1" [label="[1, 49, 1536]", style=solid];
-"411 /layers/layers.2/blocks.5/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "423 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [label="[1, 196, 1536]", style=solid];
-"412 /layers/layers.2/blocks.5/Reshape_1" -> "424 /layers/layers.2/blocks.5/Transpose" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"413 /layers/layers.2/blocks.4/mlp/fc2/Add" -> "280 /layers/layers.2/blocks.4/Add_1" [label="[1, 196, 384]", style=solid];
-"414 /layers/layers.2/blocks.4/attn/Reshape" -> "425 /layers/layers.2/blocks.4/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"415 /layers/layers.2/blocks.3/Reshape_3_0_0/nncf_smooth_quant" -> "426 /layers/layers.2/blocks.3/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"416 /layers/layers.2/blocks.2/attn/Add" -> "427 /layers/layers.2/blocks.2/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"417 /layers/layers.2/blocks.2/attn/Transpose_2" -> "428 /layers/layers.2/blocks.2/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"418 /layers/layers.2/blocks.1/attn/Transpose" -> "429 /layers/layers.2/blocks.1/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"418 /layers/layers.2/blocks.1/attn/Transpose" -> "430 /layers/layers.2/blocks.1/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"418 /layers/layers.2/blocks.1/attn/Transpose" -> "431 /layers/layers.2/blocks.1/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"419 /layers/layers.2/blocks.0/attn/proj/Add" -> "432 /layers/layers.2/blocks.0/Reshape_4" [label="[4, 49, 384]", style=solid];
-"420 /layers/layers.1/blocks.1/Slice_6" -> "433 /layers/layers.1/blocks.1/Concat_3" [label="[1, 28, 3, 192]", style=solid];
-"421 /layers/layers.1/blocks.1/Slice_7" -> "433 /layers/layers.1/blocks.1/Concat_3" [label="[1, 28, 25, 192]", style=solid];
-"422 /layers/layers.2/downsample/norm/Add_1" -> "434 /layers/layers.2/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 49, 1536]", style=solid];
-"423 /layers/layers.2/blocks.5/mlp/fc2/MatMul" -> "435 /layers/layers.2/blocks.5/mlp/fc2/Add" [label="[1, 196, 384]", style=solid];
-"424 /layers/layers.2/blocks.5/Transpose" -> "436 /layers/layers.2/blocks.5/Reshape_2" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"425 /layers/layers.2/blocks.4/attn/Transpose" -> "437 /layers/layers.2/blocks.4/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"425 /layers/layers.2/blocks.4/attn/Transpose" -> "438 /layers/layers.2/blocks.4/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"425 /layers/layers.2/blocks.4/attn/Transpose" -> "439 /layers/layers.2/blocks.4/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"426 /layers/layers.2/blocks.3/attn/qkv/MatMul" -> "440 /layers/layers.2/blocks.3/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"427 /layers/layers.2/blocks.2/attn/softmax/Softmax" -> "406 /layers/layers.2/blocks.2/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"428 /layers/layers.2/blocks.2/attn/Reshape_1" -> "441 /layers/layers.2/blocks.2/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"429 /layers/layers.2/blocks.1/attn/Gather" -> "442 /layers/layers.2/blocks.1/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"430 /layers/layers.2/blocks.1/attn/Gather_1" -> "443 /layers/layers.2/blocks.1/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"431 /layers/layers.2/blocks.1/attn/Gather_2" -> "444 /layers/layers.2/blocks.1/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"432 /layers/layers.2/blocks.0/Reshape_4" -> "445 /layers/layers.2/blocks.0/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"433 /layers/layers.1/blocks.1/Concat_3" -> "446 /layers/layers.1/blocks.1/Reshape_7" [label="[1, 28, 28, 192]", style=solid];
-"434 /layers/layers.2/downsample/norm/Add_1_0_0/nncf_smooth_quant" -> "447 /layers/layers.2/downsample/reduction/MatMul" [label="[1, 49, 1536]", style=solid];
-"435 /layers/layers.2/blocks.5/mlp/fc2/Add" -> "309 /layers/layers.2/blocks.5/Add_1" [label="[1, 196, 384]", style=solid];
-"436 /layers/layers.2/blocks.5/Reshape_2" -> "448 /layers/layers.2/blocks.5/Reshape_3" [label="[4, 7, 7, 384]", style=solid];
-"437 /layers/layers.2/blocks.4/attn/Gather" -> "449 /layers/layers.2/blocks.4/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"438 /layers/layers.2/blocks.4/attn/Gather_1" -> "450 /layers/layers.2/blocks.4/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"439 /layers/layers.2/blocks.4/attn/Gather_2" -> "451 /layers/layers.2/blocks.4/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"440 /layers/layers.2/blocks.3/attn/qkv/Add" -> "452 /layers/layers.2/blocks.3/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"441 /layers/layers.2/blocks.2/attn/Reshape_1_0_0/nncf_smooth_quant" -> "453 /layers/layers.2/blocks.2/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"442 /layers/layers.2/blocks.1/attn/Mul" -> "443 /layers/layers.2/blocks.1/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"443 /layers/layers.2/blocks.1/attn/MatMul" -> "454 /layers/layers.2/blocks.1/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"444 /layers/layers.2/blocks.1/attn/MatMul_1" -> "455 /layers/layers.2/blocks.1/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"445 /layers/layers.2/blocks.0/Reshape_5" -> "456 /layers/layers.2/blocks.0/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"446 /layers/layers.1/blocks.1/Reshape_7" -> "95 /layers/layers.1/blocks.1/Add" [label="[1, 784, 192]", style=solid];
-"447 /layers/layers.2/downsample/reduction/MatMul" -> "457 /layers/layers.3/blocks.0/Add" [label="[1, 49, 768]", style=solid];
-"447 /layers/layers.2/downsample/reduction/MatMul" -> "458 /layers/layers.3/blocks.0/norm1/Div" [label="[1, 49, 768]", style=solid];
-"448 /layers/layers.2/blocks.5/Reshape_3" -> "459 /layers/layers.2/blocks.5/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"449 /layers/layers.2/blocks.4/attn/Mul" -> "450 /layers/layers.2/blocks.4/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"450 /layers/layers.2/blocks.4/attn/MatMul" -> "460 /layers/layers.2/blocks.4/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"451 /layers/layers.2/blocks.4/attn/MatMul_1" -> "461 /layers/layers.2/blocks.4/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"452 /layers/layers.2/blocks.3/attn/Reshape" -> "462 /layers/layers.2/blocks.3/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"453 /layers/layers.2/blocks.2/attn/proj/MatMul" -> "463 /layers/layers.2/blocks.2/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"454 /layers/layers.2/blocks.1/attn/Add" -> "464 /layers/layers.2/blocks.1/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"455 /layers/layers.2/blocks.1/attn/Transpose_2" -> "465 /layers/layers.2/blocks.1/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"456 /layers/layers.2/blocks.0/Transpose_1" -> "466 /layers/layers.2/blocks.0/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"457 /layers/layers.3/blocks.0/Add" -> "467 /layers/layers.3/blocks.0/Add_1" [label="[1, 49, 768]", style=solid];
-"457 /layers/layers.3/blocks.0/Add" -> "468 /layers/layers.3/blocks.0/norm2/Div" [label="[1, 49, 768]", style=solid];
-"458 /layers/layers.3/blocks.0/norm1/Div" -> "469 /layers/layers.3/blocks.0/norm1/Mul" [label="[1, 49, 768]", style=solid];
-"459 /layers/layers.2/blocks.5/Reshape_3_0_0/nncf_smooth_quant" -> "470 /layers/layers.2/blocks.5/attn/qkv/MatMul" [label="[4, 49, 384]", style=solid];
-"460 /layers/layers.2/blocks.4/attn/Add" -> "471 /layers/layers.2/blocks.4/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"461 /layers/layers.2/blocks.4/attn/Transpose_2" -> "472 /layers/layers.2/blocks.4/attn/Reshape_1" [label="[4, 49, 12, 32]", style=solid];
-"462 /layers/layers.2/blocks.3/attn/Transpose" -> "473 /layers/layers.2/blocks.3/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"462 /layers/layers.2/blocks.3/attn/Transpose" -> "474 /layers/layers.2/blocks.3/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"462 /layers/layers.2/blocks.3/attn/Transpose" -> "475 /layers/layers.2/blocks.3/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"463 /layers/layers.2/blocks.2/attn/proj/Add" -> "476 /layers/layers.2/blocks.2/Reshape_4" [label="[4, 49, 384]", style=solid];
-"464 /layers/layers.2/blocks.1/attn/Reshape_1" -> "477 /layers/layers.2/blocks.1/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"465 /layers/layers.2/blocks.1/attn/Reshape_3" -> "478 /layers/layers.2/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"466 /layers/layers.2/blocks.0/Reshape_6" -> "479 /layers/layers.2/blocks.0/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"467 /layers/layers.3/blocks.0/Add_1" -> "480 /layers/layers.3/blocks.1/Add" [label="[1, 49, 768]", style=solid];
-"467 /layers/layers.3/blocks.0/Add_1" -> "481 /layers/layers.3/blocks.1/norm1/Div" [label="[1, 49, 768]", style=solid];
-"468 /layers/layers.3/blocks.0/norm2/Div" -> "482 /layers/layers.3/blocks.0/norm2/Mul" [label="[1, 49, 768]", style=solid];
-"469 /layers/layers.3/blocks.0/norm1/Mul" -> "483 /layers/layers.3/blocks.0/norm1/Add_1" [label="[1, 49, 768]", style=solid];
-"470 /layers/layers.2/blocks.5/attn/qkv/MatMul" -> "484 /layers/layers.2/blocks.5/attn/qkv/Add" [label="[4, 49, 1152]", style=solid];
-"471 /layers/layers.2/blocks.4/attn/softmax/Softmax" -> "451 /layers/layers.2/blocks.4/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"472 /layers/layers.2/blocks.4/attn/Reshape_1" -> "485 /layers/layers.2/blocks.4/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"473 /layers/layers.2/blocks.3/attn/Gather" -> "486 /layers/layers.2/blocks.3/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"474 /layers/layers.2/blocks.3/attn/Gather_1" -> "487 /layers/layers.2/blocks.3/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"475 /layers/layers.2/blocks.3/attn/Gather_2" -> "488 /layers/layers.2/blocks.3/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"476 /layers/layers.2/blocks.2/Reshape_4" -> "489 /layers/layers.2/blocks.2/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"477 /layers/layers.2/blocks.1/attn/Add_1" -> "490 /layers/layers.2/blocks.1/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"478 /layers/layers.2/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" -> "491 /layers/layers.2/blocks.1/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"479 /layers/layers.2/blocks.0/Reshape_7" -> "189 /layers/layers.2/blocks.0/Add" [label="[1, 196, 384]", style=solid];
-"480 /layers/layers.3/blocks.1/Add" -> "492 /layers/layers.3/blocks.1/Add_1" [label="[1, 49, 768]", style=solid];
-"480 /layers/layers.3/blocks.1/Add" -> "493 /layers/layers.3/blocks.1/norm2/Div" [label="[1, 49, 768]", style=solid];
-"481 /layers/layers.3/blocks.1/norm1/Div" -> "494 /layers/layers.3/blocks.1/norm1/Mul" [label="[1, 49, 768]", style=solid];
-"482 /layers/layers.3/blocks.0/norm2/Mul" -> "495 /layers/layers.3/blocks.0/norm2/Add_1" [label="[1, 49, 768]", style=solid];
-"483 /layers/layers.3/blocks.0/norm1/Add_1" -> "496 /layers/layers.3/blocks.0/Reshape_1" [label="[1, 49, 768]", style=solid];
-"484 /layers/layers.2/blocks.5/attn/qkv/Add" -> "497 /layers/layers.2/blocks.5/attn/Reshape" [label="[4, 49, 1152]", style=solid];
-"485 /layers/layers.2/blocks.4/attn/Reshape_1_0_0/nncf_smooth_quant" -> "498 /layers/layers.2/blocks.4/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"486 /layers/layers.2/blocks.3/attn/Mul" -> "487 /layers/layers.2/blocks.3/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"487 /layers/layers.2/blocks.3/attn/MatMul" -> "499 /layers/layers.2/blocks.3/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"488 /layers/layers.2/blocks.3/attn/MatMul_1" -> "500 /layers/layers.2/blocks.3/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"489 /layers/layers.2/blocks.2/Reshape_5" -> "501 /layers/layers.2/blocks.2/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"490 /layers/layers.2/blocks.1/attn/Reshape_2" -> "502 /layers/layers.2/blocks.1/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"491 /layers/layers.2/blocks.1/attn/proj/MatMul" -> "503 /layers/layers.2/blocks.1/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"492 /layers/layers.3/blocks.1/Add_1" -> "504 /norm/Div" [label="[1, 49, 768]", style=solid];
-"493 /layers/layers.3/blocks.1/norm2/Div" -> "505 /layers/layers.3/blocks.1/norm2/Mul" [label="[1, 49, 768]", style=solid];
-"494 /layers/layers.3/blocks.1/norm1/Mul" -> "506 /layers/layers.3/blocks.1/norm1/Add_1" [label="[1, 49, 768]", style=solid];
-"495 /layers/layers.3/blocks.0/norm2/Add_1" -> "507 /layers/layers.3/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"496 /layers/layers.3/blocks.0/Reshape_1" -> "508 /layers/layers.3/blocks.0/Transpose" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"497 /layers/layers.2/blocks.5/attn/Reshape" -> "509 /layers/layers.2/blocks.5/attn/Transpose" [label="[4, 49, 3, 12, 32]", style=solid];
-"498 /layers/layers.2/blocks.4/attn/proj/MatMul" -> "510 /layers/layers.2/blocks.4/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"499 /layers/layers.2/blocks.3/attn/Add" -> "511 /layers/layers.2/blocks.3/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"500 /layers/layers.2/blocks.3/attn/Transpose_2" -> "512 /layers/layers.2/blocks.3/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"501 /layers/layers.2/blocks.2/Transpose_1" -> "513 /layers/layers.2/blocks.2/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"502 /layers/layers.2/blocks.1/attn/softmax/Softmax" -> "444 /layers/layers.2/blocks.1/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"503 /layers/layers.2/blocks.1/attn/proj/Add" -> "514 /layers/layers.2/blocks.1/Reshape_4" [label="[4, 49, 384]", style=solid];
-"504 /norm/Div" -> "515 /norm/Mul" [label="[1, 49, 768]", style=solid];
-"505 /layers/layers.3/blocks.1/norm2/Mul" -> "516 /layers/layers.3/blocks.1/norm2/Add_1" [label="[1, 49, 768]", style=solid];
-"506 /layers/layers.3/blocks.1/norm1/Add_1" -> "517 /layers/layers.3/blocks.1/Reshape_1" [label="[1, 49, 768]", style=solid];
-"507 /layers/layers.3/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" -> "518 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [label="[1, 49, 768]", style=solid];
-"508 /layers/layers.3/blocks.0/Transpose" -> "519 /layers/layers.3/blocks.0/Reshape_2" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"509 /layers/layers.2/blocks.5/attn/Transpose" -> "520 /layers/layers.2/blocks.5/attn/Gather" [label="[3, 4, 12, 49, 32]", style=solid];
-"509 /layers/layers.2/blocks.5/attn/Transpose" -> "521 /layers/layers.2/blocks.5/attn/Gather_1" [label="[3, 4, 12, 49, 32]", style=solid];
-"509 /layers/layers.2/blocks.5/attn/Transpose" -> "522 /layers/layers.2/blocks.5/attn/Gather_2" [label="[3, 4, 12, 49, 32]", style=solid];
-"510 /layers/layers.2/blocks.4/attn/proj/Add" -> "523 /layers/layers.2/blocks.4/Reshape_4" [label="[4, 49, 384]", style=solid];
-"511 /layers/layers.2/blocks.3/attn/Reshape_1" -> "524 /layers/layers.2/blocks.3/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"512 /layers/layers.2/blocks.3/attn/Reshape_3" -> "525 /layers/layers.2/blocks.3/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"513 /layers/layers.2/blocks.2/Reshape_6" -> "526 /layers/layers.2/blocks.2/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"514 /layers/layers.2/blocks.1/Reshape_4" -> "527 /layers/layers.2/blocks.1/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"515 /norm/Mul" -> "528 /norm/Add_1" [label="[1, 49, 768]", style=solid];
-"516 /layers/layers.3/blocks.1/norm2/Add_1" -> "529 /layers/layers.3/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"517 /layers/layers.3/blocks.1/Reshape_1" -> "530 /layers/layers.3/blocks.1/Transpose" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"518 /layers/layers.3/blocks.0/mlp/fc1/MatMul" -> "531 /layers/layers.3/blocks.0/mlp/fc1/Add" [label="[1, 49, 3072]", style=solid];
-"519 /layers/layers.3/blocks.0/Reshape_2" -> "532 /layers/layers.3/blocks.0/Reshape_3" [label="[1, 7, 7, 768]", style=solid];
-"520 /layers/layers.2/blocks.5/attn/Gather" -> "533 /layers/layers.2/blocks.5/attn/Mul" [label="[4, 12, 49, 32]", style=solid];
-"521 /layers/layers.2/blocks.5/attn/Gather_1" -> "534 /layers/layers.2/blocks.5/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"522 /layers/layers.2/blocks.5/attn/Gather_2" -> "535 /layers/layers.2/blocks.5/attn/MatMul_1" [label="[4, 12, 49, 32]", style=solid];
-"523 /layers/layers.2/blocks.4/Reshape_4" -> "536 /layers/layers.2/blocks.4/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"524 /layers/layers.2/blocks.3/attn/Add_1" -> "537 /layers/layers.2/blocks.3/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"525 /layers/layers.2/blocks.3/attn/Reshape_3_0_0/nncf_smooth_quant" -> "538 /layers/layers.2/blocks.3/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"526 /layers/layers.2/blocks.2/Reshape_7" -> "218 /layers/layers.2/blocks.2/Add" [label="[1, 196, 384]", style=solid];
-"527 /layers/layers.2/blocks.1/Reshape_5" -> "539 /layers/layers.2/blocks.1/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"528 /norm/Add_1" -> "540 ReduceMean_6037" [label="[1, 49, 768]", style=solid];
-"529 /layers/layers.3/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" -> "541 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [label="[1, 49, 768]", style=solid];
-"530 /layers/layers.3/blocks.1/Transpose" -> "542 /layers/layers.3/blocks.1/Reshape_2" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"531 /layers/layers.3/blocks.0/mlp/fc1/Add" -> "543 /layers/layers.3/blocks.0/mlp/act/Mul_1" [label="[1, 49, 3072]", style=solid];
-"532 /layers/layers.3/blocks.0/Reshape_3" -> "544 /layers/layers.3/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"533 /layers/layers.2/blocks.5/attn/Mul" -> "534 /layers/layers.2/blocks.5/attn/MatMul" [label="[4, 12, 49, 32]", style=solid];
-"534 /layers/layers.2/blocks.5/attn/MatMul" -> "545 /layers/layers.2/blocks.5/attn/Add" [label="[4, 12, 49, 49]", style=solid];
-"535 /layers/layers.2/blocks.5/attn/MatMul_1" -> "546 /layers/layers.2/blocks.5/attn/Transpose_2" [label="[4, 12, 49, 32]", style=solid];
-"536 /layers/layers.2/blocks.4/Reshape_5" -> "547 /layers/layers.2/blocks.4/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"537 /layers/layers.2/blocks.3/attn/Reshape_2" -> "548 /layers/layers.2/blocks.3/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"538 /layers/layers.2/blocks.3/attn/proj/MatMul" -> "549 /layers/layers.2/blocks.3/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"539 /layers/layers.2/blocks.1/Transpose_1" -> "550 /layers/layers.2/blocks.1/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"540 ReduceMean_6037" -> "551 /avgpool/GlobalAveragePool" [label="[1, 1, 768]", style=solid];
-"541 /layers/layers.3/blocks.1/mlp/fc1/MatMul" -> "552 /layers/layers.3/blocks.1/mlp/fc1/Add" [label="[1, 49, 3072]", style=solid];
-"542 /layers/layers.3/blocks.1/Reshape_2" -> "553 /layers/layers.3/blocks.1/Reshape_3" [label="[1, 7, 7, 768]", style=solid];
-"543 /layers/layers.3/blocks.0/mlp/act/Mul_1" -> "554 /layers/layers.3/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 49, 3072]", style=solid];
-"544 /layers/layers.3/blocks.0/Reshape_3_0_0/nncf_smooth_quant" -> "555 /layers/layers.3/blocks.0/attn/qkv/MatMul" [label="[1, 49, 768]", style=solid];
-"545 /layers/layers.2/blocks.5/attn/Add" -> "556 /layers/layers.2/blocks.5/attn/Reshape_1" [label="[4, 12, 49, 49]", style=solid];
-"546 /layers/layers.2/blocks.5/attn/Transpose_2" -> "557 /layers/layers.2/blocks.5/attn/Reshape_3" [label="[4, 49, 12, 32]", style=solid];
-"547 /layers/layers.2/blocks.4/Transpose_1" -> "558 /layers/layers.2/blocks.4/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"548 /layers/layers.2/blocks.3/attn/softmax/Softmax" -> "488 /layers/layers.2/blocks.3/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"549 /layers/layers.2/blocks.3/attn/proj/Add" -> "559 /layers/layers.2/blocks.3/Reshape_4" [label="[4, 49, 384]", style=solid];
-"550 /layers/layers.2/blocks.1/Reshape_6" -> "560 /layers/layers.2/blocks.1/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"550 /layers/layers.2/blocks.1/Reshape_6" -> "561 /layers/layers.2/blocks.1/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"551 /avgpool/GlobalAveragePool" -> "562 /Flatten" [label="[1, 768, 1]", style=solid];
-"552 /layers/layers.3/blocks.1/mlp/fc1/Add" -> "563 /layers/layers.3/blocks.1/mlp/act/Mul_1" [label="[1, 49, 3072]", style=solid];
-"553 /layers/layers.3/blocks.1/Reshape_3" -> "564 /layers/layers.3/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"554 /layers/layers.3/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "565 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [label="[1, 49, 3072]", style=solid];
-"555 /layers/layers.3/blocks.0/attn/qkv/MatMul" -> "566 /layers/layers.3/blocks.0/attn/qkv/Add" [label="[1, 49, 2304]", style=solid];
-"556 /layers/layers.2/blocks.5/attn/Reshape_1" -> "567 /layers/layers.2/blocks.5/attn/Add_1" [label="[1, 4, 12, 49, 49]", style=solid];
-"557 /layers/layers.2/blocks.5/attn/Reshape_3" -> "568 /layers/layers.2/blocks.5/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[4, 49, 384]", style=solid];
-"558 /layers/layers.2/blocks.4/Reshape_6" -> "569 /layers/layers.2/blocks.4/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"559 /layers/layers.2/blocks.3/Reshape_4" -> "570 /layers/layers.2/blocks.3/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"560 /layers/layers.2/blocks.1/Slice_4" -> "571 /layers/layers.2/blocks.1/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"561 /layers/layers.2/blocks.1/Slice_5" -> "571 /layers/layers.2/blocks.1/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"562 /Flatten" -> "572 /Flatten_0_0/nncf_smooth_quant" [label="[1, 768]", style=solid];
-"563 /layers/layers.3/blocks.1/mlp/act/Mul_1" -> "573 /layers/layers.3/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 49, 3072]", style=solid];
-"564 /layers/layers.3/blocks.1/Reshape_3_0_0/nncf_smooth_quant" -> "574 /layers/layers.3/blocks.1/attn/qkv/MatMul" [label="[1, 49, 768]", style=solid];
-"565 /layers/layers.3/blocks.0/mlp/fc2/MatMul" -> "575 /layers/layers.3/blocks.0/mlp/fc2/Add" [label="[1, 49, 768]", style=solid];
-"566 /layers/layers.3/blocks.0/attn/qkv/Add" -> "576 /layers/layers.3/blocks.0/attn/Reshape" [label="[1, 49, 2304]", style=solid];
-"567 /layers/layers.2/blocks.5/attn/Add_1" -> "577 /layers/layers.2/blocks.5/attn/Reshape_2" [label="[1, 4, 12, 49, 49]", style=solid];
-"568 /layers/layers.2/blocks.5/attn/Reshape_3_0_0/nncf_smooth_quant" -> "578 /layers/layers.2/blocks.5/attn/proj/MatMul" [label="[4, 49, 384]", style=solid];
-"569 /layers/layers.2/blocks.4/Reshape_7" -> "266 /layers/layers.2/blocks.4/Add" [label="[1, 196, 384]", style=solid];
-"570 /layers/layers.2/blocks.3/Reshape_5" -> "579 /layers/layers.2/blocks.3/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"571 /layers/layers.2/blocks.1/Concat_2" -> "580 /layers/layers.2/blocks.1/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"571 /layers/layers.2/blocks.1/Concat_2" -> "581 /layers/layers.2/blocks.1/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"572 /Flatten_0_0/nncf_smooth_quant" -> "582 /head/Gemm/WithoutBiases" [label="[1, 768]", style=solid];
-"573 /layers/layers.3/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" -> "583 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [label="[1, 49, 3072]", style=solid];
-"574 /layers/layers.3/blocks.1/attn/qkv/MatMul" -> "584 /layers/layers.3/blocks.1/attn/qkv/Add" [label="[1, 49, 2304]", style=solid];
-"575 /layers/layers.3/blocks.0/mlp/fc2/Add" -> "467 /layers/layers.3/blocks.0/Add_1" [label="[1, 49, 768]", style=solid];
-"576 /layers/layers.3/blocks.0/attn/Reshape" -> "585 /layers/layers.3/blocks.0/attn/Transpose" [label="[1, 49, 3, 24, 32]", style=solid];
-"577 /layers/layers.2/blocks.5/attn/Reshape_2" -> "586 /layers/layers.2/blocks.5/attn/softmax/Softmax" [label="[4, 12, 49, 49]", style=solid];
-"578 /layers/layers.2/blocks.5/attn/proj/MatMul" -> "587 /layers/layers.2/blocks.5/attn/proj/Add" [label="[4, 49, 384]", style=solid];
-"579 /layers/layers.2/blocks.3/Transpose_1" -> "588 /layers/layers.2/blocks.3/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"580 /layers/layers.2/blocks.1/Slice_6" -> "589 /layers/layers.2/blocks.1/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"581 /layers/layers.2/blocks.1/Slice_7" -> "589 /layers/layers.2/blocks.1/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"582 /head/Gemm/WithoutBiases" -> "590 probs" [label="[1, 1000]", style=solid];
-"583 /layers/layers.3/blocks.1/mlp/fc2/MatMul" -> "591 /layers/layers.3/blocks.1/mlp/fc2/Add" [label="[1, 49, 768]", style=solid];
-"584 /layers/layers.3/blocks.1/attn/qkv/Add" -> "592 /layers/layers.3/blocks.1/attn/Reshape" [label="[1, 49, 2304]", style=solid];
-"585 /layers/layers.3/blocks.0/attn/Transpose" -> "593 /layers/layers.3/blocks.0/attn/Gather" [label="[3, 1, 24, 49, 32]", style=solid];
-"585 /layers/layers.3/blocks.0/attn/Transpose" -> "594 /layers/layers.3/blocks.0/attn/Gather_1" [label="[3, 1, 24, 49, 32]", style=solid];
-"585 /layers/layers.3/blocks.0/attn/Transpose" -> "595 /layers/layers.3/blocks.0/attn/Gather_2" [label="[3, 1, 24, 49, 32]", style=solid];
-"586 /layers/layers.2/blocks.5/attn/softmax/Softmax" -> "535 /layers/layers.2/blocks.5/attn/MatMul_1" [label="[4, 12, 49, 49]", style=solid];
-"587 /layers/layers.2/blocks.5/attn/proj/Add" -> "596 /layers/layers.2/blocks.5/Reshape_4" [label="[4, 49, 384]", style=solid];
-"588 /layers/layers.2/blocks.3/Reshape_6" -> "597 /layers/layers.2/blocks.3/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"588 /layers/layers.2/blocks.3/Reshape_6" -> "598 /layers/layers.2/blocks.3/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"589 /layers/layers.2/blocks.1/Concat_3" -> "599 /layers/layers.2/blocks.1/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"590 probs" -> "600 probs/sink_port_0" [label="[1, 1000]", style=solid];
-"591 /layers/layers.3/blocks.1/mlp/fc2/Add" -> "492 /layers/layers.3/blocks.1/Add_1" [label="[1, 49, 768]", style=solid];
-"592 /layers/layers.3/blocks.1/attn/Reshape" -> "601 /layers/layers.3/blocks.1/attn/Transpose" [label="[1, 49, 3, 24, 32]", style=solid];
-"593 /layers/layers.3/blocks.0/attn/Gather" -> "602 /layers/layers.3/blocks.0/attn/Mul" [label="[1, 24, 49, 32]", style=solid];
-"594 /layers/layers.3/blocks.0/attn/Gather_1" -> "603 /layers/layers.3/blocks.0/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"595 /layers/layers.3/blocks.0/attn/Gather_2" -> "604 /layers/layers.3/blocks.0/attn/MatMul_1" [label="[1, 24, 49, 32]", style=solid];
-"596 /layers/layers.2/blocks.5/Reshape_4" -> "605 /layers/layers.2/blocks.5/Reshape_5" [label="[4, 7, 7, 384]", style=solid];
-"597 /layers/layers.2/blocks.3/Slice_4" -> "606 /layers/layers.2/blocks.3/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"598 /layers/layers.2/blocks.3/Slice_5" -> "606 /layers/layers.2/blocks.3/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"599 /layers/layers.2/blocks.1/Reshape_7" -> "202 /layers/layers.2/blocks.1/Add" [label="[1, 196, 384]", style=solid];
-"601 /layers/layers.3/blocks.1/attn/Transpose" -> "607 /layers/layers.3/blocks.1/attn/Gather" [label="[3, 1, 24, 49, 32]", style=solid];
-"601 /layers/layers.3/blocks.1/attn/Transpose" -> "608 /layers/layers.3/blocks.1/attn/Gather_1" [label="[3, 1, 24, 49, 32]", style=solid];
-"601 /layers/layers.3/blocks.1/attn/Transpose" -> "609 /layers/layers.3/blocks.1/attn/Gather_2" [label="[3, 1, 24, 49, 32]", style=solid];
-"602 /layers/layers.3/blocks.0/attn/Mul" -> "603 /layers/layers.3/blocks.0/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"603 /layers/layers.3/blocks.0/attn/MatMul" -> "610 /layers/layers.3/blocks.0/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"604 /layers/layers.3/blocks.0/attn/MatMul_1" -> "611 /layers/layers.3/blocks.0/attn/Transpose_2" [label="[1, 24, 49, 32]", style=solid];
-"605 /layers/layers.2/blocks.5/Reshape_5" -> "612 /layers/layers.2/blocks.5/Transpose_1" [label="[1, 2, 2, 7, 7, 384]", style=solid];
-"606 /layers/layers.2/blocks.3/Concat_2" -> "613 /layers/layers.2/blocks.3/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"606 /layers/layers.2/blocks.3/Concat_2" -> "614 /layers/layers.2/blocks.3/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"607 /layers/layers.3/blocks.1/attn/Gather" -> "615 /layers/layers.3/blocks.1/attn/Mul" [label="[1, 24, 49, 32]", style=solid];
-"608 /layers/layers.3/blocks.1/attn/Gather_1" -> "616 /layers/layers.3/blocks.1/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"609 /layers/layers.3/blocks.1/attn/Gather_2" -> "617 /layers/layers.3/blocks.1/attn/MatMul_1" [label="[1, 24, 49, 32]", style=solid];
-"610 /layers/layers.3/blocks.0/attn/Add" -> "618 /layers/layers.3/blocks.0/attn/softmax/Softmax" [label="[1, 24, 49, 49]", style=solid];
-"611 /layers/layers.3/blocks.0/attn/Transpose_2" -> "619 /layers/layers.3/blocks.0/attn/Reshape_1" [label="[1, 49, 24, 32]", style=solid];
-"612 /layers/layers.2/blocks.5/Transpose_1" -> "620 /layers/layers.2/blocks.5/Reshape_6" [label="[1, 2, 7, 2, 7, 384]", style=solid];
-"613 /layers/layers.2/blocks.3/Slice_6" -> "621 /layers/layers.2/blocks.3/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"614 /layers/layers.2/blocks.3/Slice_7" -> "621 /layers/layers.2/blocks.3/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"615 /layers/layers.3/blocks.1/attn/Mul" -> "616 /layers/layers.3/blocks.1/attn/MatMul" [label="[1, 24, 49, 32]", style=solid];
-"616 /layers/layers.3/blocks.1/attn/MatMul" -> "622 /layers/layers.3/blocks.1/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"617 /layers/layers.3/blocks.1/attn/MatMul_1" -> "623 /layers/layers.3/blocks.1/attn/Transpose_2" [label="[1, 24, 49, 32]", style=solid];
-"618 /layers/layers.3/blocks.0/attn/softmax/Softmax" -> "604 /layers/layers.3/blocks.0/attn/MatMul_1" [label="[1, 24, 49, 49]", style=solid];
-"619 /layers/layers.3/blocks.0/attn/Reshape_1" -> "624 /layers/layers.3/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"620 /layers/layers.2/blocks.5/Reshape_6" -> "625 /layers/layers.2/blocks.5/Slice_4" [label="[1, 14, 14, 384]", style=solid];
-"620 /layers/layers.2/blocks.5/Reshape_6" -> "626 /layers/layers.2/blocks.5/Slice_5" [label="[1, 14, 14, 384]", style=solid];
-"621 /layers/layers.2/blocks.3/Concat_3" -> "627 /layers/layers.2/blocks.3/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"622 /layers/layers.3/blocks.1/attn/Add" -> "628 /layers/layers.3/blocks.1/attn/softmax/Softmax" [label="[1, 24, 49, 49]", style=solid];
-"623 /layers/layers.3/blocks.1/attn/Transpose_2" -> "629 /layers/layers.3/blocks.1/attn/Reshape_1" [label="[1, 49, 24, 32]", style=solid];
-"624 /layers/layers.3/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" -> "630 /layers/layers.3/blocks.0/attn/proj/MatMul" [label="[1, 49, 768]", style=solid];
-"625 /layers/layers.2/blocks.5/Slice_4" -> "631 /layers/layers.2/blocks.5/Concat_2" [label="[1, 3, 14, 384]", style=solid];
-"626 /layers/layers.2/blocks.5/Slice_5" -> "631 /layers/layers.2/blocks.5/Concat_2" [label="[1, 11, 14, 384]", style=solid];
-"627 /layers/layers.2/blocks.3/Reshape_7" -> "240 /layers/layers.2/blocks.3/Add" [label="[1, 196, 384]", style=solid];
-"628 /layers/layers.3/blocks.1/attn/softmax/Softmax" -> "617 /layers/layers.3/blocks.1/attn/MatMul_1" [label="[1, 24, 49, 49]", style=solid];
-"629 /layers/layers.3/blocks.1/attn/Reshape_1" -> "632 /layers/layers.3/blocks.1/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 49, 768]", style=solid];
-"630 /layers/layers.3/blocks.0/attn/proj/MatMul" -> "633 /layers/layers.3/blocks.0/attn/proj/Add" [label="[1, 49, 768]", style=solid];
-"631 /layers/layers.2/blocks.5/Concat_2" -> "634 /layers/layers.2/blocks.5/Slice_6" [label="[1, 14, 14, 384]", style=solid];
-"631 /layers/layers.2/blocks.5/Concat_2" -> "635 /layers/layers.2/blocks.5/Slice_7" [label="[1, 14, 14, 384]", style=solid];
-"632 /layers/layers.3/blocks.1/attn/Reshape_1_0_0/nncf_smooth_quant" -> "636 /layers/layers.3/blocks.1/attn/proj/MatMul" [label="[1, 49, 768]", style=solid];
-"633 /layers/layers.3/blocks.0/attn/proj/Add" -> "637 /layers/layers.3/blocks.0/Reshape_4" [label="[1, 49, 768]", style=solid];
-"634 /layers/layers.2/blocks.5/Slice_6" -> "638 /layers/layers.2/blocks.5/Concat_3" [label="[1, 14, 3, 384]", style=solid];
-"635 /layers/layers.2/blocks.5/Slice_7" -> "638 /layers/layers.2/blocks.5/Concat_3" [label="[1, 14, 11, 384]", style=solid];
-"636 /layers/layers.3/blocks.1/attn/proj/MatMul" -> "639 /layers/layers.3/blocks.1/attn/proj/Add" [label="[1, 49, 768]", style=solid];
-"637 /layers/layers.3/blocks.0/Reshape_4" -> "640 /layers/layers.3/blocks.0/Reshape_5" [label="[1, 7, 7, 768]", style=solid];
-"638 /layers/layers.2/blocks.5/Concat_3" -> "641 /layers/layers.2/blocks.5/Reshape_7" [label="[1, 14, 14, 384]", style=solid];
-"639 /layers/layers.3/blocks.1/attn/proj/Add" -> "642 /layers/layers.3/blocks.1/Reshape_4" [label="[1, 49, 768]", style=solid];
-"640 /layers/layers.3/blocks.0/Reshape_5" -> "643 /layers/layers.3/blocks.0/Transpose_1" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"641 /layers/layers.2/blocks.5/Reshape_7" -> "294 /layers/layers.2/blocks.5/Add" [label="[1, 196, 384]", style=solid];
-"642 /layers/layers.3/blocks.1/Reshape_4" -> "644 /layers/layers.3/blocks.1/Reshape_5" [label="[1, 7, 7, 768]", style=solid];
-"643 /layers/layers.3/blocks.0/Transpose_1" -> "645 /layers/layers.3/blocks.0/Reshape_6" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"644 /layers/layers.3/blocks.1/Reshape_5" -> "646 /layers/layers.3/blocks.1/Transpose_1" [label="[1, 1, 1, 7, 7, 768]", style=solid];
-"645 /layers/layers.3/blocks.0/Reshape_6" -> "647 /layers/layers.3/blocks.0/Reshape_7" [label="[1, 7, 7, 768]", style=solid];
-"646 /layers/layers.3/blocks.1/Transpose_1" -> "648 /layers/layers.3/blocks.1/Reshape_6" [label="[1, 1, 7, 1, 7, 768]", style=solid];
-"647 /layers/layers.3/blocks.0/Reshape_7" -> "457 /layers/layers.3/blocks.0/Add" [label="[1, 49, 768]", style=solid];
-"648 /layers/layers.3/blocks.1/Reshape_6" -> "649 /layers/layers.3/blocks.1/Reshape_7" [label="[1, 7, 7, 768]", style=solid];
-"649 /layers/layers.3/blocks.1/Reshape_7" -> "480 /layers/layers.3/blocks.1/Add" [label="[1, 49, 768]", style=solid];
-"650 Constant_7401" -> "590 probs" [label="[1, 1000]", style=solid];
-"651 head.weight" -> "582 /head/Gemm/WithoutBiases" [label="[1000, 768]", style=solid];
-"652 Constant_26065" -> "572 /Flatten_0_0/nncf_smooth_quant" [label="[1, 768]", style=solid];
-"653 Constant_2148" -> "562 /Flatten" [label="[2]", style=dashed];
-"654 Constant_6567" -> "551 /avgpool/GlobalAveragePool" [label="[3]", style=dashed];
-"655 Constant_6036" -> "540 ReduceMean_6037" [label="[1]", style=dashed];
-"656 Constant_7400" -> "528 /norm/Add_1" [label="[1, 1, 768]", style=solid];
-"657 Constant_7399" -> "515 /norm/Mul" [label="[1, 1, 768]", style=solid];
-"658 Constant_2123" -> "504 /norm/Div" [label="[1]", style=dashed];
-"659 Transpose_6564" -> "583 /layers/layers.3/blocks.1/mlp/fc2/MatMul" [label="[768, 3072]", style=solid];
-"660 Constant_26059" -> "573 /layers/layers.3/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 3072]", style=solid];
-"661 Transpose_6560" -> "541 /layers/layers.3/blocks.1/mlp/fc1/MatMul" [label="[3072, 768]", style=solid];
-"662 Constant_26053" -> "529 /layers/layers.3/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"663 Constant_7396" -> "516 /layers/layers.3/blocks.1/norm2/Add_1" [label="[1, 1, 768]", style=solid];
-"664 Constant_7395" -> "505 /layers/layers.3/blocks.1/norm2/Mul" [label="[1, 1, 768]", style=solid];
-"665 Constant_2097" -> "493 /layers/layers.3/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"666 /layers/layers.3/blocks.1/Constant_7" -> "649 /layers/layers.3/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"667 /layers/layers.3/blocks.1/Constant_6" -> "648 /layers/layers.3/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"668 Constant_6554" -> "646 /layers/layers.3/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"669 /layers/layers.3/blocks.1/Constant_5" -> "644 /layers/layers.3/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"670 /layers/layers.3/blocks.1/Constant_4" -> "642 /layers/layers.3/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"671 Transpose_6552" -> "636 /layers/layers.3/blocks.1/attn/proj/MatMul" [label="[768, 768]", style=solid];
-"672 Constant_26069" -> "632 /layers/layers.3/blocks.1/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"673 /layers/layers.3/blocks.1/attn/Constant_2" -> "629 /layers/layers.3/blocks.1/attn/Reshape_1" [label="[3]", style=dashed];
-"674 Constant_2070" -> "623 /layers/layers.3/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"675 Constant_2060" -> "609 /layers/layers.3/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "123 /layers/layers.0/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "181 /layers/layers.1/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "237 /layers/layers.1/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "337 /layers/layers.2/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "393 /layers/layers.2/blocks.2/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "431 /layers/layers.2/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "439 /layers/layers.2/blocks.4/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "475 /layers/layers.2/blocks.3/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "522 /layers/layers.2/blocks.5/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "595 /layers/layers.3/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"676 /patch_embed/Constant" -> "609 /layers/layers.3/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"677 Constant_2054" -> "601 /layers/layers.3/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"678 /layers/layers.3/blocks.1/attn/Constant" -> "592 /layers/layers.3/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"679 Transpose_6549" -> "574 /layers/layers.3/blocks.1/attn/qkv/MatMul" [label="[2304, 768]", style=solid];
-"680 Constant_26061" -> "564 /layers/layers.3/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"681 /layers/layers.3/blocks.1/Constant_3" -> "553 /layers/layers.3/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"682 /layers/layers.3/blocks.1/Constant_2" -> "542 /layers/layers.3/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"683 Constant_6544" -> "530 /layers/layers.3/blocks.1/Transpose" [label="[6]", style=dashed];
-"684 /layers/layers.3/blocks.1/Constant_1" -> "517 /layers/layers.3/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"685 Constant_7391" -> "506 /layers/layers.3/blocks.1/norm1/Add_1" [label="[1, 1, 768]", style=solid];
-"686 Constant_7390" -> "494 /layers/layers.3/blocks.1/norm1/Mul" [label="[1, 1, 768]", style=solid];
-"687 Constant_2017" -> "481 /layers/layers.3/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"688 Transpose_6541" -> "565 /layers/layers.3/blocks.0/mlp/fc2/MatMul" [label="[768, 3072]", style=solid];
-"689 Constant_26055" -> "554 /layers/layers.3/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 3072]", style=solid];
-"690 Transpose_6537" -> "518 /layers/layers.3/blocks.0/mlp/fc1/MatMul" [label="[3072, 768]", style=solid];
-"691 Constant_26049" -> "507 /layers/layers.3/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"692 Constant_7387" -> "495 /layers/layers.3/blocks.0/norm2/Add_1" [label="[1, 1, 768]", style=solid];
-"693 Constant_7386" -> "482 /layers/layers.3/blocks.0/norm2/Mul" [label="[1, 1, 768]", style=solid];
-"694 Constant_1991" -> "468 /layers/layers.3/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"695 /layers/layers.3/blocks.0/Constant_7" -> "647 /layers/layers.3/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"696 /layers/layers.3/blocks.0/Constant_6" -> "645 /layers/layers.3/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"697 Constant_6531" -> "643 /layers/layers.3/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"698 /layers/layers.3/blocks.0/Constant_5" -> "640 /layers/layers.3/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"699 /layers/layers.3/blocks.0/Constant_4" -> "637 /layers/layers.3/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"700 Transpose_6529" -> "630 /layers/layers.3/blocks.0/attn/proj/MatMul" [label="[768, 768]", style=solid];
-"701 Constant_26067" -> "624 /layers/layers.3/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"702 /layers/layers.3/blocks.0/attn/Constant_2" -> "619 /layers/layers.3/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"703 Constant_1964" -> "611 /layers/layers.3/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"704 Constant_1954" -> "595 /layers/layers.3/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"705 Constant_1948" -> "585 /layers/layers.3/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"706 /layers/layers.3/blocks.0/attn/Constant" -> "576 /layers/layers.3/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"707 Transpose_6526" -> "555 /layers/layers.3/blocks.0/attn/qkv/MatMul" [label="[2304, 768]", style=solid];
-"708 Constant_26057" -> "544 /layers/layers.3/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"709 /layers/layers.3/blocks.0/Constant_3" -> "532 /layers/layers.3/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"710 /layers/layers.3/blocks.0/Constant_2" -> "519 /layers/layers.3/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"711 Constant_6521" -> "508 /layers/layers.3/blocks.0/Transpose" [label="[6]", style=dashed];
-"712 /layers/layers.3/blocks.0/Constant_1" -> "496 /layers/layers.3/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"713 Constant_7382" -> "483 /layers/layers.3/blocks.0/norm1/Add_1" [label="[1, 1, 768]", style=solid];
-"714 Constant_7381" -> "469 /layers/layers.3/blocks.0/norm1/Mul" [label="[1, 1, 768]", style=solid];
-"715 Constant_1911" -> "458 /layers/layers.3/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"716 Transpose_6518" -> "447 /layers/layers.2/downsample/reduction/MatMul" [label="[768, 1536]", style=solid];
-"717 Constant_26041" -> "434 /layers/layers.2/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"718 Constant_7380" -> "422 /layers/layers.2/downsample/norm/Add_1" [label="[1, 1, 1536]", style=solid];
-"719 Constant_7379" -> "410 /layers/layers.2/downsample/norm/Mul" [label="[1, 1, 1536]", style=solid];
-"720 Constant_1897" -> "398 /layers/layers.2/downsample/norm/Div" [label="[1]", style=dashed];
-"721 /layers/layers.2/downsample/Constant_25" -> "383 /layers/layers.2/downsample/Reshape_1" [label="[3]", style=dashed];
-"722 Constant_5751" -> "357 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"723 Constant_5748" -> "357 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"724 Constant_5745" -> "357 /layers/layers.2/downsample/Slice_5" [label="[3]", style=dashed];
-"725 Constant_5715" -> "340 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"726 Constant_5712" -> "340 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"727 Constant_5709" -> "340 /layers/layers.2/downsample/Slice_2" [label="[2]", style=dashed];
-"728 /layers/layers.2/downsample/Constant" -> "323 /layers/layers.2/downsample/Reshape" [label="[4]", style=dashed];
-"729 Transpose_6514" -> "423 /layers/layers.2/blocks.5/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"730 Constant_26035" -> "411 /layers/layers.2/blocks.5/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"731 Transpose_6510" -> "372 /layers/layers.2/blocks.5/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"732 Constant_26025" -> "358 /layers/layers.2/blocks.5/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"733 Constant_7376" -> "341 /layers/layers.2/blocks.5/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"734 Constant_7375" -> "324 /layers/layers.2/blocks.5/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"735 Constant_1832" -> "310 /layers/layers.2/blocks.5/norm2/Div" [label="[1]", style=dashed];
-"736 /layers/layers.2/blocks.5/Constant_31" -> "641 /layers/layers.2/blocks.5/Reshape_7" [label="[3]", style=dashed];
-"737 Constant_5679" -> "635 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"738 Constant_5676" -> "635 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"739 Constant_5673" -> "635 /layers/layers.2/blocks.5/Slice_7" [label="[3]", style=dashed];
-"740 Constant_5655" -> "626 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"741 Constant_5652" -> "626 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"742 Constant_5649" -> "626 /layers/layers.2/blocks.5/Slice_5" [label="[2]", style=dashed];
-"743 /layers/layers.2/blocks.5/Constant_18" -> "620 /layers/layers.2/blocks.5/Reshape_6" [label="[4]", style=dashed];
-"744 Constant_1779" -> "612 /layers/layers.2/blocks.5/Transpose_1" [label="[6]", style=dashed];
-"745 /layers/layers.2/blocks.5/Constant_17" -> "605 /layers/layers.2/blocks.5/Reshape_5" [label="[6]", style=dashed];
-"746 /layers/layers.2/blocks.5/Constant_16" -> "596 /layers/layers.2/blocks.5/Reshape_4" [label="[4]", style=dashed];
-"747 Transpose_6506" -> "578 /layers/layers.2/blocks.5/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"748 Constant_26063" -> "568 /layers/layers.2/blocks.5/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"749 /layers/layers.2/blocks.5/attn/Constant_4" -> "557 /layers/layers.2/blocks.5/attn/Reshape_3" [label="[3]", style=dashed];
-"750 Constant_1763" -> "546 /layers/layers.2/blocks.5/attn/Transpose_2" [label="[4]", style=dashed];
-"751 Constant_1744" -> "522 /layers/layers.2/blocks.5/attn/Gather_2" [label="[]", style=dashed];
-"752 Constant_1738" -> "509 /layers/layers.2/blocks.5/attn/Transpose" [label="[5]", style=dashed];
-"753 /layers/layers.2/blocks.5/attn/Constant" -> "497 /layers/layers.2/blocks.5/attn/Reshape" [label="[5]", style=dashed];
-"754 Transpose_6503" -> "470 /layers/layers.2/blocks.5/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"755 Constant_26043" -> "459 /layers/layers.2/blocks.5/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"756 /layers/layers.2/blocks.5/Constant_15" -> "448 /layers/layers.2/blocks.5/Reshape_3" [label="[3]", style=dashed];
-"757 /layers/layers.2/blocks.5/Constant_14" -> "436 /layers/layers.2/blocks.5/Reshape_2" [label="[4]", style=dashed];
-"758 Constant_1722" -> "424 /layers/layers.2/blocks.5/Transpose" [label="[6]", style=dashed];
-"759 /layers/layers.2/blocks.5/Constant_13" -> "412 /layers/layers.2/blocks.5/Reshape_1" [label="[6]", style=dashed];
-"760 Constant_5631" -> "386 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"761 Constant_5628" -> "386 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"762 Constant_5625" -> "386 /layers/layers.2/blocks.5/Slice_3" [label="[3]", style=dashed];
-"763 Constant_5607" -> "360 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"764 Constant_5604" -> "360 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"765 Constant_5601" -> "360 /layers/layers.2/blocks.5/Slice_1" [label="[2]", style=dashed];
-"766 /layers/layers.2/blocks.5/Constant" -> "342 /layers/layers.2/blocks.5/Reshape" [label="[4]", style=dashed];
-"767 Constant_7371" -> "325 /layers/layers.2/blocks.5/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"768 Constant_7370" -> "311 /layers/layers.2/blocks.5/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"769 Constant_1659" -> "295 /layers/layers.2/blocks.5/norm1/Div" [label="[1]", style=dashed];
-"770 Transpose_6499" -> "401 /layers/layers.2/blocks.4/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"771 Constant_26029" -> "387 /layers/layers.2/blocks.4/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"772 Transpose_6495" -> "343 /layers/layers.2/blocks.4/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"773 Constant_26021" -> "326 /layers/layers.2/blocks.4/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"774 Constant_7367" -> "312 /layers/layers.2/blocks.4/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"775 Constant_7366" -> "296 /layers/layers.2/blocks.4/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"776 Constant_1633" -> "281 /layers/layers.2/blocks.4/norm2/Div" [label="[1]", style=dashed];
-"777 /layers/layers.2/blocks.4/Constant_7" -> "569 /layers/layers.2/blocks.4/Reshape_7" [label="[3]", style=dashed];
-"778 /layers/layers.2/blocks.4/Constant_6" -> "558 /layers/layers.2/blocks.4/Reshape_6" [label="[4]", style=dashed];
-"779 Constant_1622" -> "547 /layers/layers.2/blocks.4/Transpose_1" [label="[6]", style=dashed];
-"780 /layers/layers.2/blocks.4/Constant_5" -> "536 /layers/layers.2/blocks.4/Reshape_5" [label="[6]", style=dashed];
-"781 /layers/layers.2/blocks.4/Constant_4" -> "523 /layers/layers.2/blocks.4/Reshape_4" [label="[4]", style=dashed];
-"782 Transpose_6491" -> "498 /layers/layers.2/blocks.4/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"783 Constant_26047" -> "485 /layers/layers.2/blocks.4/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"784 /layers/layers.2/blocks.4/attn/Constant_2" -> "472 /layers/layers.2/blocks.4/attn/Reshape_1" [label="[3]", style=dashed];
-"785 Constant_1606" -> "461 /layers/layers.2/blocks.4/attn/Transpose_2" [label="[4]", style=dashed];
-"786 Constant_1596" -> "439 /layers/layers.2/blocks.4/attn/Gather_2" [label="[]", style=dashed];
-"787 Constant_1590" -> "425 /layers/layers.2/blocks.4/attn/Transpose" [label="[5]", style=dashed];
-"788 /layers/layers.2/blocks.4/attn/Constant" -> "414 /layers/layers.2/blocks.4/attn/Reshape" [label="[5]", style=dashed];
-"789 Transpose_6488" -> "388 /layers/layers.2/blocks.4/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"790 Constant_26031" -> "375 /layers/layers.2/blocks.4/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"791 /layers/layers.2/blocks.4/Constant_3" -> "362 /layers/layers.2/blocks.4/Reshape_3" [label="[3]", style=dashed];
-"792 /layers/layers.2/blocks.4/Constant_2" -> "344 /layers/layers.2/blocks.4/Reshape_2" [label="[4]", style=dashed];
-"793 Constant_1574" -> "327 /layers/layers.2/blocks.4/Transpose" [label="[6]", style=dashed];
-"794 /layers/layers.2/blocks.4/Constant_1" -> "313 /layers/layers.2/blocks.4/Reshape_1" [label="[6]", style=dashed];
-"795 Constant_7362" -> "297 /layers/layers.2/blocks.4/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"796 Constant_7361" -> "282 /layers/layers.2/blocks.4/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"797 Constant_1553" -> "267 /layers/layers.2/blocks.4/norm1/Div" [label="[1]", style=dashed];
-"798 Transpose_6484" -> "376 /layers/layers.2/blocks.3/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"799 Constant_26023" -> "363 /layers/layers.2/blocks.3/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"800 Transpose_6480" -> "314 /layers/layers.2/blocks.3/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"801 Constant_26015" -> "298 /layers/layers.2/blocks.3/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"802 Constant_7358" -> "283 /layers/layers.2/blocks.3/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"803 Constant_7357" -> "268 /layers/layers.2/blocks.3/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"804 Constant_1527" -> "255 /layers/layers.2/blocks.3/norm2/Div" [label="[1]", style=dashed];
-"805 /layers/layers.2/blocks.3/Constant_31" -> "627 /layers/layers.2/blocks.3/Reshape_7" [label="[3]", style=dashed];
-"806 Constant_5583" -> "614 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"807 Constant_5580" -> "614 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"808 Constant_5577" -> "614 /layers/layers.2/blocks.3/Slice_7" [label="[3]", style=dashed];
-"809 Constant_5559" -> "598 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"810 Constant_5556" -> "598 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"811 Constant_5553" -> "598 /layers/layers.2/blocks.3/Slice_5" [label="[2]", style=dashed];
-"812 /layers/layers.2/blocks.3/Constant_18" -> "588 /layers/layers.2/blocks.3/Reshape_6" [label="[4]", style=dashed];
-"813 Constant_1474" -> "579 /layers/layers.2/blocks.3/Transpose_1" [label="[6]", style=dashed];
-"814 /layers/layers.2/blocks.3/Constant_17" -> "570 /layers/layers.2/blocks.3/Reshape_5" [label="[6]", style=dashed];
-"815 /layers/layers.2/blocks.3/Constant_16" -> "559 /layers/layers.2/blocks.3/Reshape_4" [label="[4]", style=dashed];
-"816 Transpose_6476" -> "538 /layers/layers.2/blocks.3/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"817 Constant_26051" -> "525 /layers/layers.2/blocks.3/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"818 /layers/layers.2/blocks.3/attn/Constant_4" -> "512 /layers/layers.2/blocks.3/attn/Reshape_3" [label="[3]", style=dashed];
-"819 Constant_1458" -> "500 /layers/layers.2/blocks.3/attn/Transpose_2" [label="[4]", style=dashed];
-"820 Constant_1439" -> "475 /layers/layers.2/blocks.3/attn/Gather_2" [label="[]", style=dashed];
-"821 Constant_1433" -> "462 /layers/layers.2/blocks.3/attn/Transpose" [label="[5]", style=dashed];
-"822 /layers/layers.2/blocks.3/attn/Constant" -> "452 /layers/layers.2/blocks.3/attn/Reshape" [label="[5]", style=dashed];
-"823 Transpose_6473" -> "426 /layers/layers.2/blocks.3/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"824 Constant_26037" -> "415 /layers/layers.2/blocks.3/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"825 /layers/layers.2/blocks.3/Constant_15" -> "403 /layers/layers.2/blocks.3/Reshape_3" [label="[3]", style=dashed];
-"826 /layers/layers.2/blocks.3/Constant_14" -> "390 /layers/layers.2/blocks.3/Reshape_2" [label="[4]", style=dashed];
-"827 Constant_1417" -> "377 /layers/layers.2/blocks.3/Transpose" [label="[6]", style=dashed];
-"828 /layers/layers.2/blocks.3/Constant_13" -> "364 /layers/layers.2/blocks.3/Reshape_1" [label="[6]", style=dashed];
-"829 Constant_5535" -> "330 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"830 Constant_5532" -> "330 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"831 Constant_5529" -> "330 /layers/layers.2/blocks.3/Slice_3" [label="[3]", style=dashed];
-"832 Constant_5511" -> "300 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"833 Constant_5508" -> "300 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"834 Constant_5505" -> "300 /layers/layers.2/blocks.3/Slice_1" [label="[2]", style=dashed];
-"835 /layers/layers.2/blocks.3/Constant" -> "284 /layers/layers.2/blocks.3/Reshape" [label="[4]", style=dashed];
-"836 Constant_7353" -> "269 /layers/layers.2/blocks.3/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"837 Constant_7352" -> "256 /layers/layers.2/blocks.3/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"838 Constant_1354" -> "241 /layers/layers.2/blocks.3/norm1/Div" [label="[1]", style=dashed];
-"839 Transpose_6469" -> "347 /layers/layers.2/blocks.2/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"840 Constant_26017" -> "331 /layers/layers.2/blocks.2/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"841 Transpose_6465" -> "285 /layers/layers.2/blocks.2/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"842 Constant_26009" -> "270 /layers/layers.2/blocks.2/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"843 Constant_7349" -> "257 /layers/layers.2/blocks.2/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"844 Constant_7348" -> "242 /layers/layers.2/blocks.2/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"845 Constant_1328" -> "229 /layers/layers.2/blocks.2/norm2/Div" [label="[1]", style=dashed];
-"846 /layers/layers.2/blocks.2/Constant_7" -> "526 /layers/layers.2/blocks.2/Reshape_7" [label="[3]", style=dashed];
-"847 /layers/layers.2/blocks.2/Constant_6" -> "513 /layers/layers.2/blocks.2/Reshape_6" [label="[4]", style=dashed];
-"848 Constant_1317" -> "501 /layers/layers.2/blocks.2/Transpose_1" [label="[6]", style=dashed];
-"849 /layers/layers.2/blocks.2/Constant_5" -> "489 /layers/layers.2/blocks.2/Reshape_5" [label="[6]", style=dashed];
-"850 /layers/layers.2/blocks.2/Constant_4" -> "476 /layers/layers.2/blocks.2/Reshape_4" [label="[4]", style=dashed];
-"851 Transpose_6461" -> "453 /layers/layers.2/blocks.2/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"852 Constant_26039" -> "441 /layers/layers.2/blocks.2/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"853 /layers/layers.2/blocks.2/attn/Constant_2" -> "428 /layers/layers.2/blocks.2/attn/Reshape_1" [label="[3]", style=dashed];
-"854 Constant_1301" -> "417 /layers/layers.2/blocks.2/attn/Transpose_2" [label="[4]", style=dashed];
-"855 Constant_1291" -> "393 /layers/layers.2/blocks.2/attn/Gather_2" [label="[]", style=dashed];
-"856 Constant_1285" -> "378 /layers/layers.2/blocks.2/attn/Transpose" [label="[5]", style=dashed];
-"857 /layers/layers.2/blocks.2/attn/Constant" -> "366 /layers/layers.2/blocks.2/attn/Reshape" [label="[5]", style=dashed];
-"858 Transpose_6458" -> "332 /layers/layers.2/blocks.2/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"859 Constant_26019" -> "317 /layers/layers.2/blocks.2/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"860 /layers/layers.2/blocks.2/Constant_3" -> "302 /layers/layers.2/blocks.2/Reshape_3" [label="[3]", style=dashed];
-"861 /layers/layers.2/blocks.2/Constant_2" -> "286 /layers/layers.2/blocks.2/Reshape_2" [label="[4]", style=dashed];
-"862 Constant_1269" -> "271 /layers/layers.2/blocks.2/Transpose" [label="[6]", style=dashed];
-"863 /layers/layers.2/blocks.2/Constant_1" -> "258 /layers/layers.2/blocks.2/Reshape_1" [label="[6]", style=dashed];
-"864 Constant_7344" -> "243 /layers/layers.2/blocks.2/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"865 Constant_7343" -> "230 /layers/layers.2/blocks.2/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"866 Constant_1248" -> "219 /layers/layers.2/blocks.2/norm1/Div" [label="[1]", style=dashed];
-"867 Transpose_6454" -> "318 /layers/layers.2/blocks.1/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"868 Constant_26011" -> "303 /layers/layers.2/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"869 Transpose_6450" -> "259 /layers/layers.2/blocks.1/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"870 Constant_26003" -> "244 /layers/layers.2/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"871 Constant_7340" -> "231 /layers/layers.2/blocks.1/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"872 Constant_7339" -> "220 /layers/layers.2/blocks.1/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"873 Constant_1222" -> "211 /layers/layers.2/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"874 /layers/layers.2/blocks.1/Constant_31" -> "599 /layers/layers.2/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"875 Constant_5487" -> "581 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"876 Constant_5484" -> "581 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"877 Constant_5481" -> "581 /layers/layers.2/blocks.1/Slice_7" [label="[3]", style=dashed];
-"878 Constant_5463" -> "561 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"879 Constant_5460" -> "561 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"880 Constant_5457" -> "561 /layers/layers.2/blocks.1/Slice_5" [label="[2]", style=dashed];
-"881 /layers/layers.2/blocks.1/Constant_18" -> "550 /layers/layers.2/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"882 Constant_1169" -> "539 /layers/layers.2/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"883 /layers/layers.2/blocks.1/Constant_17" -> "527 /layers/layers.2/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"884 /layers/layers.2/blocks.1/Constant_16" -> "514 /layers/layers.2/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"885 Transpose_6446" -> "491 /layers/layers.2/blocks.1/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"886 Constant_26045" -> "478 /layers/layers.2/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"887 /layers/layers.2/blocks.1/attn/Constant_4" -> "465 /layers/layers.2/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"888 Constant_1153" -> "455 /layers/layers.2/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"889 Constant_1134" -> "431 /layers/layers.2/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"890 Constant_1128" -> "418 /layers/layers.2/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"891 /layers/layers.2/blocks.1/attn/Constant" -> "407 /layers/layers.2/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"892 Transpose_6443" -> "379 /layers/layers.2/blocks.1/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"893 Constant_26027" -> "367 /layers/layers.2/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"894 /layers/layers.2/blocks.1/Constant_15" -> "349 /layers/layers.2/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"895 /layers/layers.2/blocks.1/Constant_14" -> "334 /layers/layers.2/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"896 Constant_1112" -> "319 /layers/layers.2/blocks.1/Transpose" [label="[6]", style=dashed];
-"897 /layers/layers.2/blocks.1/Constant_13" -> "304 /layers/layers.2/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"898 Constant_5439" -> "274 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"899 Constant_5436" -> "274 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"900 Constant_5433" -> "274 /layers/layers.2/blocks.1/Slice_3" [label="[3]", style=dashed];
-"901 Constant_5415" -> "246 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"902 Constant_5412" -> "246 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"903 Constant_5409" -> "246 /layers/layers.2/blocks.1/Slice_1" [label="[2]", style=dashed];
-"904 /layers/layers.2/blocks.1/Constant" -> "232 /layers/layers.2/blocks.1/Reshape" [label="[4]", style=dashed];
-"905 Constant_7335" -> "221 /layers/layers.2/blocks.1/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"906 Constant_7334" -> "212 /layers/layers.2/blocks.1/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"907 Constant_1049" -> "203 /layers/layers.2/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"908 Transpose_6439" -> "289 /layers/layers.2/blocks.0/mlp/fc2/MatMul" [label="[384, 1536]", style=solid];
-"909 Constant_26005" -> "275 /layers/layers.2/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 1536]", style=solid];
-"910 Transpose_6435" -> "233 /layers/layers.2/blocks.0/mlp/fc1/MatMul" [label="[1536, 384]", style=solid];
-"911 Constant_26001" -> "222 /layers/layers.2/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"912 Constant_7331" -> "213 /layers/layers.2/blocks.0/norm2/Add_1" [label="[1, 1, 384]", style=solid];
-"913 Constant_7330" -> "204 /layers/layers.2/blocks.0/norm2/Mul" [label="[1, 1, 384]", style=solid];
-"914 Constant_1023" -> "196 /layers/layers.2/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"915 /layers/layers.2/blocks.0/Constant_7" -> "479 /layers/layers.2/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"916 /layers/layers.2/blocks.0/Constant_6" -> "466 /layers/layers.2/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"917 Constant_1012" -> "456 /layers/layers.2/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"918 /layers/layers.2/blocks.0/Constant_5" -> "445 /layers/layers.2/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"919 /layers/layers.2/blocks.0/Constant_4" -> "432 /layers/layers.2/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"920 Transpose_6431" -> "408 /layers/layers.2/blocks.0/attn/proj/MatMul" [label="[384, 384]", style=solid];
-"921 Constant_26033" -> "395 /layers/layers.2/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"922 /layers/layers.2/blocks.0/attn/Constant_2" -> "381 /layers/layers.2/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"923 Constant_996" -> "369 /layers/layers.2/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"924 Constant_986" -> "337 /layers/layers.2/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"925 Constant_980" -> "320 /layers/layers.2/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"926 /layers/layers.2/blocks.0/attn/Constant" -> "306 /layers/layers.2/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"927 Transpose_6428" -> "276 /layers/layers.2/blocks.0/attn/qkv/MatMul" [label="[1152, 384]", style=solid];
-"928 Constant_26007" -> "262 /layers/layers.2/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"929 /layers/layers.2/blocks.0/Constant_3" -> "248 /layers/layers.2/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"930 /layers/layers.2/blocks.0/Constant_2" -> "234 /layers/layers.2/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"931 Constant_964" -> "223 /layers/layers.2/blocks.0/Transpose" [label="[6]", style=dashed];
-"932 /layers/layers.2/blocks.0/Constant_1" -> "214 /layers/layers.2/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"933 Constant_7326" -> "205 /layers/layers.2/blocks.0/norm1/Add_1" [label="[1, 1, 384]", style=solid];
-"934 Constant_7325" -> "197 /layers/layers.2/blocks.0/norm1/Mul" [label="[1, 1, 384]", style=solid];
-"935 Constant_943" -> "190 /layers/layers.2/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"936 Transpose_6424" -> "183 /layers/layers.1/downsample/reduction/MatMul" [label="[384, 768]", style=solid];
-"937 Constant_25995" -> "176 /layers/layers.1/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"938 Constant_7324" -> "170 /layers/layers.1/downsample/norm/Add_1" [label="[1, 1, 768]", style=solid];
-"939 Constant_7323" -> "163 /layers/layers.1/downsample/norm/Mul" [label="[1, 1, 768]", style=solid];
-"940 Constant_929" -> "155 /layers/layers.1/downsample/norm/Div" [label="[1]", style=dashed];
-"941 /layers/layers.1/downsample/Constant_25" -> "146 /layers/layers.1/downsample/Reshape_1" [label="[3]", style=dashed];
-"942 Constant_5391" -> "128 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"943 Constant_5388" -> "128 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"944 Constant_5385" -> "128 /layers/layers.1/downsample/Slice_5" [label="[3]", style=dashed];
-"945 Constant_5355" -> "116 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"946 Constant_5352" -> "116 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"947 Constant_5349" -> "116 /layers/layers.1/downsample/Slice_2" [label="[2]", style=dashed];
-"948 /layers/layers.1/downsample/Constant" -> "108 /layers/layers.1/downsample/Reshape" [label="[4]", style=dashed];
-"949 Transpose_6420" -> "171 /layers/layers.1/blocks.1/mlp/fc2/MatMul" [label="[192, 768]", style=solid];
-"950 Constant_25991" -> "164 /layers/layers.1/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"951 Transpose_6416" -> "139 /layers/layers.1/blocks.1/mlp/fc1/MatMul" [label="[768, 192]", style=solid];
-"952 Constant_25985" -> "129 /layers/layers.1/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"953 Constant_7320" -> "117 /layers/layers.1/blocks.1/norm2/Add_1" [label="[1, 1, 192]", style=solid];
-"954 Constant_7319" -> "109 /layers/layers.1/blocks.1/norm2/Mul" [label="[1, 1, 192]", style=solid];
-"955 Constant_864" -> "102 /layers/layers.1/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"956 /layers/layers.1/blocks.1/Constant_31" -> "446 /layers/layers.1/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"957 Constant_5319" -> "421 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"958 Constant_5316" -> "421 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"959 Constant_5313" -> "421 /layers/layers.1/blocks.1/Slice_7" [label="[3]", style=dashed];
-"960 Constant_5295" -> "397 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"961 Constant_5292" -> "397 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"962 Constant_5289" -> "397 /layers/layers.1/blocks.1/Slice_5" [label="[2]", style=dashed];
-"963 /layers/layers.1/blocks.1/Constant_18" -> "382 /layers/layers.1/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"964 Constant_811" -> "370 /layers/layers.1/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"965 /layers/layers.1/blocks.1/Constant_17" -> "353 /layers/layers.1/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"966 /layers/layers.1/blocks.1/Constant_16" -> "338 /layers/layers.1/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"967 Transpose_6412" -> "308 /layers/layers.1/blocks.1/attn/proj/MatMul" [label="[192, 192]", style=solid];
-"968 Constant_26013" -> "292 /layers/layers.1/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"969 /layers/layers.1/blocks.1/attn/Constant_4" -> "278 /layers/layers.1/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"970 Constant_795" -> "264 /layers/layers.1/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"971 Constant_776" -> "237 /layers/layers.1/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"972 Constant_770" -> "224 /layers/layers.1/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"973 /layers/layers.1/blocks.1/attn/Constant" -> "215 /layers/layers.1/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"974 Transpose_6409" -> "198 /layers/layers.1/blocks.1/attn/qkv/MatMul" [label="[576, 192]", style=solid];
-"975 Constant_25997" -> "191 /layers/layers.1/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"976 /layers/layers.1/blocks.1/Constant_15" -> "184 /layers/layers.1/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"977 /layers/layers.1/blocks.1/Constant_14" -> "178 /layers/layers.1/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"978 Constant_754" -> "172 /layers/layers.1/blocks.1/Transpose" [label="[6]", style=dashed];
-"979 /layers/layers.1/blocks.1/Constant_13" -> "165 /layers/layers.1/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"980 Constant_5271" -> "149 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"981 Constant_5268" -> "149 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"982 Constant_5265" -> "149 /layers/layers.1/blocks.1/Slice_3" [label="[3]", style=dashed];
-"983 Constant_5247" -> "131 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"984 Constant_5244" -> "131 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"985 Constant_5241" -> "131 /layers/layers.1/blocks.1/Slice_1" [label="[2]", style=dashed];
-"986 /layers/layers.1/blocks.1/Constant" -> "118 /layers/layers.1/blocks.1/Reshape" [label="[4]", style=dashed];
-"987 Constant_7315" -> "110 /layers/layers.1/blocks.1/norm1/Add_1" [label="[1, 1, 192]", style=solid];
-"988 Constant_7314" -> "103 /layers/layers.1/blocks.1/norm1/Mul" [label="[1, 1, 192]", style=solid];
-"989 Constant_691" -> "96 /layers/layers.1/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"990 Transpose_6405" -> "158 /layers/layers.1/blocks.0/mlp/fc2/MatMul" [label="[192, 768]", style=solid];
-"991 Constant_25987" -> "150 /layers/layers.1/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 768]", style=solid];
-"992 Transpose_6401" -> "119 /layers/layers.1/blocks.0/mlp/fc1/MatMul" [label="[768, 192]", style=solid];
-"993 Constant_25983" -> "111 /layers/layers.1/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"994 Constant_7311" -> "104 /layers/layers.1/blocks.0/norm2/Add_1" [label="[1, 1, 192]", style=solid];
-"995 Constant_7310" -> "97 /layers/layers.1/blocks.0/norm2/Mul" [label="[1, 1, 192]", style=solid];
-"996 Constant_665" -> "90 /layers/layers.1/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"997 /layers/layers.1/blocks.0/Constant_7" -> "293 /layers/layers.1/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"998 /layers/layers.1/blocks.0/Constant_6" -> "279 /layers/layers.1/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"999 Constant_654" -> "265 /layers/layers.1/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"1000 /layers/layers.1/blocks.0/Constant_5" -> "252 /layers/layers.1/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"1001 /layers/layers.1/blocks.0/Constant_4" -> "238 /layers/layers.1/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"1002 Transpose_6397" -> "216 /layers/layers.1/blocks.0/attn/proj/MatMul" [label="[192, 192]", style=solid];
-"1003 Constant_25999" -> "207 /layers/layers.1/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"1004 /layers/layers.1/blocks.0/attn/Constant_2" -> "200 /layers/layers.1/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"1005 Constant_638" -> "193 /layers/layers.1/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"1006 Constant_628" -> "181 /layers/layers.1/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"1007 Constant_622" -> "173 /layers/layers.1/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"1008 /layers/layers.1/blocks.0/attn/Constant" -> "167 /layers/layers.1/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"1009 Transpose_6394" -> "151 /layers/layers.1/blocks.0/attn/qkv/MatMul" [label="[576, 192]", style=solid];
-"1010 Constant_25989" -> "142 /layers/layers.1/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 192]", style=solid];
-"1011 /layers/layers.1/blocks.0/Constant_3" -> "133 /layers/layers.1/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"1012 /layers/layers.1/blocks.0/Constant_2" -> "120 /layers/layers.1/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"1013 Constant_606" -> "112 /layers/layers.1/blocks.0/Transpose" [label="[6]", style=dashed];
-"1014 /layers/layers.1/blocks.0/Constant_1" -> "105 /layers/layers.1/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"1015 Constant_7306" -> "98 /layers/layers.1/blocks.0/norm1/Add_1" [label="[1, 1, 192]", style=solid];
-"1016 Constant_7305" -> "91 /layers/layers.1/blocks.0/norm1/Mul" [label="[1, 1, 192]", style=solid];
-"1017 Constant_585" -> "85 /layers/layers.1/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"1018 Transpose_6390" -> "79 /layers/layers.0/downsample/reduction/MatMul" [label="[192, 384]", style=solid];
-"1019 Constant_25977" -> "73 /layers/layers.0/downsample/norm/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"1020 Constant_7304" -> "69 /layers/layers.0/downsample/norm/Add_1" [label="[1, 1, 384]", style=solid];
-"1021 Constant_7303" -> "64 /layers/layers.0/downsample/norm/Mul" [label="[1, 1, 384]", style=solid];
-"1022 Constant_571" -> "59 /layers/layers.0/downsample/norm/Div" [label="[1]", style=dashed];
-"1023 /layers/layers.0/downsample/Constant_25" -> "53 /layers/layers.0/downsample/Reshape_1" [label="[3]", style=dashed];
-"1024 Constant_5223" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1025 Constant_5220" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1026 Constant_5217" -> "42 /layers/layers.0/downsample/Slice_5" [label="[3]", style=dashed];
-"1027 Constant_5187" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1028 Constant_5184" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1029 Constant_5181" -> "34 /layers/layers.0/downsample/Slice_2" [label="[2]", style=dashed];
-"1030 /layers/layers.0/downsample/Constant" -> "28 /layers/layers.0/downsample/Reshape" [label="[4]", style=dashed];
-"1031 Transpose_6386" -> "70 /layers/layers.0/blocks.1/mlp/fc2/MatMul" [label="[96, 384]", style=solid];
-"1032 Constant_25975" -> "65 /layers/layers.0/blocks.1/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"1033 Transpose_6382" -> "49 /layers/layers.0/blocks.1/mlp/fc1/MatMul" [label="[384, 96]", style=solid];
-"1034 Constant_25969" -> "43 /layers/layers.0/blocks.1/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1035 Constant_7300" -> "35 /layers/layers.0/blocks.1/norm2/Add_1" [label="[1, 1, 96]", style=solid];
-"1036 Constant_7299" -> "29 /layers/layers.0/blocks.1/norm2/Mul" [label="[1, 1, 96]", style=solid];
-"1037 Constant_506" -> "24 /layers/layers.0/blocks.1/norm2/Div" [label="[1]", style=dashed];
-"1038 /layers/layers.0/blocks.1/Constant_31" -> "253 /layers/layers.0/blocks.1/Reshape_7" [label="[3]", style=dashed];
-"1039 Constant_5151" -> "227 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1040 Constant_5148" -> "227 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1041 Constant_5145" -> "227 /layers/layers.0/blocks.1/Slice_7" [label="[3]", style=dashed];
-"1042 Constant_5127" -> "209 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1043 Constant_5124" -> "209 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1044 Constant_5121" -> "209 /layers/layers.0/blocks.1/Slice_5" [label="[2]", style=dashed];
-"1045 /layers/layers.0/blocks.1/Constant_18" -> "201 /layers/layers.0/blocks.1/Reshape_6" [label="[4]", style=dashed];
-"1046 Constant_453" -> "194 /layers/layers.0/blocks.1/Transpose_1" [label="[6]", style=dashed];
-"1047 /layers/layers.0/blocks.1/Constant_17" -> "188 /layers/layers.0/blocks.1/Reshape_5" [label="[6]", style=dashed];
-"1048 /layers/layers.0/blocks.1/Constant_16" -> "182 /layers/layers.0/blocks.1/Reshape_4" [label="[4]", style=dashed];
-"1049 Transpose_6378" -> "169 /layers/layers.0/blocks.1/attn/proj/MatMul" [label="[96, 96]", style=solid];
-"1050 Constant_25993" -> "161 /layers/layers.0/blocks.1/attn/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1051 /layers/layers.0/blocks.1/attn/Constant_4" -> "153 /layers/layers.0/blocks.1/attn/Reshape_3" [label="[3]", style=dashed];
-"1052 Constant_437" -> "144 /layers/layers.0/blocks.1/attn/Transpose_2" [label="[4]", style=dashed];
-"1053 Constant_418" -> "123 /layers/layers.0/blocks.1/attn/Gather_2" [label="[]", style=dashed];
-"1054 Constant_412" -> "113 /layers/layers.0/blocks.1/attn/Transpose" [label="[5]", style=dashed];
-"1055 /layers/layers.0/blocks.1/attn/Constant" -> "106 /layers/layers.0/blocks.1/attn/Reshape" [label="[5]", style=dashed];
-"1056 Transpose_6375" -> "92 /layers/layers.0/blocks.1/attn/qkv/MatMul" [label="[288, 96]", style=solid];
-"1057 Constant_25979" -> "86 /layers/layers.0/blocks.1/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1058 /layers/layers.0/blocks.1/Constant_15" -> "80 /layers/layers.0/blocks.1/Reshape_3" [label="[3]", style=dashed];
-"1059 /layers/layers.0/blocks.1/Constant_14" -> "75 /layers/layers.0/blocks.1/Reshape_2" [label="[4]", style=dashed];
-"1060 Constant_396" -> "71 /layers/layers.0/blocks.1/Transpose" [label="[6]", style=dashed];
-"1061 /layers/layers.0/blocks.1/Constant_13" -> "66 /layers/layers.0/blocks.1/Reshape_1" [label="[6]", style=dashed];
-"1062 Constant_5103" -> "56 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1063 Constant_5100" -> "56 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1064 Constant_5097" -> "56 /layers/layers.0/blocks.1/Slice_3" [label="[3]", style=dashed];
-"1065 Constant_5079" -> "45 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1066 Constant_5076" -> "45 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1067 Constant_5073" -> "45 /layers/layers.0/blocks.1/Slice_1" [label="[2]", style=dashed];
-"1068 /layers/layers.0/blocks.1/Constant" -> "36 /layers/layers.0/blocks.1/Reshape" [label="[4]", style=dashed];
-"1069 Constant_7295" -> "30 /layers/layers.0/blocks.1/norm1/Add_1" [label="[1, 1, 96]", style=solid];
-"1070 Constant_7294" -> "25 /layers/layers.0/blocks.1/norm1/Mul" [label="[1, 1, 96]", style=solid];
-"1071 Constant_333" -> "20 /layers/layers.0/blocks.1/norm1/Div" [label="[1]", style=dashed];
-"1072 Transpose_6371" -> "62 /layers/layers.0/blocks.0/mlp/fc2/MatMul" [label="[96, 384]", style=solid];
-"1073 Constant_25971" -> "57 /layers/layers.0/blocks.0/mlp/act/Mul_1_0_0/nncf_smooth_quant" [label="[1, 1, 384]", style=solid];
-"1074 Transpose_6367" -> "37 /layers/layers.0/blocks.0/mlp/fc1/MatMul" [label="[384, 96]", style=solid];
-"1075 Constant_25967" -> "31 /layers/layers.0/blocks.0/norm2/Add_1_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1076 Constant_7291" -> "26 /layers/layers.0/blocks.0/norm2/Add_1" [label="[1, 1, 96]", style=solid];
-"1077 Constant_7290" -> "21 /layers/layers.0/blocks.0/norm2/Mul" [label="[1, 1, 96]", style=solid];
-"1078 Constant_307" -> "17 /layers/layers.0/blocks.0/norm2/Div" [label="[1]", style=dashed];
-"1079 /layers/layers.0/blocks.0/Constant_8" -> "162 /layers/layers.0/blocks.0/Reshape_7" [label="[3]", style=dashed];
-"1080 /layers/layers.0/blocks.0/Constant_7" -> "154 /layers/layers.0/blocks.0/Reshape_6" [label="[4]", style=dashed];
-"1081 Constant_296" -> "145 /layers/layers.0/blocks.0/Transpose_1" [label="[6]", style=dashed];
-"1082 /layers/layers.0/blocks.0/Constant_6" -> "137 /layers/layers.0/blocks.0/Reshape_5" [label="[6]", style=dashed];
-"1083 /layers/layers.0/blocks.0/Constant_5" -> "124 /layers/layers.0/blocks.0/Reshape_4" [label="[4]", style=dashed];
-"1084 Transpose_6363" -> "107 /layers/layers.0/blocks.0/attn/proj/MatMul" [label="[96, 96]", style=solid];
-"1085 Constant_25981" -> "100 /layers/layers.0/blocks.0/attn/Reshape_1_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1086 /layers/layers.0/blocks.0/attn/Constant_2" -> "94 /layers/layers.0/blocks.0/attn/Reshape_1" [label="[3]", style=dashed];
-"1087 Constant_280" -> "88 /layers/layers.0/blocks.0/attn/Transpose_2" [label="[4]", style=dashed];
-"1088 Constant_270" -> "78 /layers/layers.0/blocks.0/attn/Gather_2" [label="[]", style=dashed];
-"1089 Constant_264" -> "72 /layers/layers.0/blocks.0/attn/Transpose" [label="[5]", style=dashed];
-"1090 /layers/layers.0/blocks.0/attn/Constant" -> "68 /layers/layers.0/blocks.0/attn/Reshape" [label="[5]", style=dashed];
-"1091 Transpose_6360" -> "58 /layers/layers.0/blocks.0/attn/qkv/MatMul" [label="[288, 96]", style=solid];
-"1092 Constant_25973" -> "52 /layers/layers.0/blocks.0/Reshape_3_0_0/nncf_smooth_quant" [label="[1, 1, 96]", style=solid];
-"1093 /layers/layers.0/blocks.0/Constant_4" -> "47 /layers/layers.0/blocks.0/Reshape_3" [label="[3]", style=dashed];
-"1094 /layers/layers.0/blocks.0/Constant_3" -> "38 /layers/layers.0/blocks.0/Reshape_2" [label="[4]", style=dashed];
-"1095 Constant_248" -> "32 /layers/layers.0/blocks.0/Transpose" [label="[6]", style=dashed];
-"1096 /layers/layers.0/blocks.0/Constant_2" -> "27 /layers/layers.0/blocks.0/Reshape_1" [label="[6]", style=dashed];
-"1097 Constant_7286" -> "22 /layers/layers.0/blocks.0/norm1/Add_1" [label="[1, 1, 96]", style=solid];
-"1098 Constant_7285" -> "18 /layers/layers.0/blocks.0/norm1/Mul" [label="[1, 1, 96]", style=solid];
-"1099 Constant_227" -> "15 /layers/layers.0/blocks.0/norm1/Div" [label="[1]", style=dashed];
-"1100 Constant_7284" -> "13 /patch_embed/norm/Add_1" [label="[1, 1, 96]", style=solid];
-"1101 Constant_7283" -> "12 /patch_embed/norm/Mul" [label="[1, 1, 96]", style=solid];
-"1102 Constant_213" -> "10 /patch_embed/norm/Div" [label="[1]", style=dashed];
-"1103 Constant_211" -> "8 /patch_embed/Transpose" [label="[3]", style=dashed];
-"1104 /patch_embed/Constant_4" -> "11 /patch_embed/Concat" [label="[1]", style=dashed];
-"1105 Broadcast_201" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1106 /patch_embed/Constant_3" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1107 /patch_embed/Constant_2" -> "9 /patch_embed/Slice" [label="[1]", style=dashed];
-"1108 Reshape_190" -> "5 /patch_embed/proj/Conv" [label="[1, 96, 1, 1]", style=solid];
-"1109 Gather_7282" -> "4 /patch_embed/proj/Conv/WithoutBiases" [label="[96, 3, 4, 4]", style=solid];
-"1110 Constant_25965" -> "3 Divide_2169_0_0/nncf_smooth_quant" [label="[1, 3, 1, 1]", style=solid];
-"1111 Gather_7279" -> "2 Divide_2169" [label="[1, 3, 1, 1]", style=solid];
-"1112 Gather_7276" -> "1 Multiply_6579" [label="[1, 3, 1, 1]", style=solid];
-"1113 Constant_7287" -> "63 /layers/layers.0/blocks.0/attn/qkv/Add" [label="[1, 1, 288]", style=solid];
-"1114 onnx^^Add_2244" -> "87 /layers/layers.0/blocks.0/attn/Add" [label="[1, 3, 49, 49]", style=solid];
-"1115 Constant_268" -> "77 /layers/layers.0/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "77 /layers/layers.0/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "122 /layers/layers.0/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "180 /layers/layers.1/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "236 /layers/layers.1/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "336 /layers/layers.2/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "392 /layers/layers.2/blocks.2/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "430 /layers/layers.2/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "438 /layers/layers.2/blocks.4/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "474 /layers/layers.2/blocks.3/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "521 /layers/layers.2/blocks.5/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "594 /layers/layers.3/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1116 /patch_embed/proj/Constant" -> "608 /layers/layers.3/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1117 Constant_7288" -> "81 /layers/layers.0/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1118 Constant_266" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "76 /layers/layers.0/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "121 /layers/layers.0/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "179 /layers/layers.1/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "235 /layers/layers.1/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "335 /layers/layers.2/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "391 /layers/layers.2/blocks.2/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "429 /layers/layers.2/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "437 /layers/layers.2/blocks.4/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "473 /layers/layers.2/blocks.3/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "520 /layers/layers.2/blocks.5/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "593 /layers/layers.3/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1119 /layers/layers.0/blocks.0/Constant" -> "607 /layers/layers.3/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1120 Constant_7289" -> "114 /layers/layers.0/blocks.0/attn/proj/Add" [label="[1, 1, 96]", style=solid];
-"1121 Constant_7292" -> "46 /layers/layers.0/blocks.0/mlp/fc1/Add" [label="[1, 1, 384]", style=solid];
-"1122 Constant_7293" -> "67 /layers/layers.0/blocks.0/mlp/fc2/Add" [label="[1, 1, 96]", style=solid];
-"1123 Constant_5067" -> "44 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1124 Constant_5064" -> "44 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1125 Constant_5061" -> "44 /layers/layers.0/blocks.1/Slice" [label="[2]", style=dashed];
-"1126 Constant_5091" -> "55 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1127 Constant_5088" -> "55 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1128 Constant_5085" -> "55 /layers/layers.0/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1129 Constant_7296" -> "99 /layers/layers.0/blocks.1/attn/qkv/Add" [label="[1, 1, 288]", style=solid];
-"1130 /layers/layers.0/blocks.1/attn/Constant_3" -> "168 /layers/layers.0/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1131 onnx^^Add_2301" -> "160 /layers/layers.0/blocks.1/attn/Add_1" [label="[1, 64, 1, 49, 49]", style=solid];
-"1132 /layers/layers.0/blocks.1/attn/Constant_2" -> "152 /layers/layers.0/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1133 onnx^^Add_2293" -> "143 /layers/layers.0/blocks.1/attn/Add" [label="[1, 3, 49, 49]", style=solid];
-"1134 Constant_416" -> "122 /layers/layers.0/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1135 Constant_7297" -> "134 /layers/layers.0/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1136 Constant_414" -> "121 /layers/layers.0/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1137 Constant_7298" -> "175 /layers/layers.0/blocks.1/attn/proj/Add" [label="[1, 1, 96]", style=solid];
-"1138 Constant_5115" -> "208 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1139 Constant_5112" -> "208 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1140 Constant_5109" -> "208 /layers/layers.0/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1141 Constant_5139" -> "226 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1142 Constant_5136" -> "226 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1143 Constant_5133" -> "226 /layers/layers.0/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1144 Constant_7301" -> "54 /layers/layers.0/blocks.1/mlp/fc1/Add" [label="[1, 1, 384]", style=solid];
-"1145 Constant_7302" -> "74 /layers/layers.0/blocks.1/mlp/fc2/Add" [label="[1, 1, 96]", style=solid];
-"1146 Constant_5211" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1147 Constant_5208" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1148 Constant_5205" -> "40 /layers/layers.0/downsample/Slice_4" [label="[3]", style=dashed];
-"1149 Constant_5163" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1150 Constant_5160" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1151 Constant_5157" -> "33 /layers/layers.0/downsample/Slice" [label="[2]", style=dashed];
-"1152 Constant_5199" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1153 Constant_5196" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1154 Constant_5193" -> "41 /layers/layers.0/downsample/Slice_3" [label="[3]", style=dashed];
-"1155 Constant_5175" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1156 Constant_5172" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1157 Constant_5169" -> "39 /layers/layers.0/downsample/Slice_1" [label="[3]", style=dashed];
-"1158 Constant_7307" -> "159 /layers/layers.1/blocks.0/attn/qkv/Add" [label="[1, 1, 576]", style=solid];
-"1159 onnx^^Add_2389" -> "192 /layers/layers.1/blocks.0/attn/Add" [label="[1, 6, 49, 49]", style=solid];
-"1160 Constant_626" -> "180 /layers/layers.1/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1161 Constant_7308" -> "185 /layers/layers.1/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1162 Constant_624" -> "179 /layers/layers.1/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1163 Constant_7309" -> "225 /layers/layers.1/blocks.0/attn/proj/Add" [label="[1, 1, 192]", style=solid];
-"1164 Constant_7312" -> "132 /layers/layers.1/blocks.0/mlp/fc1/Add" [label="[1, 1, 768]", style=solid];
-"1165 Constant_7313" -> "166 /layers/layers.1/blocks.0/mlp/fc2/Add" [label="[1, 1, 192]", style=solid];
-"1166 Constant_5235" -> "130 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1167 Constant_5232" -> "130 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1168 Constant_5229" -> "130 /layers/layers.1/blocks.1/Slice" [label="[2]", style=dashed];
-"1169 Constant_5259" -> "148 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1170 Constant_5256" -> "148 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1171 Constant_5253" -> "148 /layers/layers.1/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1172 Constant_7316" -> "206 /layers/layers.1/blocks.1/attn/qkv/Add" [label="[1, 1, 576]", style=solid];
-"1173 /layers/layers.1/blocks.1/attn/Constant_3" -> "307 /layers/layers.1/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1174 onnx^^Add_2446" -> "291 /layers/layers.1/blocks.1/attn/Add_1" [label="[1, 16, 1, 49, 49]", style=solid];
-"1175 /layers/layers.1/blocks.1/attn/Constant_2" -> "277 /layers/layers.1/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1176 onnx^^Add_2438" -> "263 /layers/layers.1/blocks.1/attn/Add" [label="[1, 6, 49, 49]", style=solid];
-"1177 Constant_774" -> "236 /layers/layers.1/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1178 Constant_7317" -> "249 /layers/layers.1/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1179 Constant_772" -> "235 /layers/layers.1/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1180 Constant_7318" -> "322 /layers/layers.1/blocks.1/attn/proj/Add" [label="[1, 1, 192]", style=solid];
-"1181 Constant_5283" -> "396 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1182 Constant_5280" -> "396 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1183 Constant_5277" -> "396 /layers/layers.1/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1184 Constant_5307" -> "420 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1185 Constant_5304" -> "420 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1186 Constant_5301" -> "420 /layers/layers.1/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1187 Constant_7321" -> "147 /layers/layers.1/blocks.1/mlp/fc1/Add" [label="[1, 1, 768]", style=solid];
-"1188 Constant_7322" -> "177 /layers/layers.1/blocks.1/mlp/fc2/Add" [label="[1, 1, 192]", style=solid];
-"1189 Constant_5379" -> "126 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1190 Constant_5376" -> "126 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1191 Constant_5373" -> "126 /layers/layers.1/downsample/Slice_4" [label="[3]", style=dashed];
-"1192 Constant_5331" -> "115 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1193 Constant_5328" -> "115 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1194 Constant_5325" -> "115 /layers/layers.1/downsample/Slice" [label="[2]", style=dashed];
-"1195 Constant_5367" -> "127 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1196 Constant_5364" -> "127 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1197 Constant_5361" -> "127 /layers/layers.1/downsample/Slice_3" [label="[3]", style=dashed];
-"1198 Constant_5343" -> "125 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1199 Constant_5340" -> "125 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1200 Constant_5337" -> "125 /layers/layers.1/downsample/Slice_1" [label="[3]", style=dashed];
-"1201 Constant_7327" -> "290 /layers/layers.2/blocks.0/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1202 onnx^^Add_2534" -> "368 /layers/layers.2/blocks.0/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1203 Constant_984" -> "336 /layers/layers.2/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1204 Constant_7328" -> "350 /layers/layers.2/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1205 Constant_982" -> "335 /layers/layers.2/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1206 Constant_7329" -> "419 /layers/layers.2/blocks.0/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1207 Constant_7332" -> "247 /layers/layers.2/blocks.0/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1208 Constant_7333" -> "305 /layers/layers.2/blocks.0/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1209 Constant_5403" -> "245 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1210 Constant_5400" -> "245 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1211 Constant_5397" -> "245 /layers/layers.2/blocks.1/Slice" [label="[2]", style=dashed];
-"1212 Constant_5427" -> "273 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1213 Constant_5424" -> "273 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1214 Constant_5421" -> "273 /layers/layers.2/blocks.1/Slice_2" [label="[3]", style=dashed];
-"1215 Constant_7336" -> "394 /layers/layers.2/blocks.1/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1216 /layers/layers.2/blocks.1/attn/Constant_3" -> "490 /layers/layers.2/blocks.1/attn/Reshape_2" [label="[4]", style=dashed];
-"1217 onnx^^Add_2702" -> "477 /layers/layers.2/blocks.1/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1217 onnx^^Add_2702" -> "524 /layers/layers.2/blocks.3/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1217 onnx^^Add_2702" -> "567 /layers/layers.2/blocks.5/attn/Add_1" [label="[1, 4, 1, 49, 49]", style=solid];
-"1218 /layers/layers.2/blocks.1/attn/Constant_2" -> "464 /layers/layers.2/blocks.1/attn/Reshape_1" [label="[5]", style=dashed];
-"1219 onnx^^Add_2583" -> "454 /layers/layers.2/blocks.1/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1220 Constant_1132" -> "430 /layers/layers.2/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1221 Constant_7337" -> "442 /layers/layers.2/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1222 Constant_1130" -> "429 /layers/layers.2/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1223 Constant_7338" -> "503 /layers/layers.2/blocks.1/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1224 Constant_5451" -> "560 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1225 Constant_5448" -> "560 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1226 Constant_5445" -> "560 /layers/layers.2/blocks.1/Slice_4" [label="[2]", style=dashed];
-"1227 Constant_5475" -> "580 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1228 Constant_5472" -> "580 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1229 Constant_5469" -> "580 /layers/layers.2/blocks.1/Slice_6" [label="[3]", style=dashed];
-"1230 Constant_7341" -> "272 /layers/layers.2/blocks.1/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1231 Constant_7342" -> "333 /layers/layers.2/blocks.1/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1232 Constant_7345" -> "348 /layers/layers.2/blocks.2/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1233 onnx^^Add_2645" -> "416 /layers/layers.2/blocks.2/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1234 Constant_1289" -> "392 /layers/layers.2/blocks.2/attn/Gather_1" [label="[]", style=dashed];
-"1235 Constant_7346" -> "404 /layers/layers.2/blocks.2/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1236 Constant_1287" -> "391 /layers/layers.2/blocks.2/attn/Gather" [label="[]", style=dashed];
-"1237 Constant_7347" -> "463 /layers/layers.2/blocks.2/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1238 Constant_7350" -> "301 /layers/layers.2/blocks.2/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1239 Constant_7351" -> "365 /layers/layers.2/blocks.2/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1240 Constant_5499" -> "299 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1241 Constant_5496" -> "299 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1242 Constant_5493" -> "299 /layers/layers.2/blocks.3/Slice" [label="[2]", style=dashed];
-"1243 Constant_5523" -> "329 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1244 Constant_5520" -> "329 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1245 Constant_5517" -> "329 /layers/layers.2/blocks.3/Slice_2" [label="[3]", style=dashed];
-"1246 Constant_7354" -> "440 /layers/layers.2/blocks.3/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1247 /layers/layers.2/blocks.3/attn/Constant_3" -> "537 /layers/layers.2/blocks.3/attn/Reshape_2" [label="[4]", style=dashed];
-"1248 /layers/layers.2/blocks.3/attn/Constant_2" -> "511 /layers/layers.2/blocks.3/attn/Reshape_1" [label="[5]", style=dashed];
-"1249 onnx^^Add_2694" -> "499 /layers/layers.2/blocks.3/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1250 Constant_1437" -> "474 /layers/layers.2/blocks.3/attn/Gather_1" [label="[]", style=dashed];
-"1251 Constant_7355" -> "486 /layers/layers.2/blocks.3/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1252 Constant_1435" -> "473 /layers/layers.2/blocks.3/attn/Gather" [label="[]", style=dashed];
-"1253 Constant_7356" -> "549 /layers/layers.2/blocks.3/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1254 Constant_5547" -> "597 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1255 Constant_5544" -> "597 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1256 Constant_5541" -> "597 /layers/layers.2/blocks.3/Slice_4" [label="[2]", style=dashed];
-"1257 Constant_5571" -> "613 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1258 Constant_5568" -> "613 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1259 Constant_5565" -> "613 /layers/layers.2/blocks.3/Slice_6" [label="[3]", style=dashed];
-"1260 Constant_7359" -> "328 /layers/layers.2/blocks.3/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1261 Constant_7360" -> "389 /layers/layers.2/blocks.3/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1262 Constant_7363" -> "402 /layers/layers.2/blocks.4/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1263 onnx^^Add_2756" -> "460 /layers/layers.2/blocks.4/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1264 Constant_1594" -> "438 /layers/layers.2/blocks.4/attn/Gather_1" [label="[]", style=dashed];
-"1265 Constant_7364" -> "449 /layers/layers.2/blocks.4/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1266 Constant_1592" -> "437 /layers/layers.2/blocks.4/attn/Gather" [label="[]", style=dashed];
-"1267 Constant_7365" -> "510 /layers/layers.2/blocks.4/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1268 Constant_7368" -> "361 /layers/layers.2/blocks.4/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1269 Constant_7369" -> "413 /layers/layers.2/blocks.4/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1270 Constant_5595" -> "359 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1271 Constant_5592" -> "359 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1272 Constant_5589" -> "359 /layers/layers.2/blocks.5/Slice" [label="[2]", style=dashed];
-"1273 Constant_5619" -> "385 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1274 Constant_5616" -> "385 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1275 Constant_5613" -> "385 /layers/layers.2/blocks.5/Slice_2" [label="[3]", style=dashed];
-"1276 Constant_7372" -> "484 /layers/layers.2/blocks.5/attn/qkv/Add" [label="[1, 1, 1152]", style=solid];
-"1277 /layers/layers.2/blocks.5/attn/Constant_3" -> "577 /layers/layers.2/blocks.5/attn/Reshape_2" [label="[4]", style=dashed];
-"1278 /layers/layers.2/blocks.5/attn/Constant_2" -> "556 /layers/layers.2/blocks.5/attn/Reshape_1" [label="[5]", style=dashed];
-"1279 onnx^^Add_2805" -> "545 /layers/layers.2/blocks.5/attn/Add" [label="[1, 12, 49, 49]", style=solid];
-"1280 Constant_1742" -> "521 /layers/layers.2/blocks.5/attn/Gather_1" [label="[]", style=dashed];
-"1281 Constant_7373" -> "533 /layers/layers.2/blocks.5/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1282 Constant_1740" -> "520 /layers/layers.2/blocks.5/attn/Gather" [label="[]", style=dashed];
-"1283 Constant_7374" -> "587 /layers/layers.2/blocks.5/attn/proj/Add" [label="[1, 1, 384]", style=solid];
-"1284 Constant_5643" -> "625 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1285 Constant_5640" -> "625 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1286 Constant_5637" -> "625 /layers/layers.2/blocks.5/Slice_4" [label="[2]", style=dashed];
-"1287 Constant_5667" -> "634 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1288 Constant_5664" -> "634 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1289 Constant_5661" -> "634 /layers/layers.2/blocks.5/Slice_6" [label="[3]", style=dashed];
-"1290 Constant_7377" -> "384 /layers/layers.2/blocks.5/mlp/fc1/Add" [label="[1, 1, 1536]", style=solid];
-"1291 Constant_7378" -> "435 /layers/layers.2/blocks.5/mlp/fc2/Add" [label="[1, 1, 384]", style=solid];
-"1292 Constant_5739" -> "355 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1293 Constant_5736" -> "355 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1294 Constant_5733" -> "355 /layers/layers.2/downsample/Slice_4" [label="[3]", style=dashed];
-"1295 Constant_5691" -> "339 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1296 Constant_5688" -> "339 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1297 Constant_5685" -> "339 /layers/layers.2/downsample/Slice" [label="[2]", style=dashed];
-"1298 Constant_5727" -> "356 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1299 Constant_5724" -> "356 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1300 Constant_5721" -> "356 /layers/layers.2/downsample/Slice_3" [label="[3]", style=dashed];
-"1301 Constant_5703" -> "354 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1302 Constant_5700" -> "354 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1303 Constant_5697" -> "354 /layers/layers.2/downsample/Slice_1" [label="[3]", style=dashed];
-"1304 Constant_7383" -> "566 /layers/layers.3/blocks.0/attn/qkv/Add" [label="[1, 1, 2304]", style=solid];
-"1305 onnx^^Add_2901" -> "610 /layers/layers.3/blocks.0/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"1306 Constant_1952" -> "594 /layers/layers.3/blocks.0/attn/Gather_1" [label="[]", style=dashed];
-"1307 Constant_7384" -> "602 /layers/layers.3/blocks.0/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1308 Constant_1950" -> "593 /layers/layers.3/blocks.0/attn/Gather" [label="[]", style=dashed];
-"1309 Constant_7385" -> "633 /layers/layers.3/blocks.0/attn/proj/Add" [label="[1, 1, 768]", style=solid];
-"1310 Constant_7388" -> "531 /layers/layers.3/blocks.0/mlp/fc1/Add" [label="[1, 1, 3072]", style=solid];
-"1311 Constant_7389" -> "575 /layers/layers.3/blocks.0/mlp/fc2/Add" [label="[1, 1, 768]", style=solid];
-"1312 Constant_7392" -> "584 /layers/layers.3/blocks.1/attn/qkv/Add" [label="[1, 1, 2304]", style=solid];
-"1313 onnx^^Add_2950" -> "622 /layers/layers.3/blocks.1/attn/Add" [label="[1, 24, 49, 49]", style=solid];
-"1314 Constant_2058" -> "608 /layers/layers.3/blocks.1/attn/Gather_1" [label="[]", style=dashed];
-"1315 Constant_7393" -> "615 /layers/layers.3/blocks.1/attn/Mul" [label="[1, 1, 1, 1]", style=solid];
-"1316 Constant_2056" -> "607 /layers/layers.3/blocks.1/attn/Gather" [label="[]", style=dashed];
-"1317 Constant_7394" -> "639 /layers/layers.3/blocks.1/attn/proj/Add" [label="[1, 1, 768]", style=solid];
-"1318 Constant_7397" -> "552 /layers/layers.3/blocks.1/mlp/fc1/Add" [label="[1, 1, 3072]", style=solid];
-"1319 Constant_7398" -> "591 /layers/layers.3/blocks.1/mlp/fc2/Add" [label="[1, 1, 768]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_graphs/quantized/yolo-v4-tiny-tf_performance.dot b/tests/openvino/native/data/2023.1/reference_graphs/quantized/yolo-v4-tiny-tf_performance.dot
deleted file mode 100644
index 91280c60741..00000000000
--- a/tests/openvino/native/data/2023.1/reference_graphs/quantized/yolo-v4-tiny-tf_performance.dot
+++ /dev/null
@@ -1,749 +0,0 @@
-strict digraph {
-"0 image_input" [id=0, type=Parameter];
-"1 image_input/fq_output_0" [id=1, type=FakeQuantize];
-"2 Divide_2366" [id=2, type=Transpose];
-"3 Multiply_3699" [id=3, type=Convolution];
-"4 Transpose_1171" [id=4, type=Add];
-"5 Transpose_1177" [id=5, type=PRelu];
-"6 Transpose_1177/fq_output_0" [id=6, type=FakeQuantize];
-"7 Multiply_3713" [id=7, type=Convolution];
-"8 Transpose_1228" [id=8, type=Add];
-"9 Transpose_1234" [id=9, type=PRelu];
-"10 Transpose_1234/fq_output_0" [id=10, type=FakeQuantize];
-"11 Multiply_3727" [id=11, type=Convolution];
-"12 Transpose_1258" [id=12, type=Add];
-"13 Transpose_1264" [id=13, type=PRelu];
-"14 Transpose_1264/fq_output_0" [id=14, type=FakeQuantize];
-"15 Transpose_1367" [id=15, type=Concat];
-"16 group_route_3/split" [id=16, type=Split];
-"17 MaxPool_307" [id=17, type=MaxPool];
-"18 Multiply_3741" [id=18, type=Convolution];
-"19 Multiply_3783" [id=19, type=Convolution];
-"20 Transpose_1293" [id=20, type=Add];
-"21 Transpose_1391" [id=21, type=Add];
-"22 Transpose_1299" [id=22, type=PRelu];
-"23 Transpose_1397" [id=23, type=PRelu];
-"24 Transpose_1299/fq_output_0" [id=24, type=FakeQuantize];
-"25 Transpose_1397/fq_output_0" [id=25, type=FakeQuantize];
-"26 Multiply_3755" [id=26, type=Convolution];
-"27 Transpose_1333" [id=27, type=Concat];
-"28 Transpose_1500" [id=28, type=Concat];
-"29 group_route_11/split" [id=29, type=Split];
-"30 Transpose_1323" [id=30, type=Add];
-"31 Multiply_3769" [id=31, type=Convolution];
-"32 MaxPool_433" [id=32, type=MaxPool];
-"33 Multiply_3797" [id=33, type=Convolution];
-"34 Transpose_1329" [id=34, type=PRelu];
-"35 Transpose_1357" [id=35, type=Add];
-"36 Multiply_3839" [id=36, type=Convolution];
-"37 Transpose_1426" [id=37, type=Add];
-"38 Transpose_1329/fq_output_0" [id=38, type=FakeQuantize];
-"39 Transpose_1363" [id=39, type=PRelu];
-"40 Transpose_1524" [id=40, type=Add];
-"41 Transpose_1432" [id=41, type=PRelu];
-"42 Transpose_1363/fq_output_0" [id=42, type=FakeQuantize];
-"43 Transpose_1530" [id=43, type=PRelu];
-"44 Transpose_1432/fq_output_0" [id=44, type=FakeQuantize];
-"45 Transpose_1530/fq_output_0" [id=45, type=FakeQuantize];
-"46 Multiply_3811" [id=46, type=Convolution];
-"47 Transpose_1466" [id=47, type=Concat];
-"48 Transpose_1633" [id=48, type=Concat];
-"49 group_route_19/split" [id=49, type=Split];
-"50 Transpose_1456" [id=50, type=Add];
-"51 Multiply_3825" [id=51, type=Convolution];
-"52 MaxPool_579" [id=52, type=MaxPool];
-"53 Multiply_3853" [id=53, type=Convolution];
-"54 Transpose_1462" [id=54, type=PRelu];
-"55 Transpose_1490" [id=55, type=Add];
-"56 Multiply_3895" [id=56, type=Convolution];
-"57 Transpose_1559" [id=57, type=Add];
-"58 Transpose_1462/fq_output_0" [id=58, type=FakeQuantize];
-"59 Transpose_1496" [id=59, type=PRelu];
-"60 Transpose_1657" [id=60, type=Add];
-"61 Transpose_1565" [id=61, type=PRelu];
-"62 Transpose_1496/fq_output_0" [id=62, type=FakeQuantize];
-"63 Transpose_1663" [id=63, type=PRelu];
-"64 Transpose_1565/fq_output_0" [id=64, type=FakeQuantize];
-"65 Transpose_1663/fq_output_0" [id=65, type=FakeQuantize];
-"66 Multiply_3867" [id=66, type=Convolution];
-"67 Transpose_1599" [id=67, type=Concat];
-"68 Multiply_3909" [id=68, type=Convolution];
-"69 Transpose_1589" [id=69, type=Add];
-"70 Multiply_3881" [id=70, type=Convolution];
-"71 Transpose_1687" [id=71, type=Add];
-"72 Transpose_1595" [id=72, type=PRelu];
-"73 Transpose_1623" [id=73, type=Add];
-"74 Transpose_1693" [id=74, type=PRelu];
-"75 Transpose_1595/fq_output_0" [id=75, type=FakeQuantize];
-"76 Transpose_1629" [id=76, type=PRelu];
-"77 Transpose_1693/fq_output_0" [id=77, type=FakeQuantize];
-"78 Transpose_1629/fq_output_0" [id=78, type=FakeQuantize];
-"79 Multiply_3923" [id=79, type=Convolution];
-"80 Multiply_3951" [id=80, type=Convolution];
-"81 Transpose_1727" [id=81, type=Concat];
-"82 Transpose_1717" [id=82, type=Add];
-"83 Transpose_1787" [id=83, type=Add];
-"84 Multiply_3937" [id=84, type=Convolution];
-"85 Transpose_1723" [id=85, type=PRelu];
-"86 Transpose_1793" [id=86, type=PRelu];
-"87 Transpose_1751" [id=87, type=Add];
-"88 Transpose_1723/fq_output_0" [id=88, type=FakeQuantize];
-"89 Transpose_1793/fq_output_0" [id=89, type=FakeQuantize];
-"90 Transpose_1757" [id=90, type=PRelu];
-"91 leaky_re_lu_17/LeakyRelu" [id=91, type=Transpose];
-"92 Convolution_749" [id=92, type=Convolution];
-"93 Transpose_1757/fq_output_0" [id=93, type=FakeQuantize];
-"94 up_sampling2d/Shape" [id=94, type=ShapeOf];
-"95 up_sampling2d/resize/ResizeNearestNeighbor" [id=95, type=Interpolate];
-"96 Transpose_1799" [id=96, type=Add];
-"97 Convolution_706" [id=97, type=Convolution];
-"98 up_sampling2d/strided_slice" [id=98, type=StridedSlice];
-"99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [id=99, type=FakeQuantize];
-"100 conv2d_17/BiasAdd" [id=100, type=Transpose];
-"101 Transpose_1763" [id=101, type=Add];
-"102 up_sampling2d/mul" [id=102, type=Multiply];
-"103 Transpose_1725" [id=103, type=Transpose];
-"104 conv2d_17/BiasAdd^0" [id=104, label="104 conv2d_17/BiasAdd:0", type=Result];
-"105 conv2d_20/BiasAdd" [id=105, type=Transpose];
-"106 conv2d_20/BiasAdd^0" [id=106, label="106 conv2d_20/BiasAdd:0", type=Result];
-"107 Constant_1762" [id=107, type=Constant];
-"108 Transpose_1761" [id=108, type=Constant];
-"109 Convolution_706/fq_weights_1" [id=109, type=FakeQuantize];
-"110 Constant_5705" [id=110, type=Constant];
-"111 Constant_5704" [id=111, type=Constant];
-"112 Constant_5703" [id=112, type=Constant];
-"113 Constant_5702" [id=113, type=Constant];
-"114 Transpose_705" [id=114, type=Constant];
-"115 Constant_5700" [id=115, type=Constant];
-"116 Constant_5699" [id=116, type=Constant];
-"117 Constant_5698" [id=117, type=Constant];
-"118 Constant_5697" [id=118, type=Constant];
-"119 Transpose_1755" [id=119, type=Constant];
-"120 Constant_3945" [id=120, type=Constant];
-"121 Multiply_3937/fq_weights_1" [id=121, type=FakeQuantize];
-"122 Constant_5695" [id=122, type=Constant];
-"123 Constant_5694" [id=123, type=Constant];
-"124 Constant_5693" [id=124, type=Constant];
-"125 Constant_5692" [id=125, type=Constant];
-"126 Multiply_4070" [id=126, type=Constant];
-"127 Constant_5565" [id=127, type=Constant];
-"128 Constant_5564" [id=128, type=Constant];
-"129 Constant_5563" [id=129, type=Constant];
-"130 Constant_5562" [id=130, type=Constant];
-"131 Transpose_1627" [id=131, type=Constant];
-"132 Constant_3889" [id=132, type=Constant];
-"133 Multiply_3881/fq_weights_1" [id=133, type=FakeQuantize];
-"134 Constant_5660" [id=134, type=Constant];
-"135 Constant_5659" [id=135, type=Constant];
-"136 Constant_5658" [id=136, type=Constant];
-"137 Constant_5657" [id=137, type=Constant];
-"138 Multiply_4046" [id=138, type=Constant];
-"139 Constant_5535" [id=139, type=Constant];
-"140 Constant_5534" [id=140, type=Constant];
-"141 Constant_5533" [id=141, type=Constant];
-"142 Constant_5532" [id=142, type=Constant];
-"143 Transpose_1563" [id=143, type=Constant];
-"144 Constant_3861" [id=144, type=Constant];
-"145 Multiply_3853/fq_weights_1" [id=145, type=FakeQuantize];
-"146 Constant_5650" [id=146, type=Constant];
-"147 Constant_5649" [id=147, type=Constant];
-"148 Constant_5648" [id=148, type=Constant];
-"149 Constant_5647" [id=149, type=Constant];
-"150 Multiply_4034" [id=150, type=Constant];
-"151 Constant_1531" [id=151, type=Constant];
-"152 Constant_5570" [id=152, type=Constant];
-"153 Constant_5569" [id=153, type=Constant];
-"154 Constant_5568" [id=154, type=Constant];
-"155 Constant_5567" [id=155, type=Constant];
-"156 Transpose_1528" [id=156, type=Constant];
-"157 Constant_3847" [id=157, type=Constant];
-"158 Multiply_3839/fq_weights_1" [id=158, type=FakeQuantize];
-"159 Constant_5645" [id=159, type=Constant];
-"160 Constant_5644" [id=160, type=Constant];
-"161 Constant_5643" [id=161, type=Constant];
-"162 Constant_5642" [id=162, type=Constant];
-"163 Multiply_4028" [id=163, type=Constant];
-"164 Constant_5560" [id=164, type=Constant];
-"165 Constant_5559" [id=165, type=Constant];
-"166 Constant_5558" [id=166, type=Constant];
-"167 Constant_5557" [id=167, type=Constant];
-"168 Transpose_1494" [id=168, type=Constant];
-"169 Constant_3833" [id=169, type=Constant];
-"170 Multiply_3825/fq_weights_1" [id=170, type=FakeQuantize];
-"171 Constant_5640" [id=171, type=Constant];
-"172 Constant_5639" [id=172, type=Constant];
-"173 Constant_5638" [id=173, type=Constant];
-"174 Constant_5637" [id=174, type=Constant];
-"175 Multiply_4022" [id=175, type=Constant];
-"176 Constant_5530" [id=176, type=Constant];
-"177 Constant_5529" [id=177, type=Constant];
-"178 Constant_5528" [id=178, type=Constant];
-"179 Constant_5527" [id=179, type=Constant];
-"180 Transpose_1430" [id=180, type=Constant];
-"181 Constant_3805" [id=181, type=Constant];
-"182 Multiply_3797/fq_weights_1" [id=182, type=FakeQuantize];
-"183 Constant_5630" [id=183, type=Constant];
-"184 Constant_5629" [id=184, type=Constant];
-"185 Constant_5628" [id=185, type=Constant];
-"186 Constant_5627" [id=186, type=Constant];
-"187 Multiply_4010" [id=187, type=Constant];
-"188 Constant_1398" [id=188, type=Constant];
-"189 Constant_5555" [id=189, type=Constant];
-"190 Constant_5554" [id=190, type=Constant];
-"191 Constant_5553" [id=191, type=Constant];
-"192 Constant_5552" [id=192, type=Constant];
-"193 Transpose_1395" [id=193, type=Constant];
-"194 Constant_3791" [id=194, type=Constant];
-"195 Multiply_3783/fq_weights_1" [id=195, type=FakeQuantize];
-"196 Constant_5625" [id=196, type=Constant];
-"197 Constant_5624" [id=197, type=Constant];
-"198 Constant_5623" [id=198, type=Constant];
-"199 Constant_5622" [id=199, type=Constant];
-"200 Multiply_4004" [id=200, type=Constant];
-"201 Constant_5550" [id=201, type=Constant];
-"202 Constant_5549" [id=202, type=Constant];
-"203 Constant_5548" [id=203, type=Constant];
-"204 Constant_5547" [id=204, type=Constant];
-"205 Transpose_1361" [id=205, type=Constant];
-"206 Constant_3777" [id=206, type=Constant];
-"207 Multiply_3769/fq_weights_1" [id=207, type=FakeQuantize];
-"208 Constant_5620" [id=208, type=Constant];
-"209 Constant_5619" [id=209, type=Constant];
-"210 Constant_5618" [id=210, type=Constant];
-"211 Constant_5617" [id=211, type=Constant];
-"212 Multiply_3998" [id=212, type=Constant];
-"213 Constant_5515" [id=213, type=Constant];
-"214 Constant_5514" [id=214, type=Constant];
-"215 Constant_5513" [id=215, type=Constant];
-"216 Constant_5512" [id=216, type=Constant];
-"217 Transpose_1297" [id=217, type=Constant];
-"218 Constant_3749" [id=218, type=Constant];
-"219 Multiply_3741/fq_weights_1" [id=219, type=FakeQuantize];
-"220 Constant_5610" [id=220, type=Constant];
-"221 Constant_5609" [id=221, type=Constant];
-"222 Constant_5608" [id=222, type=Constant];
-"223 Constant_5607" [id=223, type=Constant];
-"224 Multiply_3986" [id=224, type=Constant];
-"225 Constant_1265" [id=225, type=Constant];
-"226 Constant_5545" [id=226, type=Constant];
-"227 Constant_5544" [id=227, type=Constant];
-"228 Constant_5543" [id=228, type=Constant];
-"229 Constant_5542" [id=229, type=Constant];
-"230 Transpose_1262" [id=230, type=Constant];
-"231 Constant_3735" [id=231, type=Constant];
-"232 Multiply_3727/fq_weights_1" [id=232, type=FakeQuantize];
-"233 Constant_5605" [id=233, type=Constant];
-"234 Constant_5604" [id=234, type=Constant];
-"235 Constant_5603" [id=235, type=Constant];
-"236 Constant_5602" [id=236, type=Constant];
-"237 Multiply_3980" [id=237, type=Constant];
-"238 Constant_5600" [id=238, type=Constant];
-"239 Constant_5599" [id=239, type=Constant];
-"240 Constant_5598" [id=240, type=Constant];
-"241 Constant_5597" [id=241, type=Constant];
-"242 Transpose_1232" [id=242, type=Constant];
-"243 Constant_3721" [id=243, type=Constant];
-"244 Multiply_3713/fq_weights_1" [id=244, type=FakeQuantize];
-"245 Constant_5595" [id=245, type=Constant];
-"246 Constant_5594" [id=246, type=Constant];
-"247 Constant_5593" [id=247, type=Constant];
-"248 Constant_5592" [id=248, type=Constant];
-"249 Multiply_3974" [id=249, type=Constant];
-"250 Constant_5590" [id=250, type=Constant];
-"251 Constant_5589" [id=251, type=Constant];
-"252 Constant_5588" [id=252, type=Constant];
-"253 Constant_5587" [id=253, type=Constant];
-"254 Transpose_1175" [id=254, type=Constant];
-"255 Constant_3707" [id=255, type=Constant];
-"256 Multiply_3699/fq_weights_1" [id=256, type=FakeQuantize];
-"257 Constant_5585" [id=257, type=Constant];
-"258 Constant_5584" [id=258, type=Constant];
-"259 Constant_5583" [id=259, type=Constant];
-"260 Constant_5582" [id=260, type=Constant];
-"261 Gather_4242" [id=261, type=Constant];
-"262 Constant_2326" [id=262, type=Constant];
-"263 Constant_5580" [id=263, type=Constant];
-"264 Constant_5579" [id=264, type=Constant];
-"265 Constant_5578" [id=265, type=Constant];
-"266 Constant_5577" [id=266, type=Constant];
-"267 Constant_5520" [id=267, type=Constant];
-"268 Constant_5519" [id=268, type=Constant];
-"269 Constant_5518" [id=269, type=Constant];
-"270 Constant_5517" [id=270, type=Constant];
-"271 Transpose_1327" [id=271, type=Constant];
-"272 Constant_3763" [id=272, type=Constant];
-"273 Multiply_3755/fq_weights_1" [id=273, type=FakeQuantize];
-"274 Constant_5615" [id=274, type=Constant];
-"275 Constant_5614" [id=275, type=Constant];
-"276 Constant_5613" [id=276, type=Constant];
-"277 Constant_5612" [id=277, type=Constant];
-"278 Multiply_3992" [id=278, type=Constant];
-"279 Constant_5525" [id=279, type=Constant];
-"280 Constant_5524" [id=280, type=Constant];
-"281 Constant_5523" [id=281, type=Constant];
-"282 Constant_5522" [id=282, type=Constant];
-"283 Transpose_1460" [id=283, type=Constant];
-"284 Constant_3819" [id=284, type=Constant];
-"285 Multiply_3811/fq_weights_1" [id=285, type=FakeQuantize];
-"286 Constant_5635" [id=286, type=Constant];
-"287 Constant_5634" [id=287, type=Constant];
-"288 Constant_5633" [id=288, type=Constant];
-"289 Constant_5632" [id=289, type=Constant];
-"290 Multiply_4016" [id=290, type=Constant];
-"291 Constant_5540" [id=291, type=Constant];
-"292 Constant_5539" [id=292, type=Constant];
-"293 Constant_5538" [id=293, type=Constant];
-"294 Constant_5537" [id=294, type=Constant];
-"295 Transpose_1593" [id=295, type=Constant];
-"296 Constant_3875" [id=296, type=Constant];
-"297 Multiply_3867/fq_weights_1" [id=297, type=FakeQuantize];
-"298 Constant_5655" [id=298, type=Constant];
-"299 Constant_5654" [id=299, type=Constant];
-"300 Constant_5653" [id=300, type=Constant];
-"301 Constant_5652" [id=301, type=Constant];
-"302 Multiply_4040" [id=302, type=Constant];
-"303 Constant_1724" [id=303, type=Constant];
-"304 Constant_5575" [id=304, type=Constant];
-"305 Constant_5574" [id=305, type=Constant];
-"306 Constant_5573" [id=306, type=Constant];
-"307 Constant_5572" [id=307, type=Constant];
-"308 Constant_669" [id=308, type=Constant];
-"309 up_sampling2d/Const" [id=309, type=Constant];
-"310 up_sampling2d/strided_slice/stack_2" [id=310, type=Constant];
-"311 up_sampling2d/strided_slice/stack_1" [id=311, type=Constant];
-"312 up_sampling2d/strided_slice/stack" [id=312, type=Constant];
-"313 Constant_1722" [id=313, type=Constant];
-"314 Constant_5690" [id=314, type=Constant];
-"315 Constant_5689" [id=315, type=Constant];
-"316 Constant_5688" [id=316, type=Constant];
-"317 Constant_5687" [id=317, type=Constant];
-"318 Transpose_1721" [id=318, type=Constant];
-"319 Constant_3931" [id=319, type=Constant];
-"320 Multiply_3923/fq_weights_1" [id=320, type=FakeQuantize];
-"321 Constant_5685" [id=321, type=Constant];
-"322 Constant_5684" [id=322, type=Constant];
-"323 Constant_5683" [id=323, type=Constant];
-"324 Constant_5682" [id=324, type=Constant];
-"325 Multiply_4064" [id=325, type=Constant];
-"326 Constant_5680" [id=326, type=Constant];
-"327 Constant_5679" [id=327, type=Constant];
-"328 Constant_5678" [id=328, type=Constant];
-"329 Constant_5677" [id=329, type=Constant];
-"330 Transpose_1691" [id=330, type=Constant];
-"331 Constant_3917" [id=331, type=Constant];
-"332 Multiply_3909/fq_weights_1" [id=332, type=FakeQuantize];
-"333 Constant_5675" [id=333, type=Constant];
-"334 Constant_5674" [id=334, type=Constant];
-"335 Constant_5673" [id=335, type=Constant];
-"336 Constant_5672" [id=336, type=Constant];
-"337 Multiply_4058" [id=337, type=Constant];
-"338 Constant_5670" [id=338, type=Constant];
-"339 Constant_5669" [id=339, type=Constant];
-"340 Constant_5668" [id=340, type=Constant];
-"341 Constant_5667" [id=341, type=Constant];
-"342 Transpose_1661" [id=342, type=Constant];
-"343 Constant_3903" [id=343, type=Constant];
-"344 Multiply_3895/fq_weights_1" [id=344, type=FakeQuantize];
-"345 Constant_5665" [id=345, type=Constant];
-"346 Constant_5664" [id=346, type=Constant];
-"347 Constant_5663" [id=347, type=Constant];
-"348 Constant_5662" [id=348, type=Constant];
-"349 Multiply_4052" [id=349, type=Constant];
-"350 Constant_1798" [id=350, type=Constant];
-"351 Transpose_1797" [id=351, type=Constant];
-"352 Convolution_749/fq_weights_1" [id=352, type=FakeQuantize];
-"353 Constant_5720" [id=353, type=Constant];
-"354 Constant_5719" [id=354, type=Constant];
-"355 Constant_5718" [id=355, type=Constant];
-"356 Constant_5717" [id=356, type=Constant];
-"357 Transpose_748" [id=357, type=Constant];
-"358 Constant_5715" [id=358, type=Constant];
-"359 Constant_5714" [id=359, type=Constant];
-"360 Constant_5713" [id=360, type=Constant];
-"361 Constant_5712" [id=361, type=Constant];
-"362 Transpose_1791" [id=362, type=Constant];
-"363 Constant_3959" [id=363, type=Constant];
-"364 Multiply_3951/fq_weights_1" [id=364, type=FakeQuantize];
-"365 Constant_5710" [id=365, type=Constant];
-"366 Constant_5709" [id=366, type=Constant];
-"367 Constant_5708" [id=367, type=Constant];
-"368 Constant_5707" [id=368, type=Constant];
-"369 Multiply_4076" [id=369, type=Constant];
-"0 image_input" -> "1 image_input/fq_output_0" [label="[1, 416, 416, 3]", style=solid];
-"1 image_input/fq_output_0" -> "2 Divide_2366" [label="[1, 416, 416, 3]", style=solid];
-"2 Divide_2366" -> "3 Multiply_3699" [label="[1, 3, 416, 416]", style=solid];
-"3 Multiply_3699" -> "4 Transpose_1171" [label="[1, 32, 208, 208]", style=solid];
-"4 Transpose_1171" -> "5 Transpose_1177" [label="[1, 32, 208, 208]", style=solid];
-"5 Transpose_1177" -> "6 Transpose_1177/fq_output_0" [label="[1, 32, 208, 208]", style=solid];
-"6 Transpose_1177/fq_output_0" -> "7 Multiply_3713" [label="[1, 32, 208, 208]", style=solid];
-"7 Multiply_3713" -> "8 Transpose_1228" [label="[1, 64, 104, 104]", style=solid];
-"8 Transpose_1228" -> "9 Transpose_1234" [label="[1, 64, 104, 104]", style=solid];
-"9 Transpose_1234" -> "10 Transpose_1234/fq_output_0" [label="[1, 64, 104, 104]", style=solid];
-"10 Transpose_1234/fq_output_0" -> "11 Multiply_3727" [label="[1, 64, 104, 104]", style=solid];
-"11 Multiply_3727" -> "12 Transpose_1258" [label="[1, 64, 104, 104]", style=solid];
-"12 Transpose_1258" -> "13 Transpose_1264" [label="[1, 64, 104, 104]", style=solid];
-"13 Transpose_1264" -> "14 Transpose_1264/fq_output_0" [label="[1, 64, 104, 104]", style=solid];
-"14 Transpose_1264/fq_output_0" -> "15 Transpose_1367" [label="[1, 64, 104, 104]", style=solid];
-"14 Transpose_1264/fq_output_0" -> "16 group_route_3/split" [label="[1, 64, 104, 104]", style=solid];
-"15 Transpose_1367" -> "17 MaxPool_307" [label="[1, 128, 104, 104]", style=solid];
-"16 group_route_3/split" -> "18 Multiply_3741" [label="[1, 32, 104, 104]", style=solid];
-"17 MaxPool_307" -> "19 Multiply_3783" [label="[1, 128, 52, 52]", style=solid];
-"18 Multiply_3741" -> "20 Transpose_1293" [label="[1, 32, 104, 104]", style=solid];
-"19 Multiply_3783" -> "21 Transpose_1391" [label="[1, 128, 52, 52]", style=solid];
-"20 Transpose_1293" -> "22 Transpose_1299" [label="[1, 32, 104, 104]", style=solid];
-"21 Transpose_1391" -> "23 Transpose_1397" [label="[1, 128, 52, 52]", style=solid];
-"22 Transpose_1299" -> "24 Transpose_1299/fq_output_0" [label="[1, 32, 104, 104]", style=solid];
-"23 Transpose_1397" -> "25 Transpose_1397/fq_output_0" [label="[1, 128, 52, 52]", style=solid];
-"24 Transpose_1299/fq_output_0" -> "26 Multiply_3755" [label="[1, 32, 104, 104]", style=solid];
-"24 Transpose_1299/fq_output_0" -> "27 Transpose_1333" [label="[1, 32, 104, 104]", style=solid];
-"25 Transpose_1397/fq_output_0" -> "28 Transpose_1500" [label="[1, 128, 52, 52]", style=solid];
-"25 Transpose_1397/fq_output_0" -> "29 group_route_11/split" [label="[1, 128, 52, 52]", style=solid];
-"26 Multiply_3755" -> "30 Transpose_1323" [label="[1, 32, 104, 104]", style=solid];
-"27 Transpose_1333" -> "31 Multiply_3769" [label="[1, 64, 104, 104]", style=solid];
-"28 Transpose_1500" -> "32 MaxPool_433" [label="[1, 256, 52, 52]", style=solid];
-"29 group_route_11/split" -> "33 Multiply_3797" [label="[1, 64, 52, 52]", style=solid];
-"30 Transpose_1323" -> "34 Transpose_1329" [label="[1, 32, 104, 104]", style=solid];
-"31 Multiply_3769" -> "35 Transpose_1357" [label="[1, 64, 104, 104]", style=solid];
-"32 MaxPool_433" -> "36 Multiply_3839" [label="[1, 256, 26, 26]", style=solid];
-"33 Multiply_3797" -> "37 Transpose_1426" [label="[1, 64, 52, 52]", style=solid];
-"34 Transpose_1329" -> "38 Transpose_1329/fq_output_0" [label="[1, 32, 104, 104]", style=solid];
-"35 Transpose_1357" -> "39 Transpose_1363" [label="[1, 64, 104, 104]", style=solid];
-"36 Multiply_3839" -> "40 Transpose_1524" [label="[1, 256, 26, 26]", style=solid];
-"37 Transpose_1426" -> "41 Transpose_1432" [label="[1, 64, 52, 52]", style=solid];
-"38 Transpose_1329/fq_output_0" -> "27 Transpose_1333" [label="[1, 32, 104, 104]", style=solid];
-"39 Transpose_1363" -> "42 Transpose_1363/fq_output_0" [label="[1, 64, 104, 104]", style=solid];
-"40 Transpose_1524" -> "43 Transpose_1530" [label="[1, 256, 26, 26]", style=solid];
-"41 Transpose_1432" -> "44 Transpose_1432/fq_output_0" [label="[1, 64, 52, 52]", style=solid];
-"42 Transpose_1363/fq_output_0" -> "15 Transpose_1367" [label="[1, 64, 104, 104]", style=solid];
-"43 Transpose_1530" -> "45 Transpose_1530/fq_output_0" [label="[1, 256, 26, 26]", style=solid];
-"44 Transpose_1432/fq_output_0" -> "46 Multiply_3811" [label="[1, 64, 52, 52]", style=solid];
-"44 Transpose_1432/fq_output_0" -> "47 Transpose_1466" [label="[1, 64, 52, 52]", style=solid];
-"45 Transpose_1530/fq_output_0" -> "48 Transpose_1633" [label="[1, 256, 26, 26]", style=solid];
-"45 Transpose_1530/fq_output_0" -> "49 group_route_19/split" [label="[1, 256, 26, 26]", style=solid];
-"46 Multiply_3811" -> "50 Transpose_1456" [label="[1, 64, 52, 52]", style=solid];
-"47 Transpose_1466" -> "51 Multiply_3825" [label="[1, 128, 52, 52]", style=solid];
-"48 Transpose_1633" -> "52 MaxPool_579" [label="[1, 512, 26, 26]", style=solid];
-"49 group_route_19/split" -> "53 Multiply_3853" [label="[1, 128, 26, 26]", style=solid];
-"50 Transpose_1456" -> "54 Transpose_1462" [label="[1, 64, 52, 52]", style=solid];
-"51 Multiply_3825" -> "55 Transpose_1490" [label="[1, 128, 52, 52]", style=solid];
-"52 MaxPool_579" -> "56 Multiply_3895" [label="[1, 512, 13, 13]", style=solid];
-"53 Multiply_3853" -> "57 Transpose_1559" [label="[1, 128, 26, 26]", style=solid];
-"54 Transpose_1462" -> "58 Transpose_1462/fq_output_0" [label="[1, 64, 52, 52]", style=solid];
-"55 Transpose_1490" -> "59 Transpose_1496" [label="[1, 128, 52, 52]", style=solid];
-"56 Multiply_3895" -> "60 Transpose_1657" [label="[1, 512, 13, 13]", style=solid];
-"57 Transpose_1559" -> "61 Transpose_1565" [label="[1, 128, 26, 26]", style=solid];
-"58 Transpose_1462/fq_output_0" -> "47 Transpose_1466" [label="[1, 64, 52, 52]", style=solid];
-"59 Transpose_1496" -> "62 Transpose_1496/fq_output_0" [label="[1, 128, 52, 52]", style=solid];
-"60 Transpose_1657" -> "63 Transpose_1663" [label="[1, 512, 13, 13]", style=solid];
-"61 Transpose_1565" -> "64 Transpose_1565/fq_output_0" [label="[1, 128, 26, 26]", style=solid];
-"62 Transpose_1496/fq_output_0" -> "28 Transpose_1500" [label="[1, 128, 52, 52]", style=solid];
-"63 Transpose_1663" -> "65 Transpose_1663/fq_output_0" [label="[1, 512, 13, 13]", style=solid];
-"64 Transpose_1565/fq_output_0" -> "66 Multiply_3867" [label="[1, 128, 26, 26]", style=solid];
-"64 Transpose_1565/fq_output_0" -> "67 Transpose_1599" [label="[1, 128, 26, 26]", style=solid];
-"65 Transpose_1663/fq_output_0" -> "68 Multiply_3909" [label="[1, 512, 13, 13]", style=solid];
-"66 Multiply_3867" -> "69 Transpose_1589" [label="[1, 128, 26, 26]", style=solid];
-"67 Transpose_1599" -> "70 Multiply_3881" [label="[1, 256, 26, 26]", style=solid];
-"68 Multiply_3909" -> "71 Transpose_1687" [label="[1, 256, 13, 13]", style=solid];
-"69 Transpose_1589" -> "72 Transpose_1595" [label="[1, 128, 26, 26]", style=solid];
-"70 Multiply_3881" -> "73 Transpose_1623" [label="[1, 256, 26, 26]", style=solid];
-"71 Transpose_1687" -> "74 Transpose_1693" [label="[1, 256, 13, 13]", style=solid];
-"72 Transpose_1595" -> "75 Transpose_1595/fq_output_0" [label="[1, 128, 26, 26]", style=solid];
-"73 Transpose_1623" -> "76 Transpose_1629" [label="[1, 256, 26, 26]", style=solid];
-"74 Transpose_1693" -> "77 Transpose_1693/fq_output_0" [label="[1, 256, 13, 13]", style=solid];
-"75 Transpose_1595/fq_output_0" -> "67 Transpose_1599" [label="[1, 128, 26, 26]", style=solid];
-"76 Transpose_1629" -> "78 Transpose_1629/fq_output_0" [label="[1, 256, 26, 26]", style=solid];
-"77 Transpose_1693/fq_output_0" -> "79 Multiply_3923" [label="[1, 256, 13, 13]", style=solid];
-"77 Transpose_1693/fq_output_0" -> "80 Multiply_3951" [label="[1, 256, 13, 13]", style=solid];
-"78 Transpose_1629/fq_output_0" -> "48 Transpose_1633" [label="[1, 256, 26, 26]", style=solid];
-"78 Transpose_1629/fq_output_0" -> "81 Transpose_1727" [label="[1, 256, 26, 26]", style=solid];
-"79 Multiply_3923" -> "82 Transpose_1717" [label="[1, 128, 13, 13]", style=solid];
-"80 Multiply_3951" -> "83 Transpose_1787" [label="[1, 512, 13, 13]", style=solid];
-"81 Transpose_1727" -> "84 Multiply_3937" [label="[1, 384, 26, 26]", style=solid];
-"82 Transpose_1717" -> "85 Transpose_1723" [label="[1, 128, 13, 13]", style=solid];
-"83 Transpose_1787" -> "86 Transpose_1793" [label="[1, 512, 13, 13]", style=solid];
-"84 Multiply_3937" -> "87 Transpose_1751" [label="[1, 256, 26, 26]", style=solid];
-"85 Transpose_1723" -> "88 Transpose_1723/fq_output_0" [label="[1, 128, 13, 13]", style=solid];
-"86 Transpose_1793" -> "89 Transpose_1793/fq_output_0" [label="[1, 512, 13, 13]", style=solid];
-"87 Transpose_1751" -> "90 Transpose_1757" [label="[1, 256, 26, 26]", style=solid];
-"88 Transpose_1723/fq_output_0" -> "91 leaky_re_lu_17/LeakyRelu" [label="[1, 128, 13, 13]", style=solid];
-"89 Transpose_1793/fq_output_0" -> "92 Convolution_749" [label="[1, 512, 13, 13]", style=solid];
-"90 Transpose_1757" -> "93 Transpose_1757/fq_output_0" [label="[1, 256, 26, 26]", style=solid];
-"91 leaky_re_lu_17/LeakyRelu" -> "94 up_sampling2d/Shape" [label="[1, 13, 13, 128]", style=solid];
-"91 leaky_re_lu_17/LeakyRelu" -> "95 up_sampling2d/resize/ResizeNearestNeighbor" [label="[1, 13, 13, 128]", style=solid];
-"92 Convolution_749" -> "96 Transpose_1799" [label="[1, 255, 13, 13]", style=solid];
-"93 Transpose_1757/fq_output_0" -> "97 Convolution_706" [label="[1, 256, 26, 26]", style=solid];
-"94 up_sampling2d/Shape" -> "98 up_sampling2d/strided_slice" [label="[4]", style=dashed];
-"95 up_sampling2d/resize/ResizeNearestNeighbor" -> "99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [label="[1, 26, 26, 128]", style=solid];
-"96 Transpose_1799" -> "100 conv2d_17/BiasAdd" [label="[1, 255, 13, 13]", style=solid];
-"97 Convolution_706" -> "101 Transpose_1763" [label="[1, 255, 26, 26]", style=solid];
-"98 up_sampling2d/strided_slice" -> "102 up_sampling2d/mul" [label="[2]", style=dashed];
-"99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" -> "103 Transpose_1725" [label="[1, 26, 26, 128]", style=solid];
-"100 conv2d_17/BiasAdd" -> "104 conv2d_17/BiasAdd^0" [label="[1, 13, 13, 255]", style=solid];
-"101 Transpose_1763" -> "105 conv2d_20/BiasAdd" [label="[1, 255, 26, 26]", style=solid];
-"102 up_sampling2d/mul" -> "95 up_sampling2d/resize/ResizeNearestNeighbor" [label="[2]", style=dashed];
-"103 Transpose_1725" -> "81 Transpose_1727" [label="[1, 128, 26, 26]", style=solid];
-"105 conv2d_20/BiasAdd" -> "106 conv2d_20/BiasAdd^0" [label="[1, 26, 26, 255]", style=solid];
-"107 Constant_1762" -> "105 conv2d_20/BiasAdd" [label="[4]", style=dashed];
-"108 Transpose_1761" -> "101 Transpose_1763" [label="[1, 255, 1, 1]", style=solid];
-"109 Convolution_706/fq_weights_1" -> "97 Convolution_706" [label="[255, 256, 1, 1]", style=solid];
-"110 Constant_5705" -> "109 Convolution_706/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"111 Constant_5704" -> "109 Convolution_706/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"112 Constant_5703" -> "109 Convolution_706/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"113 Constant_5702" -> "109 Convolution_706/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"114 Transpose_705" -> "109 Convolution_706/fq_weights_1" [label="[255, 256, 1, 1]", style=solid];
-"115 Constant_5700" -> "93 Transpose_1757/fq_output_0" [label="[]", style=solid];
-"116 Constant_5699" -> "93 Transpose_1757/fq_output_0" [label="[]", style=solid];
-"117 Constant_5698" -> "93 Transpose_1757/fq_output_0" [label="[]", style=solid];
-"118 Constant_5697" -> "93 Transpose_1757/fq_output_0" [label="[]", style=solid];
-"119 Transpose_1755" -> "90 Transpose_1757" [label="[1, 1, 1, 1]", style=solid];
-"120 Constant_3945" -> "87 Transpose_1751" [label="[1, 256, 1, 1]", style=solid];
-"121 Multiply_3937/fq_weights_1" -> "84 Multiply_3937" [label="[256, 384, 3, 3]", style=solid];
-"122 Constant_5695" -> "121 Multiply_3937/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"123 Constant_5694" -> "121 Multiply_3937/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"124 Constant_5693" -> "121 Multiply_3937/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"125 Constant_5692" -> "121 Multiply_3937/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"126 Multiply_4070" -> "121 Multiply_3937/fq_weights_1" [label="[256, 384, 3, 3]", style=solid];
-"127 Constant_5565" -> "78 Transpose_1629/fq_output_0" [label="[]", style=solid];
-"128 Constant_5564" -> "78 Transpose_1629/fq_output_0" [label="[]", style=solid];
-"129 Constant_5563" -> "78 Transpose_1629/fq_output_0" [label="[]", style=solid];
-"130 Constant_5562" -> "78 Transpose_1629/fq_output_0" [label="[]", style=solid];
-"131 Transpose_1627" -> "76 Transpose_1629" [label="[1, 1, 1, 1]", style=solid];
-"132 Constant_3889" -> "73 Transpose_1623" [label="[1, 256, 1, 1]", style=solid];
-"133 Multiply_3881/fq_weights_1" -> "70 Multiply_3881" [label="[256, 256, 1, 1]", style=solid];
-"134 Constant_5660" -> "133 Multiply_3881/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"135 Constant_5659" -> "133 Multiply_3881/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"136 Constant_5658" -> "133 Multiply_3881/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"137 Constant_5657" -> "133 Multiply_3881/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"138 Multiply_4046" -> "133 Multiply_3881/fq_weights_1" [label="[256, 256, 1, 1]", style=solid];
-"139 Constant_5535" -> "64 Transpose_1565/fq_output_0" [label="[]", style=solid];
-"140 Constant_5534" -> "64 Transpose_1565/fq_output_0" [label="[]", style=solid];
-"141 Constant_5533" -> "64 Transpose_1565/fq_output_0" [label="[]", style=solid];
-"142 Constant_5532" -> "64 Transpose_1565/fq_output_0" [label="[]", style=solid];
-"143 Transpose_1563" -> "61 Transpose_1565" [label="[1, 1, 1, 1]", style=solid];
-"144 Constant_3861" -> "57 Transpose_1559" [label="[1, 128, 1, 1]", style=solid];
-"145 Multiply_3853/fq_weights_1" -> "53 Multiply_3853" [label="[128, 128, 3, 3]", style=solid];
-"146 Constant_5650" -> "145 Multiply_3853/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"147 Constant_5649" -> "145 Multiply_3853/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"148 Constant_5648" -> "145 Multiply_3853/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"149 Constant_5647" -> "145 Multiply_3853/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"150 Multiply_4034" -> "145 Multiply_3853/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"151 Constant_1531" -> "49 group_route_19/split" [label="[]", style=dashed];
-"152 Constant_5570" -> "45 Transpose_1530/fq_output_0" [label="[]", style=solid];
-"153 Constant_5569" -> "45 Transpose_1530/fq_output_0" [label="[]", style=solid];
-"154 Constant_5568" -> "45 Transpose_1530/fq_output_0" [label="[]", style=solid];
-"155 Constant_5567" -> "45 Transpose_1530/fq_output_0" [label="[]", style=solid];
-"156 Transpose_1528" -> "43 Transpose_1530" [label="[1, 1, 1, 1]", style=solid];
-"157 Constant_3847" -> "40 Transpose_1524" [label="[1, 256, 1, 1]", style=solid];
-"158 Multiply_3839/fq_weights_1" -> "36 Multiply_3839" [label="[256, 256, 3, 3]", style=solid];
-"159 Constant_5645" -> "158 Multiply_3839/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"160 Constant_5644" -> "158 Multiply_3839/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"161 Constant_5643" -> "158 Multiply_3839/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"162 Constant_5642" -> "158 Multiply_3839/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"163 Multiply_4028" -> "158 Multiply_3839/fq_weights_1" [label="[256, 256, 3, 3]", style=solid];
-"164 Constant_5560" -> "62 Transpose_1496/fq_output_0" [label="[]", style=solid];
-"165 Constant_5559" -> "62 Transpose_1496/fq_output_0" [label="[]", style=solid];
-"166 Constant_5558" -> "62 Transpose_1496/fq_output_0" [label="[]", style=solid];
-"167 Constant_5557" -> "62 Transpose_1496/fq_output_0" [label="[]", style=solid];
-"168 Transpose_1494" -> "59 Transpose_1496" [label="[1, 1, 1, 1]", style=solid];
-"169 Constant_3833" -> "55 Transpose_1490" [label="[1, 128, 1, 1]", style=solid];
-"170 Multiply_3825/fq_weights_1" -> "51 Multiply_3825" [label="[128, 128, 1, 1]", style=solid];
-"171 Constant_5640" -> "170 Multiply_3825/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"172 Constant_5639" -> "170 Multiply_3825/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"173 Constant_5638" -> "170 Multiply_3825/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"174 Constant_5637" -> "170 Multiply_3825/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"175 Multiply_4022" -> "170 Multiply_3825/fq_weights_1" [label="[128, 128, 1, 1]", style=solid];
-"176 Constant_5530" -> "44 Transpose_1432/fq_output_0" [label="[]", style=solid];
-"177 Constant_5529" -> "44 Transpose_1432/fq_output_0" [label="[]", style=solid];
-"178 Constant_5528" -> "44 Transpose_1432/fq_output_0" [label="[]", style=solid];
-"179 Constant_5527" -> "44 Transpose_1432/fq_output_0" [label="[]", style=solid];
-"180 Transpose_1430" -> "41 Transpose_1432" [label="[1, 1, 1, 1]", style=solid];
-"181 Constant_3805" -> "37 Transpose_1426" [label="[1, 64, 1, 1]", style=solid];
-"182 Multiply_3797/fq_weights_1" -> "33 Multiply_3797" [label="[64, 64, 3, 3]", style=solid];
-"183 Constant_5630" -> "182 Multiply_3797/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"184 Constant_5629" -> "182 Multiply_3797/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"185 Constant_5628" -> "182 Multiply_3797/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"186 Constant_5627" -> "182 Multiply_3797/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"187 Multiply_4010" -> "182 Multiply_3797/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"188 Constant_1398" -> "29 group_route_11/split" [label="[]", style=dashed];
-"189 Constant_5555" -> "25 Transpose_1397/fq_output_0" [label="[]", style=solid];
-"190 Constant_5554" -> "25 Transpose_1397/fq_output_0" [label="[]", style=solid];
-"191 Constant_5553" -> "25 Transpose_1397/fq_output_0" [label="[]", style=solid];
-"192 Constant_5552" -> "25 Transpose_1397/fq_output_0" [label="[]", style=solid];
-"193 Transpose_1395" -> "23 Transpose_1397" [label="[1, 1, 1, 1]", style=solid];
-"194 Constant_3791" -> "21 Transpose_1391" [label="[1, 128, 1, 1]", style=solid];
-"195 Multiply_3783/fq_weights_1" -> "19 Multiply_3783" [label="[128, 128, 3, 3]", style=solid];
-"196 Constant_5625" -> "195 Multiply_3783/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"197 Constant_5624" -> "195 Multiply_3783/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"198 Constant_5623" -> "195 Multiply_3783/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"199 Constant_5622" -> "195 Multiply_3783/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"200 Multiply_4004" -> "195 Multiply_3783/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"201 Constant_5550" -> "42 Transpose_1363/fq_output_0" [label="[]", style=solid];
-"202 Constant_5549" -> "42 Transpose_1363/fq_output_0" [label="[]", style=solid];
-"203 Constant_5548" -> "42 Transpose_1363/fq_output_0" [label="[]", style=solid];
-"204 Constant_5547" -> "42 Transpose_1363/fq_output_0" [label="[]", style=solid];
-"205 Transpose_1361" -> "39 Transpose_1363" [label="[1, 1, 1, 1]", style=solid];
-"206 Constant_3777" -> "35 Transpose_1357" [label="[1, 64, 1, 1]", style=solid];
-"207 Multiply_3769/fq_weights_1" -> "31 Multiply_3769" [label="[64, 64, 1, 1]", style=solid];
-"208 Constant_5620" -> "207 Multiply_3769/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"209 Constant_5619" -> "207 Multiply_3769/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"210 Constant_5618" -> "207 Multiply_3769/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"211 Constant_5617" -> "207 Multiply_3769/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"212 Multiply_3998" -> "207 Multiply_3769/fq_weights_1" [label="[64, 64, 1, 1]", style=solid];
-"213 Constant_5515" -> "24 Transpose_1299/fq_output_0" [label="[]", style=solid];
-"214 Constant_5514" -> "24 Transpose_1299/fq_output_0" [label="[]", style=solid];
-"215 Constant_5513" -> "24 Transpose_1299/fq_output_0" [label="[]", style=solid];
-"216 Constant_5512" -> "24 Transpose_1299/fq_output_0" [label="[]", style=solid];
-"217 Transpose_1297" -> "22 Transpose_1299" [label="[1, 1, 1, 1]", style=solid];
-"218 Constant_3749" -> "20 Transpose_1293" [label="[1, 32, 1, 1]", style=solid];
-"219 Multiply_3741/fq_weights_1" -> "18 Multiply_3741" [label="[32, 32, 3, 3]", style=solid];
-"220 Constant_5610" -> "219 Multiply_3741/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"221 Constant_5609" -> "219 Multiply_3741/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"222 Constant_5608" -> "219 Multiply_3741/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"223 Constant_5607" -> "219 Multiply_3741/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"224 Multiply_3986" -> "219 Multiply_3741/fq_weights_1" [label="[32, 32, 3, 3]", style=solid];
-"225 Constant_1265" -> "16 group_route_3/split" [label="[]", style=dashed];
-"226 Constant_5545" -> "14 Transpose_1264/fq_output_0" [label="[]", style=solid];
-"227 Constant_5544" -> "14 Transpose_1264/fq_output_0" [label="[]", style=solid];
-"228 Constant_5543" -> "14 Transpose_1264/fq_output_0" [label="[]", style=solid];
-"229 Constant_5542" -> "14 Transpose_1264/fq_output_0" [label="[]", style=solid];
-"230 Transpose_1262" -> "13 Transpose_1264" [label="[1, 1, 1, 1]", style=solid];
-"231 Constant_3735" -> "12 Transpose_1258" [label="[1, 64, 1, 1]", style=solid];
-"232 Multiply_3727/fq_weights_1" -> "11 Multiply_3727" [label="[64, 64, 3, 3]", style=solid];
-"233 Constant_5605" -> "232 Multiply_3727/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"234 Constant_5604" -> "232 Multiply_3727/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"235 Constant_5603" -> "232 Multiply_3727/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"236 Constant_5602" -> "232 Multiply_3727/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"237 Multiply_3980" -> "232 Multiply_3727/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"238 Constant_5600" -> "10 Transpose_1234/fq_output_0" [label="[]", style=solid];
-"239 Constant_5599" -> "10 Transpose_1234/fq_output_0" [label="[]", style=solid];
-"240 Constant_5598" -> "10 Transpose_1234/fq_output_0" [label="[]", style=solid];
-"241 Constant_5597" -> "10 Transpose_1234/fq_output_0" [label="[]", style=solid];
-"242 Transpose_1232" -> "9 Transpose_1234" [label="[1, 1, 1, 1]", style=solid];
-"243 Constant_3721" -> "8 Transpose_1228" [label="[1, 64, 1, 1]", style=solid];
-"244 Multiply_3713/fq_weights_1" -> "7 Multiply_3713" [label="[64, 32, 3, 3]", style=solid];
-"245 Constant_5595" -> "244 Multiply_3713/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"246 Constant_5594" -> "244 Multiply_3713/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"247 Constant_5593" -> "244 Multiply_3713/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"248 Constant_5592" -> "244 Multiply_3713/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"249 Multiply_3974" -> "244 Multiply_3713/fq_weights_1" [label="[64, 32, 3, 3]", style=solid];
-"250 Constant_5590" -> "6 Transpose_1177/fq_output_0" [label="[]", style=solid];
-"251 Constant_5589" -> "6 Transpose_1177/fq_output_0" [label="[]", style=solid];
-"252 Constant_5588" -> "6 Transpose_1177/fq_output_0" [label="[]", style=solid];
-"253 Constant_5587" -> "6 Transpose_1177/fq_output_0" [label="[]", style=solid];
-"254 Transpose_1175" -> "5 Transpose_1177" [label="[1, 1, 1, 1]", style=solid];
-"255 Constant_3707" -> "4 Transpose_1171" [label="[1, 32, 1, 1]", style=solid];
-"256 Multiply_3699/fq_weights_1" -> "3 Multiply_3699" [label="[32, 3, 3, 3]", style=solid];
-"257 Constant_5585" -> "256 Multiply_3699/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"258 Constant_5584" -> "256 Multiply_3699/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"259 Constant_5583" -> "256 Multiply_3699/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"260 Constant_5582" -> "256 Multiply_3699/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"261 Gather_4242" -> "256 Multiply_3699/fq_weights_1" [label="[32, 3, 3, 3]", style=solid];
-"262 Constant_2326" -> "2 Divide_2366" [label="[4]", style=dashed];
-"263 Constant_5580" -> "1 image_input/fq_output_0" [label="[]", style=solid];
-"264 Constant_5579" -> "1 image_input/fq_output_0" [label="[]", style=solid];
-"265 Constant_5578" -> "1 image_input/fq_output_0" [label="[]", style=solid];
-"266 Constant_5577" -> "1 image_input/fq_output_0" [label="[]", style=solid];
-"267 Constant_5520" -> "38 Transpose_1329/fq_output_0" [label="[]", style=solid];
-"268 Constant_5519" -> "38 Transpose_1329/fq_output_0" [label="[]", style=solid];
-"269 Constant_5518" -> "38 Transpose_1329/fq_output_0" [label="[]", style=solid];
-"270 Constant_5517" -> "38 Transpose_1329/fq_output_0" [label="[]", style=solid];
-"271 Transpose_1327" -> "34 Transpose_1329" [label="[1, 1, 1, 1]", style=solid];
-"272 Constant_3763" -> "30 Transpose_1323" [label="[1, 32, 1, 1]", style=solid];
-"273 Multiply_3755/fq_weights_1" -> "26 Multiply_3755" [label="[32, 32, 3, 3]", style=solid];
-"274 Constant_5615" -> "273 Multiply_3755/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"275 Constant_5614" -> "273 Multiply_3755/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"276 Constant_5613" -> "273 Multiply_3755/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"277 Constant_5612" -> "273 Multiply_3755/fq_weights_1" [label="[32, 1, 1, 1]", style=solid];
-"278 Multiply_3992" -> "273 Multiply_3755/fq_weights_1" [label="[32, 32, 3, 3]", style=solid];
-"279 Constant_5525" -> "58 Transpose_1462/fq_output_0" [label="[]", style=solid];
-"280 Constant_5524" -> "58 Transpose_1462/fq_output_0" [label="[]", style=solid];
-"281 Constant_5523" -> "58 Transpose_1462/fq_output_0" [label="[]", style=solid];
-"282 Constant_5522" -> "58 Transpose_1462/fq_output_0" [label="[]", style=solid];
-"283 Transpose_1460" -> "54 Transpose_1462" [label="[1, 1, 1, 1]", style=solid];
-"284 Constant_3819" -> "50 Transpose_1456" [label="[1, 64, 1, 1]", style=solid];
-"285 Multiply_3811/fq_weights_1" -> "46 Multiply_3811" [label="[64, 64, 3, 3]", style=solid];
-"286 Constant_5635" -> "285 Multiply_3811/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"287 Constant_5634" -> "285 Multiply_3811/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"288 Constant_5633" -> "285 Multiply_3811/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"289 Constant_5632" -> "285 Multiply_3811/fq_weights_1" [label="[64, 1, 1, 1]", style=solid];
-"290 Multiply_4016" -> "285 Multiply_3811/fq_weights_1" [label="[64, 64, 3, 3]", style=solid];
-"291 Constant_5540" -> "75 Transpose_1595/fq_output_0" [label="[]", style=solid];
-"292 Constant_5539" -> "75 Transpose_1595/fq_output_0" [label="[]", style=solid];
-"293 Constant_5538" -> "75 Transpose_1595/fq_output_0" [label="[]", style=solid];
-"294 Constant_5537" -> "75 Transpose_1595/fq_output_0" [label="[]", style=solid];
-"295 Transpose_1593" -> "72 Transpose_1595" [label="[1, 1, 1, 1]", style=solid];
-"296 Constant_3875" -> "69 Transpose_1589" [label="[1, 128, 1, 1]", style=solid];
-"297 Multiply_3867/fq_weights_1" -> "66 Multiply_3867" [label="[128, 128, 3, 3]", style=solid];
-"298 Constant_5655" -> "297 Multiply_3867/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"299 Constant_5654" -> "297 Multiply_3867/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"300 Constant_5653" -> "297 Multiply_3867/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"301 Constant_5652" -> "297 Multiply_3867/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"302 Multiply_4040" -> "297 Multiply_3867/fq_weights_1" [label="[128, 128, 3, 3]", style=solid];
-"303 Constant_1724" -> "103 Transpose_1725" [label="[4]", style=dashed];
-"304 Constant_5575" -> "99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [label="[]", style=solid];
-"305 Constant_5574" -> "99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [label="[]", style=solid];
-"306 Constant_5573" -> "99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [label="[]", style=solid];
-"307 Constant_5572" -> "99 up_sampling2d/resize/ResizeNearestNeighbor/fq_output_0" [label="[]", style=solid];
-"308 Constant_669" -> "95 up_sampling2d/resize/ResizeNearestNeighbor" [label="[2]", style=dashed];
-"309 up_sampling2d/Const" -> "102 up_sampling2d/mul" [label="[2]", style=dashed];
-"310 up_sampling2d/strided_slice/stack_2" -> "98 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"311 up_sampling2d/strided_slice/stack_1" -> "98 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"312 up_sampling2d/strided_slice/stack" -> "98 up_sampling2d/strided_slice" [label="[1]", style=dashed];
-"313 Constant_1722" -> "91 leaky_re_lu_17/LeakyRelu" [label="[4]", style=dashed];
-"314 Constant_5690" -> "88 Transpose_1723/fq_output_0" [label="[]", style=solid];
-"315 Constant_5689" -> "88 Transpose_1723/fq_output_0" [label="[]", style=solid];
-"316 Constant_5688" -> "88 Transpose_1723/fq_output_0" [label="[]", style=solid];
-"317 Constant_5687" -> "88 Transpose_1723/fq_output_0" [label="[]", style=solid];
-"318 Transpose_1721" -> "85 Transpose_1723" [label="[1, 1, 1, 1]", style=solid];
-"319 Constant_3931" -> "82 Transpose_1717" [label="[1, 128, 1, 1]", style=solid];
-"320 Multiply_3923/fq_weights_1" -> "79 Multiply_3923" [label="[128, 256, 1, 1]", style=solid];
-"321 Constant_5685" -> "320 Multiply_3923/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"322 Constant_5684" -> "320 Multiply_3923/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"323 Constant_5683" -> "320 Multiply_3923/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"324 Constant_5682" -> "320 Multiply_3923/fq_weights_1" [label="[128, 1, 1, 1]", style=solid];
-"325 Multiply_4064" -> "320 Multiply_3923/fq_weights_1" [label="[128, 256, 1, 1]", style=solid];
-"326 Constant_5680" -> "77 Transpose_1693/fq_output_0" [label="[]", style=solid];
-"327 Constant_5679" -> "77 Transpose_1693/fq_output_0" [label="[]", style=solid];
-"328 Constant_5678" -> "77 Transpose_1693/fq_output_0" [label="[]", style=solid];
-"329 Constant_5677" -> "77 Transpose_1693/fq_output_0" [label="[]", style=solid];
-"330 Transpose_1691" -> "74 Transpose_1693" [label="[1, 1, 1, 1]", style=solid];
-"331 Constant_3917" -> "71 Transpose_1687" [label="[1, 256, 1, 1]", style=solid];
-"332 Multiply_3909/fq_weights_1" -> "68 Multiply_3909" [label="[256, 512, 1, 1]", style=solid];
-"333 Constant_5675" -> "332 Multiply_3909/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"334 Constant_5674" -> "332 Multiply_3909/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"335 Constant_5673" -> "332 Multiply_3909/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"336 Constant_5672" -> "332 Multiply_3909/fq_weights_1" [label="[256, 1, 1, 1]", style=solid];
-"337 Multiply_4058" -> "332 Multiply_3909/fq_weights_1" [label="[256, 512, 1, 1]", style=solid];
-"338 Constant_5670" -> "65 Transpose_1663/fq_output_0" [label="[]", style=solid];
-"339 Constant_5669" -> "65 Transpose_1663/fq_output_0" [label="[]", style=solid];
-"340 Constant_5668" -> "65 Transpose_1663/fq_output_0" [label="[]", style=solid];
-"341 Constant_5667" -> "65 Transpose_1663/fq_output_0" [label="[]", style=solid];
-"342 Transpose_1661" -> "63 Transpose_1663" [label="[1, 1, 1, 1]", style=solid];
-"343 Constant_3903" -> "60 Transpose_1657" [label="[1, 512, 1, 1]", style=solid];
-"344 Multiply_3895/fq_weights_1" -> "56 Multiply_3895" [label="[512, 512, 3, 3]", style=solid];
-"345 Constant_5665" -> "344 Multiply_3895/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"346 Constant_5664" -> "344 Multiply_3895/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"347 Constant_5663" -> "344 Multiply_3895/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"348 Constant_5662" -> "344 Multiply_3895/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"349 Multiply_4052" -> "344 Multiply_3895/fq_weights_1" [label="[512, 512, 3, 3]", style=solid];
-"350 Constant_1798" -> "100 conv2d_17/BiasAdd" [label="[4]", style=dashed];
-"351 Transpose_1797" -> "96 Transpose_1799" [label="[1, 255, 1, 1]", style=solid];
-"352 Convolution_749/fq_weights_1" -> "92 Convolution_749" [label="[255, 512, 1, 1]", style=solid];
-"353 Constant_5720" -> "352 Convolution_749/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"354 Constant_5719" -> "352 Convolution_749/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"355 Constant_5718" -> "352 Convolution_749/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"356 Constant_5717" -> "352 Convolution_749/fq_weights_1" [label="[255, 1, 1, 1]", style=solid];
-"357 Transpose_748" -> "352 Convolution_749/fq_weights_1" [label="[255, 512, 1, 1]", style=solid];
-"358 Constant_5715" -> "89 Transpose_1793/fq_output_0" [label="[]", style=solid];
-"359 Constant_5714" -> "89 Transpose_1793/fq_output_0" [label="[]", style=solid];
-"360 Constant_5713" -> "89 Transpose_1793/fq_output_0" [label="[]", style=solid];
-"361 Constant_5712" -> "89 Transpose_1793/fq_output_0" [label="[]", style=solid];
-"362 Transpose_1791" -> "86 Transpose_1793" [label="[1, 1, 1, 1]", style=solid];
-"363 Constant_3959" -> "83 Transpose_1787" [label="[1, 512, 1, 1]", style=solid];
-"364 Multiply_3951/fq_weights_1" -> "80 Multiply_3951" [label="[512, 256, 3, 3]", style=solid];
-"365 Constant_5710" -> "364 Multiply_3951/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"366 Constant_5709" -> "364 Multiply_3951/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"367 Constant_5708" -> "364 Multiply_3951/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"368 Constant_5707" -> "364 Multiply_3951/fq_weights_1" [label="[512, 1, 1, 1]", style=solid];
-"369 Multiply_4076" -> "364 Multiply_3951/fq_weights_1" [label="[512, 256, 3, 3]", style=solid];
-}
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_mixed.json
deleted file mode 100644
index 05e4ae7b255..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_mixed.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_performance.json
deleted file mode 100644
index 05e4ae7b255..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ComparisonBinaryModel_performance.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ConvModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/ConvModel_mixed.json
deleted file mode 100644
index 7a6b296c118..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ConvModel_mixed.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.6237419843673706,
- "input_high": 0.8222053647041321,
- "output_low": -0.6237419843673706,
- "output_high": 0.8222053647041321
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ConvModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/ConvModel_performance.json
deleted file mode 100644
index 920083274df..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ConvModel_performance.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.8286794424057007,
- "input_high": 0.8222053647041321,
- "output_low": -0.8286794424057007,
- "output_high": 0.8222053647041321
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_mixed.json
deleted file mode 100644
index 7a6b296c118..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_mixed.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.6237419843673706,
- "input_high": 0.8222053647041321,
- "output_low": -0.6237419843673706,
- "output_high": 0.8222053647041321
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_performance.json
deleted file mode 100644
index 920083274df..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ConvNotBiasModel_performance.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.8286794424057007,
- "input_high": 0.8222053647041321,
- "output_low": -0.8286794424057007,
- "output_high": 0.8222053647041321
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_mixed.json
deleted file mode 100644
index 3972ce713d9..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_mixed.json
+++ /dev/null
@@ -1,126 +0,0 @@
-{
- "DepthwiseConv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 0.997209906578064
- ]
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.997209906578064
- ]
- ],
- [
- [
- 0.9545904994010925
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.997209906578064
- ]
- ],
- [
- [
- 0.9545904994010925
- ]
- ]
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_performance.json
deleted file mode 100644
index 3972ce713d9..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/DepthwiseConvModel_performance.json
+++ /dev/null
@@ -1,126 +0,0 @@
-{
- "DepthwiseConv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -0.997209906578064
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 0.997209906578064
- ]
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.997209906578064
- ]
- ],
- [
- [
- 0.9545904994010925
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.997209906578064
- ]
- ],
- [
- [
- 0.9545904994010925
- ]
- ]
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_mixed.json
deleted file mode 100644
index 9cf4da1968f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_mixed.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.6373578310012817,
- "input_high": 0.9560367465019226,
- "output_low": -0.6373578310012817,
- "output_high": 0.9560367465019226
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_performance.json
deleted file mode 100644
index 9727ddf1990..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/DynamicModel_performance.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- -111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- -102.1300277709961
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 71.96717071533203
- ]
- ]
- ],
- [
- [
- [
- 111.47208404541016
- ]
- ]
- ],
- [
- [
- [
- 102.1300277709961
- ]
- ]
- ]
- ]
- },
- "Sub/fq_output_0": {
- "input_low": -0.9635645747184753,
- "input_high": 0.9560367465019226,
- "output_low": -0.9635645747184753,
- "output_high": 0.9560367465019226
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_mixed.json
deleted file mode 100644
index 0240e6cd60f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_mixed.json
+++ /dev/null
@@ -1,174 +0,0 @@
-{
- "Relu/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.8180807828903198,
- "output_low": 0.0,
- "output_high": 1.8180807828903198
- },
- "Conv_Add/fq_output_0": {
- "input_low": 0.0,
- "input_high": 18.557750701904297,
- "output_low": 0.0,
- "output_high": 18.557750701904297
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9898346662521362
- ]
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_performance.json
deleted file mode 100644
index 0240e6cd60f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/GroupNormalizationModel_performance.json
+++ /dev/null
@@ -1,174 +0,0 @@
-{
- "Relu/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.8180807828903198,
- "output_low": 0.0,
- "output_high": 1.8180807828903198
- },
- "Conv_Add/fq_output_0": {
- "input_low": 0.0,
- "input_high": 18.557750701904297,
- "output_low": 0.0,
- "output_high": 18.557750701904297
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9898346662521362
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 1.994419813156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9901930093765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.932124137878418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9898346662521362
- ]
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_asym.json b/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_asym.json
deleted file mode 100644
index 783cad5b51d..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_asym.json
+++ /dev/null
@@ -1,220 +0,0 @@
-{
- "matmul_2_data": {
- "compressed_weight": [
- [
- 115,
- 51,
- 154,
- 255,
- 79,
- 18,
- 139
- ],
- [
- 59,
- 27,
- 174,
- 89,
- 201,
- 60,
- 255
- ],
- [
- 110,
- 32,
- 189,
- 255,
- 132,
- 255,
- 150
- ],
- [
- 190,
- 255,
- 255,
- 255,
- 206,
- 255,
- 223
- ],
- [
- 165,
- 245,
- 129,
- 229,
- 222,
- 255,
- 36
- ],
- [
- 192,
- 245,
- 255,
- 4,
- 228,
- 255,
- 253
- ]
- ],
- "zero_point": [
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ]
- ],
- "scale": [
- [
- 0.0029188350308686495
- ],
- [
- 0.0033386670984327793
- ],
- [
- 0.003329785307869315
- ],
- [
- 0.0022347758058458567
- ],
- [
- 0.003204419743269682
- ],
- [
- 0.0037901517935097218
- ]
- ]
- },
- "matmul_1_data": {
- "compressed_weight": [
- [
- 119,
- 168,
- 11,
- 49,
- 255,
- 255
- ],
- [
- 255,
- 159,
- 255,
- 255,
- 255,
- 255
- ],
- [
- 255,
- 169,
- 59,
- 255,
- 228,
- 135
- ],
- [
- 202,
- 255,
- 255,
- 149,
- 238,
- 134
- ],
- [
- 229,
- 130,
- 151,
- 255,
- 87,
- 240
- ],
- [
- 26,
- 255,
- 245,
- 75,
- 255,
- 18
- ]
- ],
- "zero_point": [
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ]
- ],
- "scale": [
- [
- 0.0025188422296196222
- ],
- [
- 0.002406009240075946
- ],
- [
- 0.0022995758336037397
- ],
- [
- 0.00240068300627172
- ],
- [
- 0.002600457752123475
- ],
- [
- 0.0032075142953544855
- ]
- ]
- },
- "gather_2_data": {
- "scale": [
- [
- [
- 0.039732541888952255
- ],
- [
- 0.05974852666258812
- ]
- ],
- [
- [
- 0.012391435913741589
- ],
- [
- 0.062155596911907196
- ]
- ],
- [
- [
- 0.05492125079035759
- ],
- [
- 0.04583488777279854
- ]
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_sym.json b/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_sym.json
deleted file mode 100644
index 35cf3ff1c15..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_compressed_weights_int4_sym.json
+++ /dev/null
@@ -1,220 +0,0 @@
-{
- "matmul_2_data": {
- "compressed_weight": [
- [
- 115,
- 51,
- 154,
- 255,
- 79,
- 18,
- 139
- ],
- [
- 59,
- 27,
- 174,
- 89,
- 201,
- 60,
- 255
- ],
- [
- 110,
- 32,
- 189,
- 255,
- 132,
- 255,
- 150
- ],
- [
- 190,
- 255,
- 255,
- 255,
- 206,
- 255,
- 223
- ],
- [
- 165,
- 245,
- 129,
- 229,
- 222,
- 255,
- 36
- ],
- [
- 192,
- 245,
- 255,
- 4,
- 228,
- 255,
- 253
- ]
- ],
- "zero_point": [
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ]
- ],
- "scale": [
- [
- 0.0029188350308686495
- ],
- [
- 0.0033386670984327793
- ],
- [
- 0.003329785307869315
- ],
- [
- 0.0022347758058458567
- ],
- [
- 0.003204419743269682
- ],
- [
- 0.0037901517935097218
- ]
- ]
- },
- "matmul_1_data": {
- "compressed_weight": [
- [
- 119,
- 168,
- 11,
- 49,
- 255,
- 255
- ],
- [
- 255,
- 159,
- 255,
- 255,
- 255,
- 255
- ],
- [
- 255,
- 169,
- 59,
- 255,
- 228,
- 135
- ],
- [
- 202,
- 255,
- 255,
- 149,
- 238,
- 134
- ],
- [
- 229,
- 130,
- 151,
- 255,
- 87,
- 240
- ],
- [
- 26,
- 255,
- 245,
- 75,
- 255,
- 18
- ]
- ],
- "zero_point": [
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ],
- [
- 0
- ]
- ],
- "scale": [
- [
- 0.0025188422296196222
- ],
- [
- 0.002406009240075946
- ],
- [
- 0.0022995758336037397
- ],
- [
- 0.00240068300627172
- ],
- [
- 0.002600457752123475
- ],
- [
- 0.0032075142953544855
- ]
- ]
- },
- "gather_2_data": {
- "scale": [
- [
- [
- 0.09099452942609787
- ],
- [
- 0.13039365410804749
- ]
- ],
- [
- [
- 0.10421378910541534
- ],
- [
- 0.13358177244663239
- ]
- ],
- [
- [
- 0.12248633056879044
- ],
- [
- 0.12331127375364304
- ]
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_mixed.json
deleted file mode 100644
index 4dc60d69c0a..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_mixed.json
+++ /dev/null
@@ -1,236 +0,0 @@
-{
- "MatMul_2/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.933105707168579,
- "output_low": 0.0,
- "output_high": 2.933105707168579
- },
- "MatMul_2/fq_weights_1": {
- "input_low": [
- [
- -0.7963242530822754
- ],
- [
- -0.9421131014823914
- ],
- [
- -0.9545904994010925
- ],
- [
- -0.9950965046882629
- ],
- [
- -0.9320597052574158
- ],
- [
- -0.9811950325965881
- ]
- ],
- "input_high": [
- [
- 0.7963242530822754
- ],
- [
- 0.9421131014823914
- ],
- [
- 0.9545904994010925
- ],
- [
- 0.9950965046882629
- ],
- [
- 0.9320597052574158
- ],
- [
- 0.9811950325965881
- ]
- ],
- "output_low": [
- [
- -0.7963242530822754
- ],
- [
- -0.9421131014823914
- ],
- [
- -0.9545904994010925
- ],
- [
- -0.9950965046882629
- ],
- [
- -0.9320597052574158
- ],
- [
- -0.9811950325965881
- ]
- ],
- "output_high": [
- [
- 0.7963242530822754
- ],
- [
- 0.9421131014823914
- ],
- [
- 0.9545904994010925
- ],
- [
- 0.9950965046882629
- ],
- [
- 0.9320597052574158
- ],
- [
- 0.9811950325965881
- ]
- ]
- },
- "Gather_4/fq_input_0": {
- "input_low": 0.0,
- "input_high": 0.91275554895401,
- "output_low": 0.0,
- "output_high": 0.91275554895401
- },
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.7037991285324097,
- "output_low": 0.0,
- "output_high": 1.7037991285324097
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.6706244349479675
- ],
- [
- -0.997209906578064
- ],
- [
- -0.721488356590271
- ],
- [
- -0.9340435266494751
- ],
- [
- -0.8902743458747864
- ],
- [
- -0.876484215259552
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ],
- [
- 0.997209906578064
- ],
- [
- 0.721488356590271
- ],
- [
- 0.9340435266494751
- ],
- [
- 0.8902743458747864
- ],
- [
- 0.876484215259552
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ],
- [
- -0.997209906578064
- ],
- [
- -0.721488356590271
- ],
- [
- -0.9340435266494751
- ],
- [
- -0.8902743458747864
- ],
- [
- -0.876484215259552
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ],
- [
- 0.997209906578064
- ],
- [
- 0.721488356590271
- ],
- [
- 0.9340435266494751
- ],
- [
- 0.8902743458747864
- ],
- [
- 0.876484215259552
- ]
- ]
- },
- "Gather_2/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.91275554895401,
- "output_low": 0.0,
- "output_high": 0.91275554895401
- },
- "Gather_2/fq_weights_0": {
- "input_low": [
- [
- -0.91275554895401
- ],
- [
- -0.9350724220275879
- ],
- [
- -0.8631789088249207
- ]
- ],
- "input_high": [
- [
- 0.91275554895401
- ],
- [
- 0.9350724220275879
- ],
- [
- 0.8631789088249207
- ]
- ],
- "output_low": [
- [
- -0.91275554895401
- ],
- [
- -0.9350724220275879
- ],
- [
- -0.8631789088249207
- ]
- ],
- "output_high": [
- [
- 0.91275554895401
- ],
- [
- 0.9350724220275879
- ],
- [
- 0.8631789088249207
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_performance.json
deleted file mode 100644
index 645988e4a01..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/IntegerModel_performance.json
+++ /dev/null
@@ -1,190 +0,0 @@
-{
- "MatMul_2/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.933105707168579,
- "output_low": 0.0,
- "output_high": 2.933105707168579
- },
- "MatMul_2/fq_weights_1": {
- "input_low": [
- [
- -0.7963242530822754
- ],
- [
- -0.9421131014823914
- ],
- [
- -0.9545904994010925
- ],
- [
- -0.9950965046882629
- ],
- [
- -0.9320597052574158
- ],
- [
- -0.9811950325965881
- ]
- ],
- "input_high": [
- [
- 0.7963242530822754
- ],
- [
- 0.9421131014823914
- ],
- [
- 0.9545904994010925
- ],
- [
- 0.9950965046882629
- ],
- [
- 0.9320597052574158
- ],
- [
- 0.9811950325965881
- ]
- ],
- "output_low": [
- [
- -0.7963242530822754
- ],
- [
- -0.9421131014823914
- ],
- [
- -0.9545904994010925
- ],
- [
- -0.9950965046882629
- ],
- [
- -0.9320597052574158
- ],
- [
- -0.9811950325965881
- ]
- ],
- "output_high": [
- [
- 0.7963242530822754
- ],
- [
- 0.9421131014823914
- ],
- [
- 0.9545904994010925
- ],
- [
- 0.9950965046882629
- ],
- [
- 0.9320597052574158
- ],
- [
- 0.9811950325965881
- ]
- ]
- },
- "Gather_4/fq_input_0": {
- "input_low": 0.0,
- "input_high": 0.91275554895401,
- "output_low": 0.0,
- "output_high": 0.91275554895401
- },
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.7037991285324097,
- "output_low": 0.0,
- "output_high": 1.7037991285324097
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.6706244349479675
- ],
- [
- -0.997209906578064
- ],
- [
- -0.721488356590271
- ],
- [
- -0.9340435266494751
- ],
- [
- -0.8902743458747864
- ],
- [
- -0.876484215259552
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ],
- [
- 0.997209906578064
- ],
- [
- 0.721488356590271
- ],
- [
- 0.9340435266494751
- ],
- [
- 0.8902743458747864
- ],
- [
- 0.876484215259552
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ],
- [
- -0.997209906578064
- ],
- [
- -0.721488356590271
- ],
- [
- -0.9340435266494751
- ],
- [
- -0.8902743458747864
- ],
- [
- -0.876484215259552
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ],
- [
- 0.997209906578064
- ],
- [
- 0.721488356590271
- ],
- [
- 0.9340435266494751
- ],
- [
- 0.8902743458747864
- ],
- [
- 0.876484215259552
- ]
- ]
- },
- "Gather_2/fq_weights_0": {
- "input_low": -0.9350724220275879,
- "input_high": 0.9350724220275879,
- "output_low": -0.9350724220275879,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_mixed.json
deleted file mode 100644
index e8ee468c0c2..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_mixed.json
+++ /dev/null
@@ -1,12396 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9949173331260681,
- -0.992023229598999,
- -0.997209906578064
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9949173331260681,
- 0.992023229598999,
- 0.997209906578064
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9949173331260681,
- -0.992023229598999,
- -0.997209906578064
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9949173331260681,
- 0.992023229598999,
- 0.997209906578064
- ]
- ]
- ]
- ]
- },
- "LSTMSequence/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.23005808889865875,
- "output_low": 0.0,
- "output_high": 0.23005808889865875
- },
- "LSTMSequence/fq_weights_5": {
- "input_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "input_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ],
- "output_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "output_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ]
- },
- "LSTMSequence/fq_weights_4": {
- "input_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "input_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ],
- "output_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "output_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ]
- },
- "initial_cell_state/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9949173331260681,
- "output_low": 0.0,
- "output_high": 0.9949173331260681
- },
- "initial_hidden_state/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9950965046882629,
- "output_low": 0.0,
- "output_high": 0.9950965046882629
- },
- "X/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_performance.json
deleted file mode 100644
index e8ee468c0c2..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/LSTMSequenceModel_performance.json
+++ /dev/null
@@ -1,12396 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9949173331260681,
- -0.992023229598999,
- -0.997209906578064
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9949173331260681,
- 0.992023229598999,
- 0.997209906578064
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9949173331260681,
- -0.992023229598999,
- -0.997209906578064
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9949173331260681,
- 0.992023229598999,
- 0.997209906578064
- ]
- ]
- ]
- ]
- },
- "LSTMSequence/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.23005808889865875,
- "output_low": 0.0,
- "output_high": 0.23005808889865875
- },
- "LSTMSequence/fq_weights_5": {
- "input_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "input_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ],
- "output_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "output_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ]
- },
- "LSTMSequence/fq_weights_4": {
- "input_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "input_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ],
- "output_low": [
- [
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ],
- [
- -7.999999797903001e-05
- ]
- ]
- ],
- "output_high": [
- [
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ],
- [
- 7.999999797903001e-05
- ]
- ]
- ]
- },
- "initial_cell_state/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9949173331260681,
- "output_low": 0.0,
- "output_high": 0.9949173331260681
- },
- "initial_hidden_state/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9950965046882629,
- "output_low": 0.0,
- "output_high": 0.9950965046882629
- },
- "X/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/LinearModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/LinearModel_mixed.json
deleted file mode 100644
index 094f1745091..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/LinearModel_mixed.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- },
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.41275554895401,
- -0.49726149439811707,
- -0.4590264856815338,
- -0.48347237706184387,
- -0.4350724220275879
- ]
- ],
- "input_high": [
- [
- 0.41275554895401,
- 0.49726149439811707,
- 0.4590264856815338,
- 0.48347237706184387,
- 0.4350724220275879
- ]
- ],
- "output_low": [
- [
- -0.41275554895401,
- -0.49726149439811707,
- -0.4590264856815338,
- -0.48347237706184387,
- -0.4350724220275879
- ]
- ],
- "output_high": [
- [
- 0.41275554895401,
- 0.49726149439811707,
- 0.4590264856815338,
- 0.48347237706184387,
- 0.4350724220275879
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/LinearModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/LinearModel_performance.json
deleted file mode 100644
index 094f1745091..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/LinearModel_performance.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- },
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.41275554895401,
- -0.49726149439811707,
- -0.4590264856815338,
- -0.48347237706184387,
- -0.4350724220275879
- ]
- ],
- "input_high": [
- [
- 0.41275554895401,
- 0.49726149439811707,
- 0.4590264856815338,
- 0.48347237706184387,
- 0.4350724220275879
- ]
- ],
- "output_low": [
- [
- -0.41275554895401,
- -0.49726149439811707,
- -0.4590264856815338,
- -0.48347237706184387,
- -0.4350724220275879
- ]
- ],
- "output_high": [
- [
- 0.41275554895401,
- 0.49726149439811707,
- 0.4590264856815338,
- 0.48347237706184387,
- 0.4350724220275879
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_mixed.json
deleted file mode 100644
index fd0ed29955f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_mixed.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "input_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ],
- "output_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "output_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_performance.json
deleted file mode 100644
index fd0ed29955f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/MatMul2DModel_performance.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "input_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ],
- "output_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "output_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_mixed.json
deleted file mode 100644
index 71700abfa50..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_mixed.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "MatMul2/fq_weights_1": {
- "input_low": [
- [
- -0.7296554446220398,
- -0.42268723249435425,
- -0.8631789088249207,
- -0.5414612293243408
- ]
- ],
- "input_high": [
- [
- 0.7296554446220398,
- 0.42268723249435425,
- 0.8631789088249207,
- 0.5414612293243408
- ]
- ],
- "output_low": [
- [
- -0.7296554446220398,
- -0.42268723249435425,
- -0.8631789088249207,
- -0.5414612293243408
- ]
- ],
- "output_high": [
- [
- 0.7296554446220398,
- 0.42268723249435425,
- 0.8631789088249207,
- 0.5414612293243408
- ]
- ]
- },
- "Relu/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.5198161602020264,
- "output_low": 0.0,
- "output_high": 2.5198161602020264
- },
- "MatMul/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.1930606365203857,
- "output_low": 0.0,
- "output_high": 2.1930606365203857
- },
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "input_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ],
- "output_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "output_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_performance.json
deleted file mode 100644
index 71700abfa50..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ScaleShiftReluModel_performance.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "MatMul2/fq_weights_1": {
- "input_low": [
- [
- -0.7296554446220398,
- -0.42268723249435425,
- -0.8631789088249207,
- -0.5414612293243408
- ]
- ],
- "input_high": [
- [
- 0.7296554446220398,
- 0.42268723249435425,
- 0.8631789088249207,
- 0.5414612293243408
- ]
- ],
- "output_low": [
- [
- -0.7296554446220398,
- -0.42268723249435425,
- -0.8631789088249207,
- -0.5414612293243408
- ]
- ],
- "output_high": [
- [
- 0.7296554446220398,
- 0.42268723249435425,
- 0.8631789088249207,
- 0.5414612293243408
- ]
- ]
- },
- "Relu/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.5198161602020264,
- "output_low": 0.0,
- "output_high": 2.5198161602020264
- },
- "MatMul/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.1930606365203857,
- "output_low": 0.0,
- "output_high": 2.1930606365203857
- },
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "input_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ],
- "output_low": [
- [
- -0.8132702112197876,
- -0.9350724220275879
- ]
- ],
- "output_high": [
- [
- 0.8132702112197876,
- 0.9350724220275879
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_mixed.json
deleted file mode 100644
index cd816f7b3be..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_mixed.json
+++ /dev/null
@@ -1,158 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.7870982885360718,
- -0.927154541015625,
- -0.9950965046882629,
- -0.9545904994010925,
- -0.4998958110809326
- ]
- ],
- "input_high": [
- [
- 0.7870982885360718,
- 0.927154541015625,
- 0.9950965046882629,
- 0.9545904994010925,
- 0.4998958110809326
- ]
- ],
- "output_low": [
- [
- -0.7870982885360718,
- -0.927154541015625,
- -0.9950965046882629,
- -0.9545904994010925,
- -0.4998958110809326
- ]
- ],
- "output_high": [
- [
- 0.7870982885360718,
- 0.927154541015625,
- 0.9950965046882629,
- 0.9545904994010925,
- 0.4998958110809326
- ]
- ]
- },
- "Mul/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.4107847213745117,
- "output_low": 0.0,
- "output_high": 2.4107847213745117
- },
- "Sigmoid/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9998180866241455,
- "output_low": 0.0,
- "output_high": 0.9998180866241455
- },
- "Add0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.4112234115600586,
- "output_low": 0.0,
- "output_high": 2.4112234115600586
- },
- "Conv0/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_performance.json
deleted file mode 100644
index cd816f7b3be..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/SeBlockModel_performance.json
+++ /dev/null
@@ -1,158 +0,0 @@
-{
- "MatMul/fq_weights_1": {
- "input_low": [
- [
- -0.7870982885360718,
- -0.927154541015625,
- -0.9950965046882629,
- -0.9545904994010925,
- -0.4998958110809326
- ]
- ],
- "input_high": [
- [
- 0.7870982885360718,
- 0.927154541015625,
- 0.9950965046882629,
- 0.9545904994010925,
- 0.4998958110809326
- ]
- ],
- "output_low": [
- [
- -0.7870982885360718,
- -0.927154541015625,
- -0.9950965046882629,
- -0.9545904994010925,
- -0.4998958110809326
- ]
- ],
- "output_high": [
- [
- 0.7870982885360718,
- 0.927154541015625,
- 0.9950965046882629,
- 0.9545904994010925,
- 0.4998958110809326
- ]
- ]
- },
- "Mul/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.4107847213745117,
- "output_low": 0.0,
- "output_high": 2.4107847213745117
- },
- "Sigmoid/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9998180866241455,
- "output_low": 0.0,
- "output_high": 0.9998180866241455
- },
- "Add0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 2.4112234115600586,
- "output_low": 0.0,
- "output_high": 2.4112234115600586
- },
- "Conv0/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_mixed.json
deleted file mode 100644
index e00d7db224f..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_mixed.json
+++ /dev/null
@@ -1,302 +0,0 @@
-{
- "Conv_3/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ]
- },
- "Conv_Add_2/fq_output_0": {
- "input_low": 0.0,
- "input_high": 69.2682113647461,
- "output_low": 0.0,
- "output_high": 69.2682113647461
- },
- "Conv_2/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ]
- },
- "Conv_Add_1/fq_output_0": {
- "input_low": -0.16025736927986145,
- "input_high": 20.27255630493164,
- "output_low": -0.16025736927986145,
- "output_high": 20.27255630493164
- },
- "Conv_1/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- -25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- -5.045896530151367
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- 25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- 5.045896530151367
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- -25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- -5.045896530151367
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- 25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- 5.045896530151367
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_performance.json
deleted file mode 100644
index 303eb74c182..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/ShapeOfModel_performance.json
+++ /dev/null
@@ -1,302 +0,0 @@
-{
- "Conv_3/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ]
- },
- "Conv_Add_2/fq_output_0": {
- "input_low": 0.0,
- "input_high": 69.2682113647461,
- "output_low": 0.0,
- "output_high": 69.2682113647461
- },
- "Conv_2/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- -12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- -2.5229482650756836
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 21.722476959228516
- ]
- ]
- ],
- [
- [
- [
- 12.735410690307617
- ]
- ]
- ],
- [
- [
- [
- 2.5229482650756836
- ]
- ]
- ]
- ]
- },
- "Conv_Add_1/fq_output_0": {
- "input_low": -19.970783233642578,
- "input_high": 19.814762115478516,
- "output_low": -19.970783233642578,
- "output_high": 19.814762115478516
- },
- "Conv_1/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- -25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- -5.045896530151367
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- 25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- 5.045896530151367
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- -25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- -5.045896530151367
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 43.44495391845703
- ]
- ]
- ],
- [
- [
- [
- 25.470821380615234
- ]
- ]
- ],
- [
- [
- [
- 5.045896530151367
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.9350724220275879,
- "output_low": 0.0,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_mixed.json
deleted file mode 100644
index 963441f42a1..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_mixed.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv_1/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_performance.json
deleted file mode 100644
index 963441f42a1..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/SharedConvModel_performance.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "Conv_1/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_mixed.json
deleted file mode 100644
index efc4a7e1feb..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_mixed.json
+++ /dev/null
@@ -1,218 +0,0 @@
-{
- "MatMul_2/fq_weights_1": {
- "input_low": [
- [
- -0.9421131014823914
- ]
- ],
- "input_high": [
- [
- 0.9421131014823914
- ]
- ],
- "output_low": [
- [
- -0.9421131014823914
- ]
- ],
- "output_high": [
- [
- 0.9421131014823914
- ]
- ]
- },
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.8132702112197876,
- "output_low": 0.0,
- "output_high": 0.8132702112197876
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- [
- -0.6884467601776123,
- -0.997209906578064,
- -0.9808353185653687,
- -0.721488356590271,
- -0.6504592895507812
- ]
- ],
- [
- [
- -0.8902743458747864,
- -0.48583537340164185,
- -0.8894878625869751,
- -0.9340435266494751,
- -0.8326441645622253
- ]
- ],
- [
- [
- -0.7870982885360718,
- -0.4503393769264221,
- -0.876484215259552,
- -0.5803323984146118,
- -0.33611705899238586
- ]
- ]
- ],
- "input_high": [
- [
- [
- 0.6884467601776123,
- 0.997209906578064,
- 0.9808353185653687,
- 0.721488356590271,
- 0.6504592895507812
- ]
- ],
- [
- [
- 0.8902743458747864,
- 0.48583537340164185,
- 0.8894878625869751,
- 0.9340435266494751,
- 0.8326441645622253
- ]
- ],
- [
- [
- 0.7870982885360718,
- 0.4503393769264221,
- 0.876484215259552,
- 0.5803323984146118,
- 0.33611705899238586
- ]
- ]
- ],
- "output_low": [
- [
- [
- -0.6884467601776123,
- -0.997209906578064,
- -0.9808353185653687,
- -0.721488356590271,
- -0.6504592895507812
- ]
- ],
- [
- [
- -0.8902743458747864,
- -0.48583537340164185,
- -0.8894878625869751,
- -0.9340435266494751,
- -0.8326441645622253
- ]
- ],
- [
- [
- -0.7870982885360718,
- -0.4503393769264221,
- -0.876484215259552,
- -0.5803323984146118,
- -0.33611705899238586
- ]
- ]
- ],
- "output_high": [
- [
- [
- 0.6884467601776123,
- 0.997209906578064,
- 0.9808353185653687,
- 0.721488356590271,
- 0.6504592895507812
- ]
- ],
- [
- [
- 0.8902743458747864,
- 0.48583537340164185,
- 0.8894878625869751,
- 0.9340435266494751,
- 0.8326441645622253
- ]
- ],
- [
- [
- 0.7870982885360718,
- 0.4503393769264221,
- 0.876484215259552,
- 0.5803323984146118,
- 0.33611705899238586
- ]
- ]
- ]
- },
- "MatMul_1/fq_input_0": {
- "input_low": 0.0,
- "input_high": 0.6369616985321045,
- "output_low": 0.0,
- "output_high": 0.6369616985321045
- },
- "Gather_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.8132702112197876,
- "output_low": 0.0,
- "output_high": 0.8132702112197876
- },
- "Gather_1/fq_weights_0": {
- "input_low": [
- [
- -0.8132702112197876
- ],
- [
- -0.9350724220275879
- ],
- [
- -0.8574042916297913
- ],
- [
- -0.8631789088249207
- ]
- ],
- "input_high": [
- [
- 0.8132702112197876
- ],
- [
- 0.9350724220275879
- ],
- [
- 0.8574042916297913
- ],
- [
- 0.8631789088249207
- ]
- ],
- "output_low": [
- [
- -0.8132702112197876
- ],
- [
- -0.9350724220275879
- ],
- [
- -0.8574042916297913
- ],
- [
- -0.8631789088249207
- ]
- ],
- "output_high": [
- [
- 0.8132702112197876
- ],
- [
- 0.9350724220275879
- ],
- [
- 0.8574042916297913
- ],
- [
- 0.8631789088249207
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_performance.json
deleted file mode 100644
index 2fe0a1d4ff4..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/UnifiedEmbeddingModel_performance.json
+++ /dev/null
@@ -1,160 +0,0 @@
-{
- "MatMul_2/fq_weights_1": {
- "input_low": [
- [
- -0.9421131014823914
- ]
- ],
- "input_high": [
- [
- 0.9421131014823914
- ]
- ],
- "output_low": [
- [
- -0.9421131014823914
- ]
- ],
- "output_high": [
- [
- 0.9421131014823914
- ]
- ]
- },
- "MatMul_1/fq_output_0": {
- "input_low": -0.9424352049827576,
- "input_high": 0.9350724220275879,
- "output_low": -0.9424352049827576,
- "output_high": 0.9350724220275879
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- [
- -0.6884467601776123,
- -0.997209906578064,
- -0.9808353185653687,
- -0.721488356590271,
- -0.6504592895507812
- ]
- ],
- [
- [
- -0.8902743458747864,
- -0.48583537340164185,
- -0.8894878625869751,
- -0.9340435266494751,
- -0.8326441645622253
- ]
- ],
- [
- [
- -0.7870982885360718,
- -0.4503393769264221,
- -0.876484215259552,
- -0.5803323984146118,
- -0.33611705899238586
- ]
- ]
- ],
- "input_high": [
- [
- [
- 0.6884467601776123,
- 0.997209906578064,
- 0.9808353185653687,
- 0.721488356590271,
- 0.6504592895507812
- ]
- ],
- [
- [
- 0.8902743458747864,
- 0.48583537340164185,
- 0.8894878625869751,
- 0.9340435266494751,
- 0.8326441645622253
- ]
- ],
- [
- [
- 0.7870982885360718,
- 0.4503393769264221,
- 0.876484215259552,
- 0.5803323984146118,
- 0.33611705899238586
- ]
- ]
- ],
- "output_low": [
- [
- [
- -0.6884467601776123,
- -0.997209906578064,
- -0.9808353185653687,
- -0.721488356590271,
- -0.6504592895507812
- ]
- ],
- [
- [
- -0.8902743458747864,
- -0.48583537340164185,
- -0.8894878625869751,
- -0.9340435266494751,
- -0.8326441645622253
- ]
- ],
- [
- [
- -0.7870982885360718,
- -0.4503393769264221,
- -0.876484215259552,
- -0.5803323984146118,
- -0.33611705899238586
- ]
- ]
- ],
- "output_high": [
- [
- [
- 0.6884467601776123,
- 0.997209906578064,
- 0.9808353185653687,
- 0.721488356590271,
- 0.6504592895507812
- ]
- ],
- [
- [
- 0.8902743458747864,
- 0.48583537340164185,
- 0.8894878625869751,
- 0.9340435266494751,
- 0.8326441645622253
- ]
- ],
- [
- [
- 0.7870982885360718,
- 0.4503393769264221,
- 0.876484215259552,
- 0.5803323984146118,
- 0.33611705899238586
- ]
- ]
- ]
- },
- "MatMul_1/fq_input_0": {
- "input_low": 0.0,
- "input_high": 0.6369616985321045,
- "output_low": 0.0,
- "output_high": 0.6369616985321045
- },
- "Gather_1/fq_weights_0": {
- "input_low": -0.9424352049827576,
- "input_high": 0.9350724220275879,
- "output_low": -0.9424352049827576,
- "output_high": 0.9350724220275879
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_mixed.json
deleted file mode 100644
index 8be56b206ff..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_mixed.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.6725258827209473,
- "output_low": 0.0,
- "output_high": 0.6725258827209473
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "input_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ],
- "output_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "output_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ]
- },
- "Conv_backprop/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5910722017288208,
- "output_low": 0.0,
- "output_high": 1.5910722017288208
- },
- "Conv_backprop/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ]
- },
- "Conv/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5983772277832031,
- "output_low": 0.0,
- "output_high": 1.5983772277832031
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- },
- "MatMul_0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.4510122835636139,
- "output_low": 0.0,
- "output_high": 0.4510122835636139
- },
- "MatMul_0/fq_weights_0": {
- "input_low": [
- [
- -0.6706244349479675
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_disable.json b/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_disable.json
deleted file mode 100644
index 4c2f7325822..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_disable.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.6725258827209473,
- "output_low": 0.0,
- "output_high": 0.6725258827209473
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "input_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ],
- "output_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "output_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ]
- },
- "Conv_backprop/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5910722017288208,
- "output_low": 0.0,
- "output_high": 1.5910722017288208
- },
- "Conv_backprop/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ]
- },
- "Conv/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5983772277832031,
- "output_low": 0.0,
- "output_high": 1.5983772277832031
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.6369616985321045
- ]
- ]
- ],
- [
- [
- [
- -0.91275554895401
- ]
- ]
- ],
- [
- [
- [
- -0.7294965386390686
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.6369616985321045
- ]
- ]
- ],
- [
- [
- [
- 0.91275554895401
- ]
- ]
- ],
- [
- [
- [
- 0.7294965386390686
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.6369616985321045
- ]
- ]
- ],
- [
- [
- [
- -0.91275554895401
- ]
- ]
- ],
- [
- [
- [
- -0.7294965386390686
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.6369616985321045
- ]
- ]
- ],
- [
- [
- [
- 0.91275554895401
- ]
- ]
- ],
- [
- [
- [
- 0.7294965386390686
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- },
- "MatMul_0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.4510122835636139,
- "output_low": 0.0,
- "output_high": 0.4510122835636139
- },
- "MatMul_0/fq_weights_0": {
- "input_low": [
- [
- -0.6706244349479675
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_enable.json b/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_enable.json
deleted file mode 100644
index f07c42fed06..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_enable.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.6725258827209473,
- "output_low": 0.0,
- "output_high": 0.6725258827209473
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.5994237661361694,
- -0.8453744649887085,
- -0.05663934350013733,
- -0.24856655299663544
- ]
- ],
- "input_high": [
- [
- 0.5994237661361694,
- 0.8453744649887085,
- 0.05663934350013733,
- 0.24856655299663544
- ]
- ],
- "output_low": [
- [
- -0.5994237661361694,
- -0.8453744649887085,
- -0.05663934350013733,
- -0.24856655299663544
- ]
- ],
- "output_high": [
- [
- 0.5994237661361694,
- 0.8453744649887085,
- 0.05663934350013733,
- 0.24856655299663544
- ]
- ]
- },
- "Conv_backprop/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5910722017288208,
- "output_low": 0.0,
- "output_high": 1.5910722017288208
- },
- "Conv_backprop/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.8701448440551758
- ]
- ],
- [
- [
- -1.7263578176498413
- ]
- ],
- [
- [
- -1.4593108892440796
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.8701448440551758
- ]
- ],
- [
- [
- 1.7263578176498413
- ]
- ],
- [
- [
- 1.4593108892440796
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.8701448440551758
- ]
- ],
- [
- [
- -1.7263578176498413
- ]
- ],
- [
- [
- -1.4593108892440796
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.8701448440551758
- ]
- ],
- [
- [
- 1.7263578176498413
- ]
- ],
- [
- [
- 1.4593108892440796
- ]
- ]
- ]
- ]
- },
- "Conv/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5983772277832031,
- "output_low": 0.0,
- "output_high": 1.5983772277832031
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- },
- "MatMul_0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.4510122835636139,
- "output_low": 0.0,
- "output_high": 0.4510122835636139
- },
- "MatMul_0/fq_weights_0": {
- "input_low": [
- [
- -1.341248869895935
- ]
- ],
- "input_high": [
- [
- 1.341248869895935
- ]
- ],
- "output_low": [
- [
- -1.341248869895935
- ]
- ],
- "output_high": [
- [
- 1.341248869895935
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_first_layer_only.json b/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_first_layer_only.json
deleted file mode 100644
index 8be56b206ff..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_overflow_fix_first_layer_only.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.6725258827209473,
- "output_low": 0.0,
- "output_high": 0.6725258827209473
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "input_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ],
- "output_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "output_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ]
- },
- "Conv_backprop/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5910722017288208,
- "output_low": 0.0,
- "output_high": 1.5910722017288208
- },
- "Conv_backprop/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ]
- },
- "Conv/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5983772277832031,
- "output_low": 0.0,
- "output_high": 1.5983772277832031
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- },
- "MatMul_0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.4510122835636139,
- "output_low": 0.0,
- "output_high": 0.4510122835636139
- },
- "MatMul_0/fq_weights_0": {
- "input_low": [
- [
- -0.6706244349479675
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_performance.json b/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_performance.json
deleted file mode 100644
index 8be56b206ff..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/WeightsModel_performance.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "MatMul_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.6725258827209473,
- "output_low": 0.0,
- "output_high": 0.6725258827209473
- },
- "MatMul_1/fq_weights_1": {
- "input_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "input_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ],
- "output_low": [
- [
- -0.2997118830680847,
- -0.42268723249435425,
- -0.028319671750068665,
- -0.12428327649831772
- ]
- ],
- "output_high": [
- [
- 0.2997118830680847,
- 0.42268723249435425,
- 0.028319671750068665,
- 0.12428327649831772
- ]
- ]
- },
- "Conv_backprop/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5910722017288208,
- "output_low": 0.0,
- "output_high": 1.5910722017288208
- },
- "Conv_backprop/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9350724220275879
- ]
- ],
- [
- [
- -0.8631789088249207
- ]
- ],
- [
- [
- -0.7296554446220398
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9350724220275879
- ]
- ],
- [
- [
- 0.8631789088249207
- ]
- ],
- [
- [
- 0.7296554446220398
- ]
- ]
- ]
- ]
- },
- "Conv/fq_output_0": {
- "input_low": 0.0,
- "input_high": 1.5983772277832031,
- "output_low": 0.0,
- "output_high": 1.5983772277832031
- },
- "Conv/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- -1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- -1.4589930772781372
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.273923397064209
- ]
- ]
- ],
- [
- [
- [
- 1.82551109790802
- ]
- ]
- ],
- [
- [
- [
- 1.4589930772781372
- ]
- ]
- ]
- ]
- },
- "Input_1/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.997209906578064,
- "output_low": 0.0,
- "output_high": 0.997209906578064
- },
- "MatMul_0/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.4510122835636139,
- "output_low": 0.0,
- "output_high": 0.4510122835636139
- },
- "MatMul_0/fq_weights_0": {
- "input_low": [
- [
- -0.6706244349479675
- ]
- ],
- "input_high": [
- [
- 0.6706244349479675
- ]
- ],
- "output_low": [
- [
- -0.6706244349479675
- ]
- ],
- "output_high": [
- [
- 0.6706244349479675
- ]
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/openvino/native/data/2023.1/reference_scales/mobilenet-v2-pytorch_mixed.json b/tests/openvino/native/data/2023.1/reference_scales/mobilenet-v2-pytorch_mixed.json
deleted file mode 100644
index 6ebb0ddc3de..00000000000
--- a/tests/openvino/native/data/2023.1/reference_scales/mobilenet-v2-pytorch_mixed.json
+++ /dev/null
@@ -1,690496 +0,0 @@
-{
- "/classifier/classifier.1/Gemm/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- -0.1554616540670395
- ],
- [
- -0.1975422203540802
- ],
- [
- -0.19815252721309662
- ],
- [
- -0.19275590777397156
- ],
- [
- -0.1632937341928482
- ],
- [
- -0.1923627406358719
- ],
- [
- -0.18891191482543945
- ],
- [
- -0.19505365192890167
- ],
- [
- -0.16614100337028503
- ],
- [
- -0.2026558220386505
- ],
- [
- -0.17544172704219818
- ],
- [
- -0.17875641584396362
- ],
- [
- -0.19346709549427032
- ],
- [
- -0.19736085832118988
- ],
- [
- -0.21658942103385925
- ],
- [
- -0.16777093708515167
- ],
- [
- -0.16759631037712097
- ],
- [
- -0.19211065769195557
- ],
- [
- -0.16350416839122772
- ],
- [
- -0.17982250452041626
- ],
- [
- -0.17943334579467773
- ],
- [
- -0.18009012937545776
- ],
- [
- -0.20071813464164734
- ],
- [
- -0.1820417046546936
- ],
- [
- -0.18197399377822876
- ],
- [
- -0.17596738040447235
- ],
- [
- -0.14973224699497223
- ],
- [
- -0.157967671751976
- ],
- [
- -0.1670437604188919
- ],
- [
- -0.19772693514823914
- ],
- [
- -0.15720735490322113
- ],
- [
- -0.1574394851922989
- ],
- [
- -0.1458834856748581
- ],
- [
- -0.16934432089328766
- ],
- [
- -0.21939755976200104
- ],
- [
- -0.1791817992925644
- ],
- [
- -0.17166835069656372
- ],
- [
- -0.15734130144119263
- ],
- [
- -0.2154453992843628
- ],
- [
- -0.16703885793685913
- ],
- [
- -0.14975644648075104
- ],
- [
- -0.15567708015441895
- ],
- [
- -0.21273085474967957
- ],
- [
- -0.17863717675209045
- ],
- [
- -0.1500164419412613
- ],
- [
- -0.19780881702899933
- ],
- [
- -0.14390213787555695
- ],
- [
- -0.16493703424930573
- ],
- [
- -0.16165776550769806
- ],
- [
- -0.16916118562221527
- ],
- [
- -0.16741515696048737
- ],
- [
- -0.19759589433670044
- ],
- [
- -0.14447800815105438
- ],
- [
- -0.19408459961414337
- ],
- [
- -0.15510299801826477
- ],
- [
- -0.15851148962974548
- ],
- [
- -0.1577356457710266
- ],
- [
- -0.16961176693439484
- ],
- [
- -0.1655804067850113
- ],
- [
- -0.16352957487106323
- ],
- [
- -0.15973614156246185
- ],
- [
- -0.1958252489566803
- ],
- [
- -0.15216363966464996
- ],
- [
- -0.16100147366523743
- ],
- [
- -0.1638059765100479
- ],
- [
- -0.19385847449302673
- ],
- [
- -0.1567348837852478
- ],
- [
- -0.1739172339439392
- ],
- [
- -0.17613054811954498
- ],
- [
- -0.16814537346363068
- ],
- [
- -0.15428847074508667
- ],
- [
- -0.18976397812366486
- ],
- [
- -0.18346834182739258
- ],
- [
- -0.18718120455741882
- ],
- [
- -0.17757417261600494
- ],
- [
- -0.1564321219921112
- ],
- [
- -0.19593022763729095
- ],
- [
- -0.16516827046871185
- ],
- [
- -0.1725962907075882
- ],
- [
- -0.18348577618598938
- ],
- [
- -0.15860189497470856
- ],
- [
- -0.2019111067056656
- ],
- [
- -0.19141781330108643
- ],
- [
- -0.1870553344488144
- ],
- [
- -0.19091860949993134
- ],
- [
- -0.1963810920715332
- ],
- [
- -0.1551758199930191
- ],
- [
- -0.19004997611045837
- ],
- [
- -0.17954422533512115
- ],
- [
- -0.17040644586086273
- ],
- [
- -0.20762114226818085
- ],
- [
- -0.17358563840389252
- ],
- [
- -0.19947870075702667
- ],
- [
- -0.20734532177448273
- ],
- [
- -0.19740080833435059
- ],
- [
- -0.18585246801376343
- ],
- [
- -0.17795231938362122
- ],
- [
- -0.1665991246700287
- ],
- [
- -0.18589343130588531
- ],
- [
- -0.17855334281921387
- ],
- [
- -0.176802858710289
- ],
- [
- -0.21271899342536926
- ],
- [
- -0.19119681417942047
- ],
- [
- -0.1980128139257431
- ],
- [
- -0.16658519208431244
- ],
- [
- -0.17710739374160767
- ],
- [
- -0.15256288647651672
- ],
- [
- -0.18983004987239838
- ],
- [
- -0.1538560837507248
- ],
- [
- -0.16041402518749237
- ],
- [
- -0.1940893530845642
- ],
- [
- -0.28210437297821045
- ],
- [
- -0.18090768158435822
- ],
- [
- -0.15481793880462646
- ],
- [
- -0.17062480747699738
- ],
- [
- -0.22132103145122528
- ],
- [
- -0.16138815879821777
- ],
- [
- -0.20396102964878082
- ],
- [
- -0.1852949559688568
- ],
- [
- -0.1882438212633133
- ],
- [
- -0.1543368250131607
- ],
- [
- -0.1559508889913559
- ],
- [
- -0.3038824200630188
- ],
- [
- -0.15609534084796906
- ],
- [
- -0.15606719255447388
- ],
- [
- -0.1690848469734192
- ],
- [
- -0.15160515904426575
- ],
- [
- -0.15777899324893951
- ],
- [
- -0.16711781919002533
- ],
- [
- -0.1764446198940277
- ],
- [
- -0.20234768092632294
- ],
- [
- -0.15752936899662018
- ],
- [
- -0.16651871800422668
- ],
- [
- -0.17491839826107025
- ],
- [
- -0.20015445351600647
- ],
- [
- -0.16318103671073914
- ],
- [
- -0.20413576066493988
- ],
- [
- -0.1840687096118927
- ],
- [
- -0.17463408410549164
- ],
- [
- -0.1678122878074646
- ],
- [
- -0.15287120640277863
- ],
- [
- -0.17828428745269775
- ],
- [
- -0.15503408014774323
- ],
- [
- -0.19394060969352722
- ],
- [
- -0.18013359606266022
- ],
- [
- -0.194406658411026
- ],
- [
- -0.17791183292865753
- ],
- [
- -0.15880170464515686
- ],
- [
- -0.1970207691192627
- ],
- [
- -0.19493091106414795
- ],
- [
- -0.2132979780435562
- ],
- [
- -0.13604971766471863
- ],
- [
- -0.14387249946594238
- ],
- [
- -0.15706458687782288
- ],
- [
- -0.1441241353750229
- ],
- [
- -0.1456950306892395
- ],
- [
- -0.16140998899936676
- ],
- [
- -0.14745505154132843
- ],
- [
- -0.14955733716487885
- ],
- [
- -0.13720279932022095
- ],
- [
- -0.14628441631793976
- ],
- [
- -0.15323592722415924
- ],
- [
- -0.1414981335401535
- ],
- [
- -0.14737191796302795
- ],
- [
- -0.15496139228343964
- ],
- [
- -0.13915173709392548
- ],
- [
- -0.1395258605480194
- ],
- [
- -0.15097515285015106
- ],
- [
- -0.14261914789676666
- ],
- [
- -0.1680321842432022
- ],
- [
- -0.15259958803653717
- ],
- [
- -0.1438864767551422
- ],
- [
- -0.1865168660879135
- ],
- [
- -0.1623374968767166
- ],
- [
- -0.14232207834720612
- ],
- [
- -0.14515051245689392
- ],
- [
- -0.1602032482624054
- ],
- [
- -0.1362183690071106
- ],
- [
- -0.16892684996128082
- ],
- [
- -0.18019527196884155
- ],
- [
- -0.14054836332798004
- ],
- [
- -0.16556498408317566
- ],
- [
- -0.1487024873495102
- ],
- [
- -0.1330948919057846
- ],
- [
- -0.17255175113677979
- ],
- [
- -0.1688777208328247
- ],
- [
- -0.13641972839832306
- ],
- [
- -0.1392057090997696
- ],
- [
- -0.13428297638893127
- ],
- [
- -0.17613103985786438
- ],
- [
- -0.1469261795282364
- ],
- [
- -0.16084416210651398
- ],
- [
- -0.16282273828983307
- ],
- [
- -0.1485363245010376
- ],
- [
- -0.15152333676815033
- ],
- [
- -0.1347143054008484
- ],
- [
- -0.13911904394626617
- ],
- [
- -0.14172464609146118
- ],
- [
- -0.16149453818798065
- ],
- [
- -0.16716161370277405
- ],
- [
- -0.1490926593542099
- ],
- [
- -0.1630668044090271
- ],
- [
- -0.1563192456960678
- ],
- [
- -0.30908846855163574
- ],
- [
- -0.15396101772785187
- ],
- [
- -0.13763822615146637
- ],
- [
- -0.1573229730129242
- ],
- [
- -0.1458754539489746
- ],
- [
- -0.2124687135219574
- ],
- [
- -0.13131213188171387
- ],
- [
- -0.14602069556713104
- ],
- [
- -0.1606072187423706
- ],
- [
- -0.15101312100887299
- ],
- [
- -0.14434655010700226
- ],
- [
- -0.13670538365840912
- ],
- [
- -0.12839893996715546
- ],
- [
- -0.15258818864822388
- ],
- [
- -0.18240438401699066
- ],
- [
- -0.14064869284629822
- ],
- [
- -0.15807132422924042
- ],
- [
- -0.15209217369556427
- ],
- [
- -0.1419975906610489
- ],
- [
- -0.13598614931106567
- ],
- [
- -0.14221300184726715
- ],
- [
- -0.15173684060573578
- ],
- [
- -0.14439542591571808
- ],
- [
- -0.15190725028514862
- ],
- [
- -0.1393192857503891
- ],
- [
- -0.183673694729805
- ],
- [
- -0.1676936000585556
- ],
- [
- -0.1360417902469635
- ],
- [
- -0.2881479561328888
- ],
- [
- -0.16910609602928162
- ],
- [
- -0.13352417945861816
- ],
- [
- -0.1296633929014206
- ],
- [
- -0.1437918245792389
- ],
- [
- -0.12645654380321503
- ],
- [
- -0.1495286077260971
- ],
- [
- -0.13880714774131775
- ],
- [
- -0.13524878025054932
- ],
- [
- -0.1409737914800644
- ],
- [
- -0.14624647796154022
- ],
- [
- -0.18651117384433746
- ],
- [
- -0.16946345567703247
- ],
- [
- -0.14949281513690948
- ],
- [
- -0.1477336585521698
- ],
- [
- -0.21915489435195923
- ],
- [
- -0.14885690808296204
- ],
- [
- -0.15019501745700836
- ],
- [
- -0.15175694227218628
- ],
- [
- -0.13289572298526764
- ],
- [
- -0.15563049912452698
- ],
- [
- -0.14055584371089935
- ],
- [
- -0.15766851603984833
- ],
- [
- -0.1481427401304245
- ],
- [
- -0.15644818544387817
- ],
- [
- -0.13985498249530792
- ],
- [
- -0.11431986093521118
- ],
- [
- -0.1623237431049347
- ],
- [
- -0.13968627154827118
- ],
- [
- -0.1521422564983368
- ],
- [
- -0.14525818824768066
- ],
- [
- -0.1610676646232605
- ],
- [
- -0.1531512439250946
- ],
- [
- -0.19808046519756317
- ],
- [
- -0.1537771224975586
- ],
- [
- -0.1539282649755478
- ],
- [
- -0.1464168131351471
- ],
- [
- -0.17963628470897675
- ],
- [
- -0.1485971361398697
- ],
- [
- -0.141460582613945
- ],
- [
- -0.19123481214046478
- ],
- [
- -0.1403573602437973
- ],
- [
- -0.13767030835151672
- ],
- [
- -0.16806331276893616
- ],
- [
- -0.1673450618982315
- ],
- [
- -0.1478317826986313
- ],
- [
- -0.16226759552955627
- ],
- [
- -0.1504182517528534
- ],
- [
- -0.15283240377902985
- ],
- [
- -0.14401422441005707
- ],
- [
- -0.1596337854862213
- ],
- [
- -0.21676887571811676
- ],
- [
- -0.13491491973400116
- ],
- [
- -0.18152843415737152
- ],
- [
- -0.13824713230133057
- ],
- [
- -0.15338853001594543
- ],
- [
- -0.17609448730945587
- ],
- [
- -0.1495874673128128
- ],
- [
- -0.15294019877910614
- ],
- [
- -0.14528177678585052
- ],
- [
- -0.17574435472488403
- ],
- [
- -0.169702410697937
- ],
- [
- -0.1472545713186264
- ],
- [
- -0.14803604781627655
- ],
- [
- -0.18454037606716156
- ],
- [
- -0.1599598228931427
- ],
- [
- -0.15051262080669403
- ],
- [
- -0.16271421313285828
- ],
- [
- -0.1690702736377716
- ],
- [
- -0.16742467880249023
- ],
- [
- -0.14732667803764343
- ],
- [
- -0.14613237977027893
- ],
- [
- -0.1706421673297882
- ],
- [
- -0.1492362916469574
- ],
- [
- -0.20478655397891998
- ],
- [
- -0.18628975749015808
- ],
- [
- -0.18614841997623444
- ],
- [
- -0.18360406160354614
- ],
- [
- -0.17302314937114716
- ],
- [
- -0.16951556503772736
- ],
- [
- -0.16514141857624054
- ],
- [
- -0.17182575166225433
- ],
- [
- -0.1680196225643158
- ],
- [
- -0.1738901138305664
- ],
- [
- -0.2046060860157013
- ],
- [
- -0.1991339921951294
- ],
- [
- -0.16841518878936768
- ],
- [
- -0.18121151626110077
- ],
- [
- -0.18472367525100708
- ],
- [
- -0.18740805983543396
- ],
- [
- -0.18905211985111237
- ],
- [
- -0.18663005530834198
- ],
- [
- -0.17923007905483246
- ],
- [
- -0.19697289168834686
- ],
- [
- -0.21080587804317474
- ],
- [
- -0.16534699499607086
- ],
- [
- -0.16663599014282227
- ],
- [
- -0.23738177120685577
- ],
- [
- -0.16369733214378357
- ],
- [
- -0.18115276098251343
- ],
- [
- -0.15539315342903137
- ],
- [
- -0.17165030539035797
- ],
- [
- -0.2192673236131668
- ],
- [
- -0.18592023849487305
- ],
- [
- -0.21107617020606995
- ],
- [
- -0.1565266251564026
- ],
- [
- -0.1613844931125641
- ],
- [
- -0.17557285726070404
- ],
- [
- -0.15444649755954742
- ],
- [
- -0.19357317686080933
- ],
- [
- -0.18057496845722198
- ],
- [
- -0.1677565723657608
- ],
- [
- -0.1801391988992691
- ],
- [
- -0.18744203448295593
- ],
- [
- -0.19864708185195923
- ],
- [
- -0.1822778582572937
- ],
- [
- -0.20251941680908203
- ],
- [
- -0.1965763121843338
- ],
- [
- -0.19803616404533386
- ],
- [
- -0.18668320775032043
- ],
- [
- -0.16774487495422363
- ],
- [
- -0.16835254430770874
- ],
- [
- -0.15865857899188995
- ],
- [
- -0.1844508945941925
- ],
- [
- -0.1867118924856186
- ],
- [
- -0.19959378242492676
- ],
- [
- -0.19621115922927856
- ],
- [
- -0.1811380833387375
- ],
- [
- -0.1599198579788208
- ],
- [
- -0.15470530092716217
- ],
- [
- -0.1663578748703003
- ],
- [
- -0.16461433470249176
- ],
- [
- -0.17861227691173553
- ],
- [
- -0.18070274591445923
- ],
- [
- -0.1875942200422287
- ],
- [
- -0.14198093116283417
- ],
- [
- -0.1712108999490738
- ],
- [
- -0.15546587109565735
- ],
- [
- -0.15635712444782257
- ],
- [
- -0.14400799572467804
- ],
- [
- -0.1720377504825592
- ],
- [
- -0.16787372529506683
- ],
- [
- -0.1397639662027359
- ],
- [
- -0.14904029667377472
- ],
- [
- -0.18165622651576996
- ],
- [
- -0.18291693925857544
- ],
- [
- -0.15101400017738342
- ],
- [
- -0.156324103474617
- ],
- [
- -0.1560845822095871
- ],
- [
- -0.19682712852954865
- ],
- [
- -0.15480953454971313
- ],
- [
- -0.159444659948349
- ],
- [
- -0.1494983732700348
- ],
- [
- -0.16678914427757263
- ],
- [
- -0.2120104432106018
- ],
- [
- -0.17350763082504272
- ],
- [
- -0.19693617522716522
- ],
- [
- -0.17883536219596863
- ],
- [
- -0.16634979844093323
- ],
- [
- -0.19762341678142548
- ],
- [
- -0.18416942656040192
- ],
- [
- -0.1836548149585724
- ],
- [
- -0.1721275895833969
- ],
- [
- -0.1731816977262497
- ],
- [
- -0.17978568375110626
- ],
- [
- -0.18174143135547638
- ],
- [
- -0.1812942922115326
- ],
- [
- -0.19271568953990936
- ],
- [
- -0.17789886891841888
- ],
- [
- -0.23321010172367096
- ],
- [
- -0.18859033286571503
- ],
- [
- -0.1677633672952652
- ],
- [
- -0.1897542029619217
- ],
- [
- -0.17996208369731903
- ],
- [
- -0.1961667537689209
- ],
- [
- -0.16102050244808197
- ],
- [
- -0.16764846444129944
- ],
- [
- -0.1939171403646469
- ],
- [
- -0.1899154931306839
- ],
- [
- -0.22233277559280396
- ],
- [
- -0.170207679271698
- ],
- [
- -0.19149336218833923
- ],
- [
- -0.17277684807777405
- ],
- [
- -0.15064997971057892
- ],
- [
- -0.21702760457992554
- ],
- [
- -0.2204771339893341
- ],
- [
- -0.18513739109039307
- ],
- [
- -0.18720750510692596
- ],
- [
- -0.18946747481822968
- ],
- [
- -0.17766903340816498
- ],
- [
- -0.16459965705871582
- ],
- [
- -0.18088693916797638
- ],
- [
- -0.1629784107208252
- ],
- [
- -0.21881739795207977
- ],
- [
- -0.18741026520729065
- ],
- [
- -0.17082162201404572
- ],
- [
- -0.1816582828760147
- ],
- [
- -0.20035892724990845
- ],
- [
- -0.26015526056289673
- ],
- [
- -0.24588420987129211
- ],
- [
- -0.18029873073101044
- ],
- [
- -0.18377017974853516
- ],
- [
- -0.17955715954303741
- ],
- [
- -0.18493786454200745
- ],
- [
- -0.17482219636440277
- ],
- [
- -0.13112790882587433
- ],
- [
- -0.15757209062576294
- ],
- [
- -0.19564299285411835
- ],
- [
- -0.31959375739097595
- ],
- [
- -0.15963591635227203
- ],
- [
- -0.15397915244102478
- ],
- [
- -0.1859492063522339
- ],
- [
- -0.24640625715255737
- ],
- [
- -0.19564633071422577
- ],
- [
- -0.17703938484191895
- ],
- [
- -0.22402234375476837
- ],
- [
- -0.1859654188156128
- ],
- [
- -0.20778042078018188
- ],
- [
- -0.14620646834373474
- ],
- [
- -0.2509823441505432
- ],
- [
- -0.2168605923652649
- ],
- [
- -0.18321332335472107
- ],
- [
- -0.15785761177539825
- ],
- [
- -0.17786289751529694
- ],
- [
- -0.17578189074993134
- ],
- [
- -0.20526383817195892
- ],
- [
- -0.2208370417356491
- ],
- [
- -0.15807807445526123
- ],
- [
- -0.1897348314523697
- ],
- [
- -0.15729054808616638
- ],
- [
- -0.17210641503334045
- ],
- [
- -0.22639533877372742
- ],
- [
- -0.14276844263076782
- ],
- [
- -0.21831779181957245
- ],
- [
- -0.17482596635818481
- ],
- [
- -0.1952821910381317
- ],
- [
- -0.17340689897537231
- ],
- [
- -0.16471333801746368
- ],
- [
- -0.1604461818933487
- ],
- [
- -0.17594686150550842
- ],
- [
- -0.18743063509464264
- ],
- [
- -0.1803428679704666
- ],
- [
- -0.1976979374885559
- ],
- [
- -0.14430448412895203
- ],
- [
- -0.17948080599308014
- ],
- [
- -0.21837371587753296
- ],
- [
- -0.15121953189373016
- ],
- [
- -0.18200941383838654
- ],
- [
- -0.16272152960300446
- ],
- [
- -0.20212800800800323
- ],
- [
- -0.15618817508220673
- ],
- [
- -0.14089886844158173
- ],
- [
- -0.1865425705909729
- ],
- [
- -0.16811621189117432
- ],
- [
- -0.1595086306333542
- ],
- [
- -0.2632863521575928
- ],
- [
- -0.18367178738117218
- ],
- [
- -0.17524053156375885
- ],
- [
- -0.2014491707086563
- ],
- [
- -0.17999206483364105
- ],
- [
- -0.21480777859687805
- ],
- [
- -0.15415014326572418
- ],
- [
- -0.14417366683483124
- ],
- [
- -0.32448211312294006
- ],
- [
- -0.18896345794200897
- ],
- [
- -0.18553605675697327
- ],
- [
- -0.1423873007297516
- ],
- [
- -0.2100171595811844
- ],
- [
- -0.20931345224380493
- ],
- [
- -0.1753457486629486
- ],
- [
- -0.17901964485645294
- ],
- [
- -0.17398734390735626
- ],
- [
- -0.17050780355930328
- ],
- [
- -0.16929727792739868
- ],
- [
- -0.20436882972717285
- ],
- [
- -0.263933926820755
- ],
- [
- -0.20110930502414703
- ],
- [
- -0.185881108045578
- ],
- [
- -0.16564024984836578
- ],
- [
- -0.17704130709171295
- ],
- [
- -0.22285127639770508
- ],
- [
- -0.1965426206588745
- ],
- [
- -0.2021714150905609
- ],
- [
- -0.1745164692401886
- ],
- [
- -0.17471306025981903
- ],
- [
- -0.18167324364185333
- ],
- [
- -0.17368561029434204
- ],
- [
- -0.1642691045999527
- ],
- [
- -0.1591336876153946
- ],
- [
- -0.16357024013996124
- ],
- [
- -0.1870107352733612
- ],
- [
- -0.20745885372161865
- ],
- [
- -0.18470188975334167
- ],
- [
- -0.15653596818447113
- ],
- [
- -0.1914929300546646
- ],
- [
- -0.28629305958747864
- ],
- [
- -0.15686090290546417
- ],
- [
- -0.2307235300540924
- ],
- [
- -0.18614745140075684
- ],
- [
- -0.1631689965724945
- ],
- [
- -0.15032212436199188
- ],
- [
- -0.1813979297876358
- ],
- [
- -0.17065730690956116
- ],
- [
- -0.2530304193496704
- ],
- [
- -0.2116733193397522
- ],
- [
- -0.16761009395122528
- ],
- [
- -0.17038004100322723
- ],
- [
- -0.15817269682884216
- ],
- [
- -0.2031041532754898
- ],
- [
- -0.19461460411548615
- ],
- [
- -0.17155270278453827
- ],
- [
- -0.18726946413516998
- ],
- [
- -0.18010307848453522
- ],
- [
- -0.2631581127643585
- ],
- [
- -0.1608726978302002
- ],
- [
- -0.1880207359790802
- ],
- [
- -0.18389475345611572
- ],
- [
- -0.15554018318653107
- ],
- [
- -0.1617802381515503
- ],
- [
- -0.1793060302734375
- ],
- [
- -0.19382402300834656
- ],
- [
- -0.22422181069850922
- ],
- [
- -0.2161247730255127
- ],
- [
- -0.2280011624097824
- ],
- [
- -0.16259975731372833
- ],
- [
- -0.16104616224765778
- ],
- [
- -0.20166929066181183
- ],
- [
- -0.17533238232135773
- ],
- [
- -0.18151994049549103
- ],
- [
- -0.20273099839687347
- ],
- [
- -0.18299363553524017
- ],
- [
- -0.1826666295528412
- ],
- [
- -0.19088716804981232
- ],
- [
- -0.19892987608909607
- ],
- [
- -0.23135410249233246
- ],
- [
- -0.2083427757024765
- ],
- [
- -0.1473187953233719
- ],
- [
- -0.18608255684375763
- ],
- [
- -0.16491012275218964
- ],
- [
- -0.16291645169258118
- ],
- [
- -0.20803509652614594
- ],
- [
- -0.13550621271133423
- ],
- [
- -0.19034366309642792
- ],
- [
- -0.18762913346290588
- ],
- [
- -0.2188471108675003
- ],
- [
- -0.2015460729598999
- ],
- [
- -0.16181008517742157
- ],
- [
- -0.17334502935409546
- ],
- [
- -0.18237265944480896
- ],
- [
- -0.2215699702501297
- ],
- [
- -0.15564121305942535
- ],
- [
- -0.15888278186321259
- ],
- [
- -0.2251988798379898
- ],
- [
- -0.18147599697113037
- ],
- [
- -0.16299863159656525
- ],
- [
- -0.15596555173397064
- ],
- [
- -0.17302566766738892
- ],
- [
- -0.18514741957187653
- ],
- [
- -0.1773276925086975
- ],
- [
- -0.16047747433185577
- ],
- [
- -0.22201301157474518
- ],
- [
- -0.22794052958488464
- ],
- [
- -0.20315130054950714
- ],
- [
- -0.21184229850769043
- ],
- [
- -0.2081483006477356
- ],
- [
- -0.15236589312553406
- ],
- [
- -0.17661930620670319
- ],
- [
- -0.17957478761672974
- ],
- [
- -0.18464355170726776
- ],
- [
- -0.17292018234729767
- ],
- [
- -0.15938124060630798
- ],
- [
- -0.24028165638446808
- ],
- [
- -0.17717088758945465
- ],
- [
- -0.24310056865215302
- ],
- [
- -0.18869176506996155
- ],
- [
- -0.23555755615234375
- ],
- [
- -0.18065829575061798
- ],
- [
- -0.19019396603107452
- ],
- [
- -0.18431033194065094
- ],
- [
- -0.17810948193073273
- ],
- [
- -0.25237539410591125
- ],
- [
- -0.20283369719982147
- ],
- [
- -0.176487997174263
- ],
- [
- -0.20932739973068237
- ],
- [
- -0.23728583753108978
- ],
- [
- -0.19103068113327026
- ],
- [
- -0.1589534878730774
- ],
- [
- -0.200917050242424
- ],
- [
- -0.1746799647808075
- ],
- [
- -0.15379831194877625
- ],
- [
- -0.14865314960479736
- ],
- [
- -0.17281094193458557
- ],
- [
- -0.1583787351846695
- ],
- [
- -0.16508759558200836
- ],
- [
- -0.17316575348377228
- ],
- [
- -0.2141069620847702
- ],
- [
- -0.1847236305475235
- ],
- [
- -0.1600286066532135
- ],
- [
- -0.17224131524562836
- ],
- [
- -0.1708705723285675
- ],
- [
- -0.15021927654743195
- ],
- [
- -0.1638488471508026
- ],
- [
- -0.17459745705127716
- ],
- [
- -0.19411323964595795
- ],
- [
- -0.17690987884998322
- ],
- [
- -0.17971327900886536
- ],
- [
- -0.1902340203523636
- ],
- [
- -0.13419662415981293
- ],
- [
- -0.14570192992687225
- ],
- [
- -0.16743507981300354
- ],
- [
- -0.18320968747138977
- ],
- [
- -0.207712784409523
- ],
- [
- -0.15082210302352905
- ],
- [
- -0.23150134086608887
- ],
- [
- -0.19294163584709167
- ],
- [
- -0.2020663619041443
- ],
- [
- -0.1748339831829071
- ],
- [
- -0.17260265350341797
- ],
- [
- -0.17266297340393066
- ],
- [
- -0.17316140234470367
- ],
- [
- -0.18796688318252563
- ],
- [
- -0.21125000715255737
- ],
- [
- -0.17411836981773376
- ],
- [
- -0.1550230085849762
- ],
- [
- -0.1892094612121582
- ],
- [
- -0.14458516240119934
- ],
- [
- -0.15676867961883545
- ],
- [
- -0.18402984738349915
- ],
- [
- -0.16845163702964783
- ],
- [
- -0.15209254622459412
- ],
- [
- -0.19919756054878235
- ],
- [
- -0.1853754073381424
- ],
- [
- -0.16981329023838043
- ],
- [
- -0.15205314755439758
- ],
- [
- -0.16672272980213165
- ],
- [
- -0.1944590061903
- ],
- [
- -0.22414074838161469
- ],
- [
- -0.1917303204536438
- ],
- [
- -0.17682026326656342
- ],
- [
- -0.17859582602977753
- ],
- [
- -0.14507444202899933
- ],
- [
- -0.17127221822738647
- ],
- [
- -0.16880133748054504
- ],
- [
- -0.20047502219676971
- ],
- [
- -0.17174957692623138
- ],
- [
- -0.16538022458553314
- ],
- [
- -0.1597547084093094
- ],
- [
- -0.30808115005493164
- ],
- [
- -0.17374390363693237
- ],
- [
- -0.19371674954891205
- ],
- [
- -0.14302295446395874
- ],
- [
- -0.19174699485301971
- ],
- [
- -0.20590609312057495
- ],
- [
- -0.18773354589939117
- ],
- [
- -0.18651261925697327
- ],
- [
- -0.192533940076828
- ],
- [
- -0.19083216786384583
- ],
- [
- -0.18758000433444977
- ],
- [
- -0.15763826668262482
- ],
- [
- -0.16400687396526337
- ],
- [
- -0.22037732601165771
- ],
- [
- -0.18826819956302643
- ],
- [
- -0.17064718902111053
- ],
- [
- -0.2302066683769226
- ],
- [
- -0.19226448237895966
- ],
- [
- -0.19342029094696045
- ],
- [
- -0.18559421598911285
- ],
- [
- -0.14278358221054077
- ],
- [
- -0.22323215007781982
- ],
- [
- -0.20030605792999268
- ],
- [
- -0.17617374658584595
- ],
- [
- -0.20237284898757935
- ],
- [
- -0.16867761313915253
- ],
- [
- -0.20253422856330872
- ],
- [
- -0.19009575247764587
- ],
- [
- -0.15949080884456635
- ],
- [
- -0.19496813416481018
- ],
- [
- -0.172251895070076
- ],
- [
- -0.16065362095832825
- ],
- [
- -0.25084617733955383
- ],
- [
- -0.19204986095428467
- ],
- [
- -0.16113270819187164
- ],
- [
- -0.17039814591407776
- ],
- [
- -0.19272539019584656
- ],
- [
- -0.20947133004665375
- ],
- [
- -0.17867735028266907
- ],
- [
- -0.1543457806110382
- ],
- [
- -0.1548968255519867
- ],
- [
- -0.19947972893714905
- ],
- [
- -0.19042429327964783
- ],
- [
- -0.19486860930919647
- ],
- [
- -0.20809267461299896
- ],
- [
- -0.17977221310138702
- ],
- [
- -0.16555112600326538
- ],
- [
- -0.14811724424362183
- ],
- [
- -0.18691261112689972
- ],
- [
- -0.18050095438957214
- ],
- [
- -0.17628492414951324
- ],
- [
- -0.1853061318397522
- ],
- [
- -0.26131996512413025
- ],
- [
- -0.1678118258714676
- ],
- [
- -0.1985688954591751
- ],
- [
- -0.19434182345867157
- ],
- [
- -0.16566860675811768
- ],
- [
- -0.19838790595531464
- ],
- [
- -0.23506557941436768
- ],
- [
- -0.13731402158737183
- ],
- [
- -0.16081351041793823
- ],
- [
- -0.18096938729286194
- ],
- [
- -0.18987666070461273
- ],
- [
- -0.17407621443271637
- ],
- [
- -0.16034770011901855
- ],
- [
- -0.24556864798069
- ],
- [
- -0.1538938581943512
- ],
- [
- -0.3308314383029938
- ],
- [
- -0.2268253117799759
- ],
- [
- -0.2912168502807617
- ],
- [
- -0.1589583307504654
- ],
- [
- -0.2510690987110138
- ],
- [
- -0.19860415160655975
- ],
- [
- -0.1472155898809433
- ],
- [
- -0.18444852530956268
- ],
- [
- -0.2806485891342163
- ],
- [
- -0.18793125450611115
- ],
- [
- -0.18326270580291748
- ],
- [
- -0.19256949424743652
- ],
- [
- -0.1483377069234848
- ],
- [
- -0.17540760338306427
- ],
- [
- -0.15189020335674286
- ],
- [
- -0.26437994837760925
- ],
- [
- -0.15442462265491486
- ],
- [
- -0.23165932297706604
- ],
- [
- -0.20758748054504395
- ],
- [
- -0.16096985340118408
- ],
- [
- -0.17397131025791168
- ],
- [
- -0.1841394454240799
- ],
- [
- -0.1738249808549881
- ],
- [
- -0.18996939063072205
- ],
- [
- -0.1807565540075302
- ],
- [
- -0.1667095273733139
- ],
- [
- -0.26068830490112305
- ],
- [
- -0.19834627211093903
- ],
- [
- -0.16692666709423065
- ],
- [
- -0.14595912396907806
- ],
- [
- -0.17825929820537567
- ],
- [
- -0.19342656433582306
- ],
- [
- -0.20118390023708344
- ],
- [
- -0.22219836711883545
- ],
- [
- -0.19526924192905426
- ],
- [
- -0.16521058976650238
- ],
- [
- -0.1662014126777649
- ],
- [
- -0.17750823497772217
- ],
- [
- -0.15328757464885712
- ],
- [
- -0.1639932543039322
- ],
- [
- -0.21797417104244232
- ],
- [
- -0.17379842698574066
- ],
- [
- -0.17616470158100128
- ],
- [
- -0.21967238187789917
- ],
- [
- -0.1897621899843216
- ],
- [
- -0.20835921168327332
- ],
- [
- -0.16407375037670135
- ],
- [
- -0.18935464322566986
- ],
- [
- -0.23566120862960815
- ],
- [
- -0.17528781294822693
- ],
- [
- -0.20077112317085266
- ],
- [
- -0.16685430705547333
- ],
- [
- -0.16016900539398193
- ],
- [
- -0.2504640221595764
- ],
- [
- -0.14925916492938995
- ],
- [
- -0.17839160561561584
- ],
- [
- -0.17908470332622528
- ],
- [
- -0.17176200449466705
- ],
- [
- -0.16726244986057281
- ],
- [
- -0.2058989256620407
- ],
- [
- -0.18805210292339325
- ],
- [
- -0.18631450831890106
- ],
- [
- -0.1812981516122818
- ],
- [
- -0.18295952677726746
- ],
- [
- -0.1470557451248169
- ],
- [
- -0.20279090106487274
- ],
- [
- -0.196679949760437
- ],
- [
- -0.2336379885673523
- ],
- [
- -0.16336439549922943
- ],
- [
- -0.15873487293720245
- ],
- [
- -0.17641638219356537
- ],
- [
- -0.22241157293319702
- ],
- [
- -0.1582973599433899
- ],
- [
- -0.23994730412960052
- ],
- [
- -0.22505223751068115
- ],
- [
- -0.18320785462856293
- ],
- [
- -0.15792714059352875
- ],
- [
- -0.29137638211250305
- ],
- [
- -0.18433921039104462
- ],
- [
- -0.18347850441932678
- ],
- [
- -0.15386167168617249
- ],
- [
- -0.20512989163398743
- ],
- [
- -0.17445743083953857
- ],
- [
- -0.1801995187997818
- ],
- [
- -0.17301364243030548
- ],
- [
- -0.18002738058567047
- ],
- [
- -0.16997955739498138
- ],
- [
- -0.18220065534114838
- ],
- [
- -0.19470949470996857
- ],
- [
- -0.17410418391227722
- ],
- [
- -0.21082746982574463
- ],
- [
- -0.18154235184192657
- ],
- [
- -0.1758839339017868
- ],
- [
- -0.16910278797149658
- ],
- [
- -0.18464532494544983
- ],
- [
- -0.23427267372608185
- ],
- [
- -0.15733662247657776
- ],
- [
- -0.17959114909172058
- ],
- [
- -0.19034461677074432
- ],
- [
- -0.22676165401935577
- ],
- [
- -0.181022047996521
- ],
- [
- -0.1668817549943924
- ],
- [
- -0.17591221630573273
- ],
- [
- -0.14866256713867188
- ],
- [
- -0.15059562027454376
- ],
- [
- -0.16487707197666168
- ],
- [
- -0.15306055545806885
- ],
- [
- -0.19385379552841187
- ],
- [
- -0.21018454432487488
- ],
- [
- -0.18824820220470428
- ],
- [
- -0.19175177812576294
- ],
- [
- -0.1871500015258789
- ],
- [
- -0.18205417692661285
- ],
- [
- -0.21757927536964417
- ],
- [
- -0.20660866796970367
- ],
- [
- -0.18517524003982544
- ],
- [
- -0.16736219823360443
- ],
- [
- -0.18270951509475708
- ],
- [
- -0.18459556996822357
- ],
- [
- -0.15655173361301422
- ],
- [
- -0.1839776337146759
- ],
- [
- -0.14421580731868744
- ],
- [
- -0.15523876249790192
- ],
- [
- -0.19135616719722748
- ],
- [
- -0.16434893012046814
- ],
- [
- -0.16837984323501587
- ],
- [
- -0.17121225595474243
- ],
- [
- -0.17004071176052094
- ],
- [
- -0.16819588840007782
- ],
- [
- -0.15324267745018005
- ],
- [
- -0.22132554650306702
- ],
- [
- -0.1529671549797058
- ],
- [
- -0.2196926474571228
- ],
- [
- -0.20112095773220062
- ],
- [
- -0.18035580217838287
- ],
- [
- -0.2223348319530487
- ],
- [
- -0.1966145783662796
- ],
- [
- -0.17575441300868988
- ],
- [
- -0.15885183215141296
- ],
- [
- -0.19681678712368011
- ],
- [
- -0.18381990492343903
- ],
- [
- -0.1853838562965393
- ],
- [
- -0.17603428661823273
- ],
- [
- -0.2307315468788147
- ],
- [
- -0.26523539423942566
- ],
- [
- -0.21853823959827423
- ],
- [
- -0.23579935729503632
- ],
- [
- -0.1925002634525299
- ],
- [
- -0.15563294291496277
- ],
- [
- -0.2432861626148224
- ],
- [
- -0.1889563798904419
- ],
- [
- -0.16129560768604279
- ],
- [
- -0.22907914221286774
- ],
- [
- -0.17883452773094177
- ],
- [
- -0.18274150788784027
- ],
- [
- -0.1905391365289688
- ],
- [
- -0.18944557011127472
- ],
- [
- -0.17718391120433807
- ],
- [
- -0.22449149191379547
- ],
- [
- -0.15173634886741638
- ],
- [
- -0.18502750992774963
- ],
- [
- -0.18156522512435913
- ],
- [
- -0.1550455540418625
- ],
- [
- -0.21641050279140472
- ],
- [
- -0.18402206897735596
- ],
- [
- -0.15967068076133728
- ],
- [
- -0.1857430338859558
- ],
- [
- -0.21137355268001556
- ],
- [
- -0.20513099431991577
- ],
- [
- -0.16250717639923096
- ],
- [
- -0.21546512842178345
- ],
- [
- -0.1697390079498291
- ],
- [
- -0.17480096220970154
- ],
- [
- -0.22121456265449524
- ],
- [
- -0.17031621932983398
- ],
- [
- -0.20220191776752472
- ],
- [
- -0.18759159743785858
- ],
- [
- -0.1765585094690323
- ],
- [
- -0.16026805341243744
- ],
- [
- -0.17486916482448578
- ],
- [
- -0.16195161640644073
- ],
- [
- -0.1431393027305603
- ],
- [
- -0.20473697781562805
- ],
- [
- -0.17828436195850372
- ],
- [
- -0.15795081853866577
- ],
- [
- -0.16837233304977417
- ],
- [
- -0.22043217718601227
- ],
- [
- -0.17764000594615936
- ],
- [
- -0.16156943142414093
- ],
- [
- -0.16034772992134094
- ],
- [
- -0.15081219375133514
- ],
- [
- -0.1990709751844406
- ],
- [
- -0.21912206709384918
- ],
- [
- -0.1962527185678482
- ],
- [
- -0.18995828926563263
- ],
- [
- -0.17731398344039917
- ],
- [
- -0.2481997013092041
- ],
- [
- -0.2272866815328598
- ],
- [
- -0.14826740324497223
- ],
- [
- -0.20075081288814545
- ],
- [
- -0.15744146704673767
- ],
- [
- -0.1621989905834198
- ],
- [
- -0.15793946385383606
- ],
- [
- -0.16875560581684113
- ],
- [
- -0.13808099925518036
- ],
- [
- -0.1623252034187317
- ],
- [
- -0.17968574166297913
- ],
- [
- -0.19446972012519836
- ],
- [
- -0.24602816998958588
- ],
- [
- -0.17993929982185364
- ],
- [
- -0.18997789919376373
- ],
- [
- -0.20867472887039185
- ],
- [
- -0.2658577561378479
- ],
- [
- -0.18800264596939087
- ],
- [
- -0.16816557943820953
- ],
- [
- -0.18368878960609436
- ],
- [
- -0.17978094518184662
- ],
- [
- -0.1814107745885849
- ],
- [
- -0.15550686419010162
- ],
- [
- -0.16250856220722198
- ],
- [
- -0.21450307965278625
- ],
- [
- -0.16707515716552734
- ],
- [
- -0.20437303185462952
- ],
- [
- -0.1526467651128769
- ],
- [
- -0.15785396099090576
- ],
- [
- -0.164737731218338
- ],
- [
- -0.22548067569732666
- ],
- [
- -0.15701237320899963
- ],
- [
- -0.16715876758098602
- ],
- [
- -0.19250597059726715
- ],
- [
- -0.13915030658245087
- ],
- [
- -0.13940826058387756
- ],
- [
- -0.17614200711250305
- ],
- [
- -0.16211147606372833
- ],
- [
- -0.17450806498527527
- ],
- [
- -0.21575121581554413
- ],
- [
- -0.21135596930980682
- ],
- [
- -0.221391499042511
- ],
- [
- -0.19858095049858093
- ],
- [
- -0.21205203235149384
- ],
- [
- -0.1684476137161255
- ],
- [
- -0.2520287036895752
- ],
- [
- -0.19030354917049408
- ],
- [
- -0.17905858159065247
- ],
- [
- -0.17154593765735626
- ],
- [
- -0.2017565369606018
- ],
- [
- -0.1648661494255066
- ],
- [
- -0.18700377643108368
- ],
- [
- -0.2086944431066513
- ],
- [
- -0.1883562058210373
- ],
- [
- -0.16313202679157257
- ],
- [
- -0.1507696956396103
- ],
- [
- -0.17325656116008759
- ],
- [
- -0.18775059282779694
- ],
- [
- -0.1995343714952469
- ]
- ],
- "input_high": [
- [
- 0.1554616540670395
- ],
- [
- 0.1975422203540802
- ],
- [
- 0.19815252721309662
- ],
- [
- 0.19275590777397156
- ],
- [
- 0.1632937341928482
- ],
- [
- 0.1923627406358719
- ],
- [
- 0.18891191482543945
- ],
- [
- 0.19505365192890167
- ],
- [
- 0.16614100337028503
- ],
- [
- 0.2026558220386505
- ],
- [
- 0.17544172704219818
- ],
- [
- 0.17875641584396362
- ],
- [
- 0.19346709549427032
- ],
- [
- 0.19736085832118988
- ],
- [
- 0.21658942103385925
- ],
- [
- 0.16777093708515167
- ],
- [
- 0.16759631037712097
- ],
- [
- 0.19211065769195557
- ],
- [
- 0.16350416839122772
- ],
- [
- 0.17982250452041626
- ],
- [
- 0.17943334579467773
- ],
- [
- 0.18009012937545776
- ],
- [
- 0.20071813464164734
- ],
- [
- 0.1820417046546936
- ],
- [
- 0.18197399377822876
- ],
- [
- 0.17596738040447235
- ],
- [
- 0.14973224699497223
- ],
- [
- 0.157967671751976
- ],
- [
- 0.1670437604188919
- ],
- [
- 0.19772693514823914
- ],
- [
- 0.15720735490322113
- ],
- [
- 0.1574394851922989
- ],
- [
- 0.1458834856748581
- ],
- [
- 0.16934432089328766
- ],
- [
- 0.21939755976200104
- ],
- [
- 0.1791817992925644
- ],
- [
- 0.17166835069656372
- ],
- [
- 0.15734130144119263
- ],
- [
- 0.2154453992843628
- ],
- [
- 0.16703885793685913
- ],
- [
- 0.14975644648075104
- ],
- [
- 0.15567708015441895
- ],
- [
- 0.21273085474967957
- ],
- [
- 0.17863717675209045
- ],
- [
- 0.1500164419412613
- ],
- [
- 0.19780881702899933
- ],
- [
- 0.14390213787555695
- ],
- [
- 0.16493703424930573
- ],
- [
- 0.16165776550769806
- ],
- [
- 0.16916118562221527
- ],
- [
- 0.16741515696048737
- ],
- [
- 0.19759589433670044
- ],
- [
- 0.14447800815105438
- ],
- [
- 0.19408459961414337
- ],
- [
- 0.15510299801826477
- ],
- [
- 0.15851148962974548
- ],
- [
- 0.1577356457710266
- ],
- [
- 0.16961176693439484
- ],
- [
- 0.1655804067850113
- ],
- [
- 0.16352957487106323
- ],
- [
- 0.15973614156246185
- ],
- [
- 0.1958252489566803
- ],
- [
- 0.15216363966464996
- ],
- [
- 0.16100147366523743
- ],
- [
- 0.1638059765100479
- ],
- [
- 0.19385847449302673
- ],
- [
- 0.1567348837852478
- ],
- [
- 0.1739172339439392
- ],
- [
- 0.17613054811954498
- ],
- [
- 0.16814537346363068
- ],
- [
- 0.15428847074508667
- ],
- [
- 0.18976397812366486
- ],
- [
- 0.18346834182739258
- ],
- [
- 0.18718120455741882
- ],
- [
- 0.17757417261600494
- ],
- [
- 0.1564321219921112
- ],
- [
- 0.19593022763729095
- ],
- [
- 0.16516827046871185
- ],
- [
- 0.1725962907075882
- ],
- [
- 0.18348577618598938
- ],
- [
- 0.15860189497470856
- ],
- [
- 0.2019111067056656
- ],
- [
- 0.19141781330108643
- ],
- [
- 0.1870553344488144
- ],
- [
- 0.19091860949993134
- ],
- [
- 0.1963810920715332
- ],
- [
- 0.1551758199930191
- ],
- [
- 0.19004997611045837
- ],
- [
- 0.17954422533512115
- ],
- [
- 0.17040644586086273
- ],
- [
- 0.20762114226818085
- ],
- [
- 0.17358563840389252
- ],
- [
- 0.19947870075702667
- ],
- [
- 0.20734532177448273
- ],
- [
- 0.19740080833435059
- ],
- [
- 0.18585246801376343
- ],
- [
- 0.17795231938362122
- ],
- [
- 0.1665991246700287
- ],
- [
- 0.18589343130588531
- ],
- [
- 0.17855334281921387
- ],
- [
- 0.176802858710289
- ],
- [
- 0.21271899342536926
- ],
- [
- 0.19119681417942047
- ],
- [
- 0.1980128139257431
- ],
- [
- 0.16658519208431244
- ],
- [
- 0.17710739374160767
- ],
- [
- 0.15256288647651672
- ],
- [
- 0.18983004987239838
- ],
- [
- 0.1538560837507248
- ],
- [
- 0.16041402518749237
- ],
- [
- 0.1940893530845642
- ],
- [
- 0.28210437297821045
- ],
- [
- 0.18090768158435822
- ],
- [
- 0.15481793880462646
- ],
- [
- 0.17062480747699738
- ],
- [
- 0.22132103145122528
- ],
- [
- 0.16138815879821777
- ],
- [
- 0.20396102964878082
- ],
- [
- 0.1852949559688568
- ],
- [
- 0.1882438212633133
- ],
- [
- 0.1543368250131607
- ],
- [
- 0.1559508889913559
- ],
- [
- 0.3038824200630188
- ],
- [
- 0.15609534084796906
- ],
- [
- 0.15606719255447388
- ],
- [
- 0.1690848469734192
- ],
- [
- 0.15160515904426575
- ],
- [
- 0.15777899324893951
- ],
- [
- 0.16711781919002533
- ],
- [
- 0.1764446198940277
- ],
- [
- 0.20234768092632294
- ],
- [
- 0.15752936899662018
- ],
- [
- 0.16651871800422668
- ],
- [
- 0.17491839826107025
- ],
- [
- 0.20015445351600647
- ],
- [
- 0.16318103671073914
- ],
- [
- 0.20413576066493988
- ],
- [
- 0.1840687096118927
- ],
- [
- 0.17463408410549164
- ],
- [
- 0.1678122878074646
- ],
- [
- 0.15287120640277863
- ],
- [
- 0.17828428745269775
- ],
- [
- 0.15503408014774323
- ],
- [
- 0.19394060969352722
- ],
- [
- 0.18013359606266022
- ],
- [
- 0.194406658411026
- ],
- [
- 0.17791183292865753
- ],
- [
- 0.15880170464515686
- ],
- [
- 0.1970207691192627
- ],
- [
- 0.19493091106414795
- ],
- [
- 0.2132979780435562
- ],
- [
- 0.13604971766471863
- ],
- [
- 0.14387249946594238
- ],
- [
- 0.15706458687782288
- ],
- [
- 0.1441241353750229
- ],
- [
- 0.1456950306892395
- ],
- [
- 0.16140998899936676
- ],
- [
- 0.14745505154132843
- ],
- [
- 0.14955733716487885
- ],
- [
- 0.13720279932022095
- ],
- [
- 0.14628441631793976
- ],
- [
- 0.15323592722415924
- ],
- [
- 0.1414981335401535
- ],
- [
- 0.14737191796302795
- ],
- [
- 0.15496139228343964
- ],
- [
- 0.13915173709392548
- ],
- [
- 0.1395258605480194
- ],
- [
- 0.15097515285015106
- ],
- [
- 0.14261914789676666
- ],
- [
- 0.1680321842432022
- ],
- [
- 0.15259958803653717
- ],
- [
- 0.1438864767551422
- ],
- [
- 0.1865168660879135
- ],
- [
- 0.1623374968767166
- ],
- [
- 0.14232207834720612
- ],
- [
- 0.14515051245689392
- ],
- [
- 0.1602032482624054
- ],
- [
- 0.1362183690071106
- ],
- [
- 0.16892684996128082
- ],
- [
- 0.18019527196884155
- ],
- [
- 0.14054836332798004
- ],
- [
- 0.16556498408317566
- ],
- [
- 0.1487024873495102
- ],
- [
- 0.1330948919057846
- ],
- [
- 0.17255175113677979
- ],
- [
- 0.1688777208328247
- ],
- [
- 0.13641972839832306
- ],
- [
- 0.1392057090997696
- ],
- [
- 0.13428297638893127
- ],
- [
- 0.17613103985786438
- ],
- [
- 0.1469261795282364
- ],
- [
- 0.16084416210651398
- ],
- [
- 0.16282273828983307
- ],
- [
- 0.1485363245010376
- ],
- [
- 0.15152333676815033
- ],
- [
- 0.1347143054008484
- ],
- [
- 0.13911904394626617
- ],
- [
- 0.14172464609146118
- ],
- [
- 0.16149453818798065
- ],
- [
- 0.16716161370277405
- ],
- [
- 0.1490926593542099
- ],
- [
- 0.1630668044090271
- ],
- [
- 0.1563192456960678
- ],
- [
- 0.30908846855163574
- ],
- [
- 0.15396101772785187
- ],
- [
- 0.13763822615146637
- ],
- [
- 0.1573229730129242
- ],
- [
- 0.1458754539489746
- ],
- [
- 0.2124687135219574
- ],
- [
- 0.13131213188171387
- ],
- [
- 0.14602069556713104
- ],
- [
- 0.1606072187423706
- ],
- [
- 0.15101312100887299
- ],
- [
- 0.14434655010700226
- ],
- [
- 0.13670538365840912
- ],
- [
- 0.12839893996715546
- ],
- [
- 0.15258818864822388
- ],
- [
- 0.18240438401699066
- ],
- [
- 0.14064869284629822
- ],
- [
- 0.15807132422924042
- ],
- [
- 0.15209217369556427
- ],
- [
- 0.1419975906610489
- ],
- [
- 0.13598614931106567
- ],
- [
- 0.14221300184726715
- ],
- [
- 0.15173684060573578
- ],
- [
- 0.14439542591571808
- ],
- [
- 0.15190725028514862
- ],
- [
- 0.1393192857503891
- ],
- [
- 0.183673694729805
- ],
- [
- 0.1676936000585556
- ],
- [
- 0.1360417902469635
- ],
- [
- 0.2881479561328888
- ],
- [
- 0.16910609602928162
- ],
- [
- 0.13352417945861816
- ],
- [
- 0.1296633929014206
- ],
- [
- 0.1437918245792389
- ],
- [
- 0.12645654380321503
- ],
- [
- 0.1495286077260971
- ],
- [
- 0.13880714774131775
- ],
- [
- 0.13524878025054932
- ],
- [
- 0.1409737914800644
- ],
- [
- 0.14624647796154022
- ],
- [
- 0.18651117384433746
- ],
- [
- 0.16946345567703247
- ],
- [
- 0.14949281513690948
- ],
- [
- 0.1477336585521698
- ],
- [
- 0.21915489435195923
- ],
- [
- 0.14885690808296204
- ],
- [
- 0.15019501745700836
- ],
- [
- 0.15175694227218628
- ],
- [
- 0.13289572298526764
- ],
- [
- 0.15563049912452698
- ],
- [
- 0.14055584371089935
- ],
- [
- 0.15766851603984833
- ],
- [
- 0.1481427401304245
- ],
- [
- 0.15644818544387817
- ],
- [
- 0.13985498249530792
- ],
- [
- 0.11431986093521118
- ],
- [
- 0.1623237431049347
- ],
- [
- 0.13968627154827118
- ],
- [
- 0.1521422564983368
- ],
- [
- 0.14525818824768066
- ],
- [
- 0.1610676646232605
- ],
- [
- 0.1531512439250946
- ],
- [
- 0.19808046519756317
- ],
- [
- 0.1537771224975586
- ],
- [
- 0.1539282649755478
- ],
- [
- 0.1464168131351471
- ],
- [
- 0.17963628470897675
- ],
- [
- 0.1485971361398697
- ],
- [
- 0.141460582613945
- ],
- [
- 0.19123481214046478
- ],
- [
- 0.1403573602437973
- ],
- [
- 0.13767030835151672
- ],
- [
- 0.16806331276893616
- ],
- [
- 0.1673450618982315
- ],
- [
- 0.1478317826986313
- ],
- [
- 0.16226759552955627
- ],
- [
- 0.1504182517528534
- ],
- [
- 0.15283240377902985
- ],
- [
- 0.14401422441005707
- ],
- [
- 0.1596337854862213
- ],
- [
- 0.21676887571811676
- ],
- [
- 0.13491491973400116
- ],
- [
- 0.18152843415737152
- ],
- [
- 0.13824713230133057
- ],
- [
- 0.15338853001594543
- ],
- [
- 0.17609448730945587
- ],
- [
- 0.1495874673128128
- ],
- [
- 0.15294019877910614
- ],
- [
- 0.14528177678585052
- ],
- [
- 0.17574435472488403
- ],
- [
- 0.169702410697937
- ],
- [
- 0.1472545713186264
- ],
- [
- 0.14803604781627655
- ],
- [
- 0.18454037606716156
- ],
- [
- 0.1599598228931427
- ],
- [
- 0.15051262080669403
- ],
- [
- 0.16271421313285828
- ],
- [
- 0.1690702736377716
- ],
- [
- 0.16742467880249023
- ],
- [
- 0.14732667803764343
- ],
- [
- 0.14613237977027893
- ],
- [
- 0.1706421673297882
- ],
- [
- 0.1492362916469574
- ],
- [
- 0.20478655397891998
- ],
- [
- 0.18628975749015808
- ],
- [
- 0.18614841997623444
- ],
- [
- 0.18360406160354614
- ],
- [
- 0.17302314937114716
- ],
- [
- 0.16951556503772736
- ],
- [
- 0.16514141857624054
- ],
- [
- 0.17182575166225433
- ],
- [
- 0.1680196225643158
- ],
- [
- 0.1738901138305664
- ],
- [
- 0.2046060860157013
- ],
- [
- 0.1991339921951294
- ],
- [
- 0.16841518878936768
- ],
- [
- 0.18121151626110077
- ],
- [
- 0.18472367525100708
- ],
- [
- 0.18740805983543396
- ],
- [
- 0.18905211985111237
- ],
- [
- 0.18663005530834198
- ],
- [
- 0.17923007905483246
- ],
- [
- 0.19697289168834686
- ],
- [
- 0.21080587804317474
- ],
- [
- 0.16534699499607086
- ],
- [
- 0.16663599014282227
- ],
- [
- 0.23738177120685577
- ],
- [
- 0.16369733214378357
- ],
- [
- 0.18115276098251343
- ],
- [
- 0.15539315342903137
- ],
- [
- 0.17165030539035797
- ],
- [
- 0.2192673236131668
- ],
- [
- 0.18592023849487305
- ],
- [
- 0.21107617020606995
- ],
- [
- 0.1565266251564026
- ],
- [
- 0.1613844931125641
- ],
- [
- 0.17557285726070404
- ],
- [
- 0.15444649755954742
- ],
- [
- 0.19357317686080933
- ],
- [
- 0.18057496845722198
- ],
- [
- 0.1677565723657608
- ],
- [
- 0.1801391988992691
- ],
- [
- 0.18744203448295593
- ],
- [
- 0.19864708185195923
- ],
- [
- 0.1822778582572937
- ],
- [
- 0.20251941680908203
- ],
- [
- 0.1965763121843338
- ],
- [
- 0.19803616404533386
- ],
- [
- 0.18668320775032043
- ],
- [
- 0.16774487495422363
- ],
- [
- 0.16835254430770874
- ],
- [
- 0.15865857899188995
- ],
- [
- 0.1844508945941925
- ],
- [
- 0.1867118924856186
- ],
- [
- 0.19959378242492676
- ],
- [
- 0.19621115922927856
- ],
- [
- 0.1811380833387375
- ],
- [
- 0.1599198579788208
- ],
- [
- 0.15470530092716217
- ],
- [
- 0.1663578748703003
- ],
- [
- 0.16461433470249176
- ],
- [
- 0.17861227691173553
- ],
- [
- 0.18070274591445923
- ],
- [
- 0.1875942200422287
- ],
- [
- 0.14198093116283417
- ],
- [
- 0.1712108999490738
- ],
- [
- 0.15546587109565735
- ],
- [
- 0.15635712444782257
- ],
- [
- 0.14400799572467804
- ],
- [
- 0.1720377504825592
- ],
- [
- 0.16787372529506683
- ],
- [
- 0.1397639662027359
- ],
- [
- 0.14904029667377472
- ],
- [
- 0.18165622651576996
- ],
- [
- 0.18291693925857544
- ],
- [
- 0.15101400017738342
- ],
- [
- 0.156324103474617
- ],
- [
- 0.1560845822095871
- ],
- [
- 0.19682712852954865
- ],
- [
- 0.15480953454971313
- ],
- [
- 0.159444659948349
- ],
- [
- 0.1494983732700348
- ],
- [
- 0.16678914427757263
- ],
- [
- 0.2120104432106018
- ],
- [
- 0.17350763082504272
- ],
- [
- 0.19693617522716522
- ],
- [
- 0.17883536219596863
- ],
- [
- 0.16634979844093323
- ],
- [
- 0.19762341678142548
- ],
- [
- 0.18416942656040192
- ],
- [
- 0.1836548149585724
- ],
- [
- 0.1721275895833969
- ],
- [
- 0.1731816977262497
- ],
- [
- 0.17978568375110626
- ],
- [
- 0.18174143135547638
- ],
- [
- 0.1812942922115326
- ],
- [
- 0.19271568953990936
- ],
- [
- 0.17789886891841888
- ],
- [
- 0.23321010172367096
- ],
- [
- 0.18859033286571503
- ],
- [
- 0.1677633672952652
- ],
- [
- 0.1897542029619217
- ],
- [
- 0.17996208369731903
- ],
- [
- 0.1961667537689209
- ],
- [
- 0.16102050244808197
- ],
- [
- 0.16764846444129944
- ],
- [
- 0.1939171403646469
- ],
- [
- 0.1899154931306839
- ],
- [
- 0.22233277559280396
- ],
- [
- 0.170207679271698
- ],
- [
- 0.19149336218833923
- ],
- [
- 0.17277684807777405
- ],
- [
- 0.15064997971057892
- ],
- [
- 0.21702760457992554
- ],
- [
- 0.2204771339893341
- ],
- [
- 0.18513739109039307
- ],
- [
- 0.18720750510692596
- ],
- [
- 0.18946747481822968
- ],
- [
- 0.17766903340816498
- ],
- [
- 0.16459965705871582
- ],
- [
- 0.18088693916797638
- ],
- [
- 0.1629784107208252
- ],
- [
- 0.21881739795207977
- ],
- [
- 0.18741026520729065
- ],
- [
- 0.17082162201404572
- ],
- [
- 0.1816582828760147
- ],
- [
- 0.20035892724990845
- ],
- [
- 0.26015526056289673
- ],
- [
- 0.24588420987129211
- ],
- [
- 0.18029873073101044
- ],
- [
- 0.18377017974853516
- ],
- [
- 0.17955715954303741
- ],
- [
- 0.18493786454200745
- ],
- [
- 0.17482219636440277
- ],
- [
- 0.13112790882587433
- ],
- [
- 0.15757209062576294
- ],
- [
- 0.19564299285411835
- ],
- [
- 0.31959375739097595
- ],
- [
- 0.15963591635227203
- ],
- [
- 0.15397915244102478
- ],
- [
- 0.1859492063522339
- ],
- [
- 0.24640625715255737
- ],
- [
- 0.19564633071422577
- ],
- [
- 0.17703938484191895
- ],
- [
- 0.22402234375476837
- ],
- [
- 0.1859654188156128
- ],
- [
- 0.20778042078018188
- ],
- [
- 0.14620646834373474
- ],
- [
- 0.2509823441505432
- ],
- [
- 0.2168605923652649
- ],
- [
- 0.18321332335472107
- ],
- [
- 0.15785761177539825
- ],
- [
- 0.17786289751529694
- ],
- [
- 0.17578189074993134
- ],
- [
- 0.20526383817195892
- ],
- [
- 0.2208370417356491
- ],
- [
- 0.15807807445526123
- ],
- [
- 0.1897348314523697
- ],
- [
- 0.15729054808616638
- ],
- [
- 0.17210641503334045
- ],
- [
- 0.22639533877372742
- ],
- [
- 0.14276844263076782
- ],
- [
- 0.21831779181957245
- ],
- [
- 0.17482596635818481
- ],
- [
- 0.1952821910381317
- ],
- [
- 0.17340689897537231
- ],
- [
- 0.16471333801746368
- ],
- [
- 0.1604461818933487
- ],
- [
- 0.17594686150550842
- ],
- [
- 0.18743063509464264
- ],
- [
- 0.1803428679704666
- ],
- [
- 0.1976979374885559
- ],
- [
- 0.14430448412895203
- ],
- [
- 0.17948080599308014
- ],
- [
- 0.21837371587753296
- ],
- [
- 0.15121953189373016
- ],
- [
- 0.18200941383838654
- ],
- [
- 0.16272152960300446
- ],
- [
- 0.20212800800800323
- ],
- [
- 0.15618817508220673
- ],
- [
- 0.14089886844158173
- ],
- [
- 0.1865425705909729
- ],
- [
- 0.16811621189117432
- ],
- [
- 0.1595086306333542
- ],
- [
- 0.2632863521575928
- ],
- [
- 0.18367178738117218
- ],
- [
- 0.17524053156375885
- ],
- [
- 0.2014491707086563
- ],
- [
- 0.17999206483364105
- ],
- [
- 0.21480777859687805
- ],
- [
- 0.15415014326572418
- ],
- [
- 0.14417366683483124
- ],
- [
- 0.32448211312294006
- ],
- [
- 0.18896345794200897
- ],
- [
- 0.18553605675697327
- ],
- [
- 0.1423873007297516
- ],
- [
- 0.2100171595811844
- ],
- [
- 0.20931345224380493
- ],
- [
- 0.1753457486629486
- ],
- [
- 0.17901964485645294
- ],
- [
- 0.17398734390735626
- ],
- [
- 0.17050780355930328
- ],
- [
- 0.16929727792739868
- ],
- [
- 0.20436882972717285
- ],
- [
- 0.263933926820755
- ],
- [
- 0.20110930502414703
- ],
- [
- 0.185881108045578
- ],
- [
- 0.16564024984836578
- ],
- [
- 0.17704130709171295
- ],
- [
- 0.22285127639770508
- ],
- [
- 0.1965426206588745
- ],
- [
- 0.2021714150905609
- ],
- [
- 0.1745164692401886
- ],
- [
- 0.17471306025981903
- ],
- [
- 0.18167324364185333
- ],
- [
- 0.17368561029434204
- ],
- [
- 0.1642691045999527
- ],
- [
- 0.1591336876153946
- ],
- [
- 0.16357024013996124
- ],
- [
- 0.1870107352733612
- ],
- [
- 0.20745885372161865
- ],
- [
- 0.18470188975334167
- ],
- [
- 0.15653596818447113
- ],
- [
- 0.1914929300546646
- ],
- [
- 0.28629305958747864
- ],
- [
- 0.15686090290546417
- ],
- [
- 0.2307235300540924
- ],
- [
- 0.18614745140075684
- ],
- [
- 0.1631689965724945
- ],
- [
- 0.15032212436199188
- ],
- [
- 0.1813979297876358
- ],
- [
- 0.17065730690956116
- ],
- [
- 0.2530304193496704
- ],
- [
- 0.2116733193397522
- ],
- [
- 0.16761009395122528
- ],
- [
- 0.17038004100322723
- ],
- [
- 0.15817269682884216
- ],
- [
- 0.2031041532754898
- ],
- [
- 0.19461460411548615
- ],
- [
- 0.17155270278453827
- ],
- [
- 0.18726946413516998
- ],
- [
- 0.18010307848453522
- ],
- [
- 0.2631581127643585
- ],
- [
- 0.1608726978302002
- ],
- [
- 0.1880207359790802
- ],
- [
- 0.18389475345611572
- ],
- [
- 0.15554018318653107
- ],
- [
- 0.1617802381515503
- ],
- [
- 0.1793060302734375
- ],
- [
- 0.19382402300834656
- ],
- [
- 0.22422181069850922
- ],
- [
- 0.2161247730255127
- ],
- [
- 0.2280011624097824
- ],
- [
- 0.16259975731372833
- ],
- [
- 0.16104616224765778
- ],
- [
- 0.20166929066181183
- ],
- [
- 0.17533238232135773
- ],
- [
- 0.18151994049549103
- ],
- [
- 0.20273099839687347
- ],
- [
- 0.18299363553524017
- ],
- [
- 0.1826666295528412
- ],
- [
- 0.19088716804981232
- ],
- [
- 0.19892987608909607
- ],
- [
- 0.23135410249233246
- ],
- [
- 0.2083427757024765
- ],
- [
- 0.1473187953233719
- ],
- [
- 0.18608255684375763
- ],
- [
- 0.16491012275218964
- ],
- [
- 0.16291645169258118
- ],
- [
- 0.20803509652614594
- ],
- [
- 0.13550621271133423
- ],
- [
- 0.19034366309642792
- ],
- [
- 0.18762913346290588
- ],
- [
- 0.2188471108675003
- ],
- [
- 0.2015460729598999
- ],
- [
- 0.16181008517742157
- ],
- [
- 0.17334502935409546
- ],
- [
- 0.18237265944480896
- ],
- [
- 0.2215699702501297
- ],
- [
- 0.15564121305942535
- ],
- [
- 0.15888278186321259
- ],
- [
- 0.2251988798379898
- ],
- [
- 0.18147599697113037
- ],
- [
- 0.16299863159656525
- ],
- [
- 0.15596555173397064
- ],
- [
- 0.17302566766738892
- ],
- [
- 0.18514741957187653
- ],
- [
- 0.1773276925086975
- ],
- [
- 0.16047747433185577
- ],
- [
- 0.22201301157474518
- ],
- [
- 0.22794052958488464
- ],
- [
- 0.20315130054950714
- ],
- [
- 0.21184229850769043
- ],
- [
- 0.2081483006477356
- ],
- [
- 0.15236589312553406
- ],
- [
- 0.17661930620670319
- ],
- [
- 0.17957478761672974
- ],
- [
- 0.18464355170726776
- ],
- [
- 0.17292018234729767
- ],
- [
- 0.15938124060630798
- ],
- [
- 0.24028165638446808
- ],
- [
- 0.17717088758945465
- ],
- [
- 0.24310056865215302
- ],
- [
- 0.18869176506996155
- ],
- [
- 0.23555755615234375
- ],
- [
- 0.18065829575061798
- ],
- [
- 0.19019396603107452
- ],
- [
- 0.18431033194065094
- ],
- [
- 0.17810948193073273
- ],
- [
- 0.25237539410591125
- ],
- [
- 0.20283369719982147
- ],
- [
- 0.176487997174263
- ],
- [
- 0.20932739973068237
- ],
- [
- 0.23728583753108978
- ],
- [
- 0.19103068113327026
- ],
- [
- 0.1589534878730774
- ],
- [
- 0.200917050242424
- ],
- [
- 0.1746799647808075
- ],
- [
- 0.15379831194877625
- ],
- [
- 0.14865314960479736
- ],
- [
- 0.17281094193458557
- ],
- [
- 0.1583787351846695
- ],
- [
- 0.16508759558200836
- ],
- [
- 0.17316575348377228
- ],
- [
- 0.2141069620847702
- ],
- [
- 0.1847236305475235
- ],
- [
- 0.1600286066532135
- ],
- [
- 0.17224131524562836
- ],
- [
- 0.1708705723285675
- ],
- [
- 0.15021927654743195
- ],
- [
- 0.1638488471508026
- ],
- [
- 0.17459745705127716
- ],
- [
- 0.19411323964595795
- ],
- [
- 0.17690987884998322
- ],
- [
- 0.17971327900886536
- ],
- [
- 0.1902340203523636
- ],
- [
- 0.13419662415981293
- ],
- [
- 0.14570192992687225
- ],
- [
- 0.16743507981300354
- ],
- [
- 0.18320968747138977
- ],
- [
- 0.207712784409523
- ],
- [
- 0.15082210302352905
- ],
- [
- 0.23150134086608887
- ],
- [
- 0.19294163584709167
- ],
- [
- 0.2020663619041443
- ],
- [
- 0.1748339831829071
- ],
- [
- 0.17260265350341797
- ],
- [
- 0.17266297340393066
- ],
- [
- 0.17316140234470367
- ],
- [
- 0.18796688318252563
- ],
- [
- 0.21125000715255737
- ],
- [
- 0.17411836981773376
- ],
- [
- 0.1550230085849762
- ],
- [
- 0.1892094612121582
- ],
- [
- 0.14458516240119934
- ],
- [
- 0.15676867961883545
- ],
- [
- 0.18402984738349915
- ],
- [
- 0.16845163702964783
- ],
- [
- 0.15209254622459412
- ],
- [
- 0.19919756054878235
- ],
- [
- 0.1853754073381424
- ],
- [
- 0.16981329023838043
- ],
- [
- 0.15205314755439758
- ],
- [
- 0.16672272980213165
- ],
- [
- 0.1944590061903
- ],
- [
- 0.22414074838161469
- ],
- [
- 0.1917303204536438
- ],
- [
- 0.17682026326656342
- ],
- [
- 0.17859582602977753
- ],
- [
- 0.14507444202899933
- ],
- [
- 0.17127221822738647
- ],
- [
- 0.16880133748054504
- ],
- [
- 0.20047502219676971
- ],
- [
- 0.17174957692623138
- ],
- [
- 0.16538022458553314
- ],
- [
- 0.1597547084093094
- ],
- [
- 0.30808115005493164
- ],
- [
- 0.17374390363693237
- ],
- [
- 0.19371674954891205
- ],
- [
- 0.14302295446395874
- ],
- [
- 0.19174699485301971
- ],
- [
- 0.20590609312057495
- ],
- [
- 0.18773354589939117
- ],
- [
- 0.18651261925697327
- ],
- [
- 0.192533940076828
- ],
- [
- 0.19083216786384583
- ],
- [
- 0.18758000433444977
- ],
- [
- 0.15763826668262482
- ],
- [
- 0.16400687396526337
- ],
- [
- 0.22037732601165771
- ],
- [
- 0.18826819956302643
- ],
- [
- 0.17064718902111053
- ],
- [
- 0.2302066683769226
- ],
- [
- 0.19226448237895966
- ],
- [
- 0.19342029094696045
- ],
- [
- 0.18559421598911285
- ],
- [
- 0.14278358221054077
- ],
- [
- 0.22323215007781982
- ],
- [
- 0.20030605792999268
- ],
- [
- 0.17617374658584595
- ],
- [
- 0.20237284898757935
- ],
- [
- 0.16867761313915253
- ],
- [
- 0.20253422856330872
- ],
- [
- 0.19009575247764587
- ],
- [
- 0.15949080884456635
- ],
- [
- 0.19496813416481018
- ],
- [
- 0.172251895070076
- ],
- [
- 0.16065362095832825
- ],
- [
- 0.25084617733955383
- ],
- [
- 0.19204986095428467
- ],
- [
- 0.16113270819187164
- ],
- [
- 0.17039814591407776
- ],
- [
- 0.19272539019584656
- ],
- [
- 0.20947133004665375
- ],
- [
- 0.17867735028266907
- ],
- [
- 0.1543457806110382
- ],
- [
- 0.1548968255519867
- ],
- [
- 0.19947972893714905
- ],
- [
- 0.19042429327964783
- ],
- [
- 0.19486860930919647
- ],
- [
- 0.20809267461299896
- ],
- [
- 0.17977221310138702
- ],
- [
- 0.16555112600326538
- ],
- [
- 0.14811724424362183
- ],
- [
- 0.18691261112689972
- ],
- [
- 0.18050095438957214
- ],
- [
- 0.17628492414951324
- ],
- [
- 0.1853061318397522
- ],
- [
- 0.26131996512413025
- ],
- [
- 0.1678118258714676
- ],
- [
- 0.1985688954591751
- ],
- [
- 0.19434182345867157
- ],
- [
- 0.16566860675811768
- ],
- [
- 0.19838790595531464
- ],
- [
- 0.23506557941436768
- ],
- [
- 0.13731402158737183
- ],
- [
- 0.16081351041793823
- ],
- [
- 0.18096938729286194
- ],
- [
- 0.18987666070461273
- ],
- [
- 0.17407621443271637
- ],
- [
- 0.16034770011901855
- ],
- [
- 0.24556864798069
- ],
- [
- 0.1538938581943512
- ],
- [
- 0.3308314383029938
- ],
- [
- 0.2268253117799759
- ],
- [
- 0.2912168502807617
- ],
- [
- 0.1589583307504654
- ],
- [
- 0.2510690987110138
- ],
- [
- 0.19860415160655975
- ],
- [
- 0.1472155898809433
- ],
- [
- 0.18444852530956268
- ],
- [
- 0.2806485891342163
- ],
- [
- 0.18793125450611115
- ],
- [
- 0.18326270580291748
- ],
- [
- 0.19256949424743652
- ],
- [
- 0.1483377069234848
- ],
- [
- 0.17540760338306427
- ],
- [
- 0.15189020335674286
- ],
- [
- 0.26437994837760925
- ],
- [
- 0.15442462265491486
- ],
- [
- 0.23165932297706604
- ],
- [
- 0.20758748054504395
- ],
- [
- 0.16096985340118408
- ],
- [
- 0.17397131025791168
- ],
- [
- 0.1841394454240799
- ],
- [
- 0.1738249808549881
- ],
- [
- 0.18996939063072205
- ],
- [
- 0.1807565540075302
- ],
- [
- 0.1667095273733139
- ],
- [
- 0.26068830490112305
- ],
- [
- 0.19834627211093903
- ],
- [
- 0.16692666709423065
- ],
- [
- 0.14595912396907806
- ],
- [
- 0.17825929820537567
- ],
- [
- 0.19342656433582306
- ],
- [
- 0.20118390023708344
- ],
- [
- 0.22219836711883545
- ],
- [
- 0.19526924192905426
- ],
- [
- 0.16521058976650238
- ],
- [
- 0.1662014126777649
- ],
- [
- 0.17750823497772217
- ],
- [
- 0.15328757464885712
- ],
- [
- 0.1639932543039322
- ],
- [
- 0.21797417104244232
- ],
- [
- 0.17379842698574066
- ],
- [
- 0.17616470158100128
- ],
- [
- 0.21967238187789917
- ],
- [
- 0.1897621899843216
- ],
- [
- 0.20835921168327332
- ],
- [
- 0.16407375037670135
- ],
- [
- 0.18935464322566986
- ],
- [
- 0.23566120862960815
- ],
- [
- 0.17528781294822693
- ],
- [
- 0.20077112317085266
- ],
- [
- 0.16685430705547333
- ],
- [
- 0.16016900539398193
- ],
- [
- 0.2504640221595764
- ],
- [
- 0.14925916492938995
- ],
- [
- 0.17839160561561584
- ],
- [
- 0.17908470332622528
- ],
- [
- 0.17176200449466705
- ],
- [
- 0.16726244986057281
- ],
- [
- 0.2058989256620407
- ],
- [
- 0.18805210292339325
- ],
- [
- 0.18631450831890106
- ],
- [
- 0.1812981516122818
- ],
- [
- 0.18295952677726746
- ],
- [
- 0.1470557451248169
- ],
- [
- 0.20279090106487274
- ],
- [
- 0.196679949760437
- ],
- [
- 0.2336379885673523
- ],
- [
- 0.16336439549922943
- ],
- [
- 0.15873487293720245
- ],
- [
- 0.17641638219356537
- ],
- [
- 0.22241157293319702
- ],
- [
- 0.1582973599433899
- ],
- [
- 0.23994730412960052
- ],
- [
- 0.22505223751068115
- ],
- [
- 0.18320785462856293
- ],
- [
- 0.15792714059352875
- ],
- [
- 0.29137638211250305
- ],
- [
- 0.18433921039104462
- ],
- [
- 0.18347850441932678
- ],
- [
- 0.15386167168617249
- ],
- [
- 0.20512989163398743
- ],
- [
- 0.17445743083953857
- ],
- [
- 0.1801995187997818
- ],
- [
- 0.17301364243030548
- ],
- [
- 0.18002738058567047
- ],
- [
- 0.16997955739498138
- ],
- [
- 0.18220065534114838
- ],
- [
- 0.19470949470996857
- ],
- [
- 0.17410418391227722
- ],
- [
- 0.21082746982574463
- ],
- [
- 0.18154235184192657
- ],
- [
- 0.1758839339017868
- ],
- [
- 0.16910278797149658
- ],
- [
- 0.18464532494544983
- ],
- [
- 0.23427267372608185
- ],
- [
- 0.15733662247657776
- ],
- [
- 0.17959114909172058
- ],
- [
- 0.19034461677074432
- ],
- [
- 0.22676165401935577
- ],
- [
- 0.181022047996521
- ],
- [
- 0.1668817549943924
- ],
- [
- 0.17591221630573273
- ],
- [
- 0.14866256713867188
- ],
- [
- 0.15059562027454376
- ],
- [
- 0.16487707197666168
- ],
- [
- 0.15306055545806885
- ],
- [
- 0.19385379552841187
- ],
- [
- 0.21018454432487488
- ],
- [
- 0.18824820220470428
- ],
- [
- 0.19175177812576294
- ],
- [
- 0.1871500015258789
- ],
- [
- 0.18205417692661285
- ],
- [
- 0.21757927536964417
- ],
- [
- 0.20660866796970367
- ],
- [
- 0.18517524003982544
- ],
- [
- 0.16736219823360443
- ],
- [
- 0.18270951509475708
- ],
- [
- 0.18459556996822357
- ],
- [
- 0.15655173361301422
- ],
- [
- 0.1839776337146759
- ],
- [
- 0.14421580731868744
- ],
- [
- 0.15523876249790192
- ],
- [
- 0.19135616719722748
- ],
- [
- 0.16434893012046814
- ],
- [
- 0.16837984323501587
- ],
- [
- 0.17121225595474243
- ],
- [
- 0.17004071176052094
- ],
- [
- 0.16819588840007782
- ],
- [
- 0.15324267745018005
- ],
- [
- 0.22132554650306702
- ],
- [
- 0.1529671549797058
- ],
- [
- 0.2196926474571228
- ],
- [
- 0.20112095773220062
- ],
- [
- 0.18035580217838287
- ],
- [
- 0.2223348319530487
- ],
- [
- 0.1966145783662796
- ],
- [
- 0.17575441300868988
- ],
- [
- 0.15885183215141296
- ],
- [
- 0.19681678712368011
- ],
- [
- 0.18381990492343903
- ],
- [
- 0.1853838562965393
- ],
- [
- 0.17603428661823273
- ],
- [
- 0.2307315468788147
- ],
- [
- 0.26523539423942566
- ],
- [
- 0.21853823959827423
- ],
- [
- 0.23579935729503632
- ],
- [
- 0.1925002634525299
- ],
- [
- 0.15563294291496277
- ],
- [
- 0.2432861626148224
- ],
- [
- 0.1889563798904419
- ],
- [
- 0.16129560768604279
- ],
- [
- 0.22907914221286774
- ],
- [
- 0.17883452773094177
- ],
- [
- 0.18274150788784027
- ],
- [
- 0.1905391365289688
- ],
- [
- 0.18944557011127472
- ],
- [
- 0.17718391120433807
- ],
- [
- 0.22449149191379547
- ],
- [
- 0.15173634886741638
- ],
- [
- 0.18502750992774963
- ],
- [
- 0.18156522512435913
- ],
- [
- 0.1550455540418625
- ],
- [
- 0.21641050279140472
- ],
- [
- 0.18402206897735596
- ],
- [
- 0.15967068076133728
- ],
- [
- 0.1857430338859558
- ],
- [
- 0.21137355268001556
- ],
- [
- 0.20513099431991577
- ],
- [
- 0.16250717639923096
- ],
- [
- 0.21546512842178345
- ],
- [
- 0.1697390079498291
- ],
- [
- 0.17480096220970154
- ],
- [
- 0.22121456265449524
- ],
- [
- 0.17031621932983398
- ],
- [
- 0.20220191776752472
- ],
- [
- 0.18759159743785858
- ],
- [
- 0.1765585094690323
- ],
- [
- 0.16026805341243744
- ],
- [
- 0.17486916482448578
- ],
- [
- 0.16195161640644073
- ],
- [
- 0.1431393027305603
- ],
- [
- 0.20473697781562805
- ],
- [
- 0.17828436195850372
- ],
- [
- 0.15795081853866577
- ],
- [
- 0.16837233304977417
- ],
- [
- 0.22043217718601227
- ],
- [
- 0.17764000594615936
- ],
- [
- 0.16156943142414093
- ],
- [
- 0.16034772992134094
- ],
- [
- 0.15081219375133514
- ],
- [
- 0.1990709751844406
- ],
- [
- 0.21912206709384918
- ],
- [
- 0.1962527185678482
- ],
- [
- 0.18995828926563263
- ],
- [
- 0.17731398344039917
- ],
- [
- 0.2481997013092041
- ],
- [
- 0.2272866815328598
- ],
- [
- 0.14826740324497223
- ],
- [
- 0.20075081288814545
- ],
- [
- 0.15744146704673767
- ],
- [
- 0.1621989905834198
- ],
- [
- 0.15793946385383606
- ],
- [
- 0.16875560581684113
- ],
- [
- 0.13808099925518036
- ],
- [
- 0.1623252034187317
- ],
- [
- 0.17968574166297913
- ],
- [
- 0.19446972012519836
- ],
- [
- 0.24602816998958588
- ],
- [
- 0.17993929982185364
- ],
- [
- 0.18997789919376373
- ],
- [
- 0.20867472887039185
- ],
- [
- 0.2658577561378479
- ],
- [
- 0.18800264596939087
- ],
- [
- 0.16816557943820953
- ],
- [
- 0.18368878960609436
- ],
- [
- 0.17978094518184662
- ],
- [
- 0.1814107745885849
- ],
- [
- 0.15550686419010162
- ],
- [
- 0.16250856220722198
- ],
- [
- 0.21450307965278625
- ],
- [
- 0.16707515716552734
- ],
- [
- 0.20437303185462952
- ],
- [
- 0.1526467651128769
- ],
- [
- 0.15785396099090576
- ],
- [
- 0.164737731218338
- ],
- [
- 0.22548067569732666
- ],
- [
- 0.15701237320899963
- ],
- [
- 0.16715876758098602
- ],
- [
- 0.19250597059726715
- ],
- [
- 0.13915030658245087
- ],
- [
- 0.13940826058387756
- ],
- [
- 0.17614200711250305
- ],
- [
- 0.16211147606372833
- ],
- [
- 0.17450806498527527
- ],
- [
- 0.21575121581554413
- ],
- [
- 0.21135596930980682
- ],
- [
- 0.221391499042511
- ],
- [
- 0.19858095049858093
- ],
- [
- 0.21205203235149384
- ],
- [
- 0.1684476137161255
- ],
- [
- 0.2520287036895752
- ],
- [
- 0.19030354917049408
- ],
- [
- 0.17905858159065247
- ],
- [
- 0.17154593765735626
- ],
- [
- 0.2017565369606018
- ],
- [
- 0.1648661494255066
- ],
- [
- 0.18700377643108368
- ],
- [
- 0.2086944431066513
- ],
- [
- 0.1883562058210373
- ],
- [
- 0.16313202679157257
- ],
- [
- 0.1507696956396103
- ],
- [
- 0.17325656116008759
- ],
- [
- 0.18775059282779694
- ],
- [
- 0.1995343714952469
- ]
- ],
- "output_low": [
- [
- -0.1554616540670395
- ],
- [
- -0.1975422203540802
- ],
- [
- -0.19815252721309662
- ],
- [
- -0.19275590777397156
- ],
- [
- -0.1632937341928482
- ],
- [
- -0.1923627406358719
- ],
- [
- -0.18891191482543945
- ],
- [
- -0.19505365192890167
- ],
- [
- -0.16614100337028503
- ],
- [
- -0.2026558220386505
- ],
- [
- -0.17544172704219818
- ],
- [
- -0.17875641584396362
- ],
- [
- -0.19346709549427032
- ],
- [
- -0.19736085832118988
- ],
- [
- -0.21658942103385925
- ],
- [
- -0.16777093708515167
- ],
- [
- -0.16759631037712097
- ],
- [
- -0.19211065769195557
- ],
- [
- -0.16350416839122772
- ],
- [
- -0.17982250452041626
- ],
- [
- -0.17943334579467773
- ],
- [
- -0.18009012937545776
- ],
- [
- -0.20071813464164734
- ],
- [
- -0.1820417046546936
- ],
- [
- -0.18197399377822876
- ],
- [
- -0.17596738040447235
- ],
- [
- -0.14973224699497223
- ],
- [
- -0.157967671751976
- ],
- [
- -0.1670437604188919
- ],
- [
- -0.19772693514823914
- ],
- [
- -0.15720735490322113
- ],
- [
- -0.1574394851922989
- ],
- [
- -0.1458834856748581
- ],
- [
- -0.16934432089328766
- ],
- [
- -0.21939755976200104
- ],
- [
- -0.1791817992925644
- ],
- [
- -0.17166835069656372
- ],
- [
- -0.15734130144119263
- ],
- [
- -0.2154453992843628
- ],
- [
- -0.16703885793685913
- ],
- [
- -0.14975644648075104
- ],
- [
- -0.15567708015441895
- ],
- [
- -0.21273085474967957
- ],
- [
- -0.17863717675209045
- ],
- [
- -0.1500164419412613
- ],
- [
- -0.19780881702899933
- ],
- [
- -0.14390213787555695
- ],
- [
- -0.16493703424930573
- ],
- [
- -0.16165776550769806
- ],
- [
- -0.16916118562221527
- ],
- [
- -0.16741515696048737
- ],
- [
- -0.19759589433670044
- ],
- [
- -0.14447800815105438
- ],
- [
- -0.19408459961414337
- ],
- [
- -0.15510299801826477
- ],
- [
- -0.15851148962974548
- ],
- [
- -0.1577356457710266
- ],
- [
- -0.16961176693439484
- ],
- [
- -0.1655804067850113
- ],
- [
- -0.16352957487106323
- ],
- [
- -0.15973614156246185
- ],
- [
- -0.1958252489566803
- ],
- [
- -0.15216363966464996
- ],
- [
- -0.16100147366523743
- ],
- [
- -0.1638059765100479
- ],
- [
- -0.19385847449302673
- ],
- [
- -0.1567348837852478
- ],
- [
- -0.1739172339439392
- ],
- [
- -0.17613054811954498
- ],
- [
- -0.16814537346363068
- ],
- [
- -0.15428847074508667
- ],
- [
- -0.18976397812366486
- ],
- [
- -0.18346834182739258
- ],
- [
- -0.18718120455741882
- ],
- [
- -0.17757417261600494
- ],
- [
- -0.1564321219921112
- ],
- [
- -0.19593022763729095
- ],
- [
- -0.16516827046871185
- ],
- [
- -0.1725962907075882
- ],
- [
- -0.18348577618598938
- ],
- [
- -0.15860189497470856
- ],
- [
- -0.2019111067056656
- ],
- [
- -0.19141781330108643
- ],
- [
- -0.1870553344488144
- ],
- [
- -0.19091860949993134
- ],
- [
- -0.1963810920715332
- ],
- [
- -0.1551758199930191
- ],
- [
- -0.19004997611045837
- ],
- [
- -0.17954422533512115
- ],
- [
- -0.17040644586086273
- ],
- [
- -0.20762114226818085
- ],
- [
- -0.17358563840389252
- ],
- [
- -0.19947870075702667
- ],
- [
- -0.20734532177448273
- ],
- [
- -0.19740080833435059
- ],
- [
- -0.18585246801376343
- ],
- [
- -0.17795231938362122
- ],
- [
- -0.1665991246700287
- ],
- [
- -0.18589343130588531
- ],
- [
- -0.17855334281921387
- ],
- [
- -0.176802858710289
- ],
- [
- -0.21271899342536926
- ],
- [
- -0.19119681417942047
- ],
- [
- -0.1980128139257431
- ],
- [
- -0.16658519208431244
- ],
- [
- -0.17710739374160767
- ],
- [
- -0.15256288647651672
- ],
- [
- -0.18983004987239838
- ],
- [
- -0.1538560837507248
- ],
- [
- -0.16041402518749237
- ],
- [
- -0.1940893530845642
- ],
- [
- -0.28210437297821045
- ],
- [
- -0.18090768158435822
- ],
- [
- -0.15481793880462646
- ],
- [
- -0.17062480747699738
- ],
- [
- -0.22132103145122528
- ],
- [
- -0.16138815879821777
- ],
- [
- -0.20396102964878082
- ],
- [
- -0.1852949559688568
- ],
- [
- -0.1882438212633133
- ],
- [
- -0.1543368250131607
- ],
- [
- -0.1559508889913559
- ],
- [
- -0.3038824200630188
- ],
- [
- -0.15609534084796906
- ],
- [
- -0.15606719255447388
- ],
- [
- -0.1690848469734192
- ],
- [
- -0.15160515904426575
- ],
- [
- -0.15777899324893951
- ],
- [
- -0.16711781919002533
- ],
- [
- -0.1764446198940277
- ],
- [
- -0.20234768092632294
- ],
- [
- -0.15752936899662018
- ],
- [
- -0.16651871800422668
- ],
- [
- -0.17491839826107025
- ],
- [
- -0.20015445351600647
- ],
- [
- -0.16318103671073914
- ],
- [
- -0.20413576066493988
- ],
- [
- -0.1840687096118927
- ],
- [
- -0.17463408410549164
- ],
- [
- -0.1678122878074646
- ],
- [
- -0.15287120640277863
- ],
- [
- -0.17828428745269775
- ],
- [
- -0.15503408014774323
- ],
- [
- -0.19394060969352722
- ],
- [
- -0.18013359606266022
- ],
- [
- -0.194406658411026
- ],
- [
- -0.17791183292865753
- ],
- [
- -0.15880170464515686
- ],
- [
- -0.1970207691192627
- ],
- [
- -0.19493091106414795
- ],
- [
- -0.2132979780435562
- ],
- [
- -0.13604971766471863
- ],
- [
- -0.14387249946594238
- ],
- [
- -0.15706458687782288
- ],
- [
- -0.1441241353750229
- ],
- [
- -0.1456950306892395
- ],
- [
- -0.16140998899936676
- ],
- [
- -0.14745505154132843
- ],
- [
- -0.14955733716487885
- ],
- [
- -0.13720279932022095
- ],
- [
- -0.14628441631793976
- ],
- [
- -0.15323592722415924
- ],
- [
- -0.1414981335401535
- ],
- [
- -0.14737191796302795
- ],
- [
- -0.15496139228343964
- ],
- [
- -0.13915173709392548
- ],
- [
- -0.1395258605480194
- ],
- [
- -0.15097515285015106
- ],
- [
- -0.14261914789676666
- ],
- [
- -0.1680321842432022
- ],
- [
- -0.15259958803653717
- ],
- [
- -0.1438864767551422
- ],
- [
- -0.1865168660879135
- ],
- [
- -0.1623374968767166
- ],
- [
- -0.14232207834720612
- ],
- [
- -0.14515051245689392
- ],
- [
- -0.1602032482624054
- ],
- [
- -0.1362183690071106
- ],
- [
- -0.16892684996128082
- ],
- [
- -0.18019527196884155
- ],
- [
- -0.14054836332798004
- ],
- [
- -0.16556498408317566
- ],
- [
- -0.1487024873495102
- ],
- [
- -0.1330948919057846
- ],
- [
- -0.17255175113677979
- ],
- [
- -0.1688777208328247
- ],
- [
- -0.13641972839832306
- ],
- [
- -0.1392057090997696
- ],
- [
- -0.13428297638893127
- ],
- [
- -0.17613103985786438
- ],
- [
- -0.1469261795282364
- ],
- [
- -0.16084416210651398
- ],
- [
- -0.16282273828983307
- ],
- [
- -0.1485363245010376
- ],
- [
- -0.15152333676815033
- ],
- [
- -0.1347143054008484
- ],
- [
- -0.13911904394626617
- ],
- [
- -0.14172464609146118
- ],
- [
- -0.16149453818798065
- ],
- [
- -0.16716161370277405
- ],
- [
- -0.1490926593542099
- ],
- [
- -0.1630668044090271
- ],
- [
- -0.1563192456960678
- ],
- [
- -0.30908846855163574
- ],
- [
- -0.15396101772785187
- ],
- [
- -0.13763822615146637
- ],
- [
- -0.1573229730129242
- ],
- [
- -0.1458754539489746
- ],
- [
- -0.2124687135219574
- ],
- [
- -0.13131213188171387
- ],
- [
- -0.14602069556713104
- ],
- [
- -0.1606072187423706
- ],
- [
- -0.15101312100887299
- ],
- [
- -0.14434655010700226
- ],
- [
- -0.13670538365840912
- ],
- [
- -0.12839893996715546
- ],
- [
- -0.15258818864822388
- ],
- [
- -0.18240438401699066
- ],
- [
- -0.14064869284629822
- ],
- [
- -0.15807132422924042
- ],
- [
- -0.15209217369556427
- ],
- [
- -0.1419975906610489
- ],
- [
- -0.13598614931106567
- ],
- [
- -0.14221300184726715
- ],
- [
- -0.15173684060573578
- ],
- [
- -0.14439542591571808
- ],
- [
- -0.15190725028514862
- ],
- [
- -0.1393192857503891
- ],
- [
- -0.183673694729805
- ],
- [
- -0.1676936000585556
- ],
- [
- -0.1360417902469635
- ],
- [
- -0.2881479561328888
- ],
- [
- -0.16910609602928162
- ],
- [
- -0.13352417945861816
- ],
- [
- -0.1296633929014206
- ],
- [
- -0.1437918245792389
- ],
- [
- -0.12645654380321503
- ],
- [
- -0.1495286077260971
- ],
- [
- -0.13880714774131775
- ],
- [
- -0.13524878025054932
- ],
- [
- -0.1409737914800644
- ],
- [
- -0.14624647796154022
- ],
- [
- -0.18651117384433746
- ],
- [
- -0.16946345567703247
- ],
- [
- -0.14949281513690948
- ],
- [
- -0.1477336585521698
- ],
- [
- -0.21915489435195923
- ],
- [
- -0.14885690808296204
- ],
- [
- -0.15019501745700836
- ],
- [
- -0.15175694227218628
- ],
- [
- -0.13289572298526764
- ],
- [
- -0.15563049912452698
- ],
- [
- -0.14055584371089935
- ],
- [
- -0.15766851603984833
- ],
- [
- -0.1481427401304245
- ],
- [
- -0.15644818544387817
- ],
- [
- -0.13985498249530792
- ],
- [
- -0.11431986093521118
- ],
- [
- -0.1623237431049347
- ],
- [
- -0.13968627154827118
- ],
- [
- -0.1521422564983368
- ],
- [
- -0.14525818824768066
- ],
- [
- -0.1610676646232605
- ],
- [
- -0.1531512439250946
- ],
- [
- -0.19808046519756317
- ],
- [
- -0.1537771224975586
- ],
- [
- -0.1539282649755478
- ],
- [
- -0.1464168131351471
- ],
- [
- -0.17963628470897675
- ],
- [
- -0.1485971361398697
- ],
- [
- -0.141460582613945
- ],
- [
- -0.19123481214046478
- ],
- [
- -0.1403573602437973
- ],
- [
- -0.13767030835151672
- ],
- [
- -0.16806331276893616
- ],
- [
- -0.1673450618982315
- ],
- [
- -0.1478317826986313
- ],
- [
- -0.16226759552955627
- ],
- [
- -0.1504182517528534
- ],
- [
- -0.15283240377902985
- ],
- [
- -0.14401422441005707
- ],
- [
- -0.1596337854862213
- ],
- [
- -0.21676887571811676
- ],
- [
- -0.13491491973400116
- ],
- [
- -0.18152843415737152
- ],
- [
- -0.13824713230133057
- ],
- [
- -0.15338853001594543
- ],
- [
- -0.17609448730945587
- ],
- [
- -0.1495874673128128
- ],
- [
- -0.15294019877910614
- ],
- [
- -0.14528177678585052
- ],
- [
- -0.17574435472488403
- ],
- [
- -0.169702410697937
- ],
- [
- -0.1472545713186264
- ],
- [
- -0.14803604781627655
- ],
- [
- -0.18454037606716156
- ],
- [
- -0.1599598228931427
- ],
- [
- -0.15051262080669403
- ],
- [
- -0.16271421313285828
- ],
- [
- -0.1690702736377716
- ],
- [
- -0.16742467880249023
- ],
- [
- -0.14732667803764343
- ],
- [
- -0.14613237977027893
- ],
- [
- -0.1706421673297882
- ],
- [
- -0.1492362916469574
- ],
- [
- -0.20478655397891998
- ],
- [
- -0.18628975749015808
- ],
- [
- -0.18614841997623444
- ],
- [
- -0.18360406160354614
- ],
- [
- -0.17302314937114716
- ],
- [
- -0.16951556503772736
- ],
- [
- -0.16514141857624054
- ],
- [
- -0.17182575166225433
- ],
- [
- -0.1680196225643158
- ],
- [
- -0.1738901138305664
- ],
- [
- -0.2046060860157013
- ],
- [
- -0.1991339921951294
- ],
- [
- -0.16841518878936768
- ],
- [
- -0.18121151626110077
- ],
- [
- -0.18472367525100708
- ],
- [
- -0.18740805983543396
- ],
- [
- -0.18905211985111237
- ],
- [
- -0.18663005530834198
- ],
- [
- -0.17923007905483246
- ],
- [
- -0.19697289168834686
- ],
- [
- -0.21080587804317474
- ],
- [
- -0.16534699499607086
- ],
- [
- -0.16663599014282227
- ],
- [
- -0.23738177120685577
- ],
- [
- -0.16369733214378357
- ],
- [
- -0.18115276098251343
- ],
- [
- -0.15539315342903137
- ],
- [
- -0.17165030539035797
- ],
- [
- -0.2192673236131668
- ],
- [
- -0.18592023849487305
- ],
- [
- -0.21107617020606995
- ],
- [
- -0.1565266251564026
- ],
- [
- -0.1613844931125641
- ],
- [
- -0.17557285726070404
- ],
- [
- -0.15444649755954742
- ],
- [
- -0.19357317686080933
- ],
- [
- -0.18057496845722198
- ],
- [
- -0.1677565723657608
- ],
- [
- -0.1801391988992691
- ],
- [
- -0.18744203448295593
- ],
- [
- -0.19864708185195923
- ],
- [
- -0.1822778582572937
- ],
- [
- -0.20251941680908203
- ],
- [
- -0.1965763121843338
- ],
- [
- -0.19803616404533386
- ],
- [
- -0.18668320775032043
- ],
- [
- -0.16774487495422363
- ],
- [
- -0.16835254430770874
- ],
- [
- -0.15865857899188995
- ],
- [
- -0.1844508945941925
- ],
- [
- -0.1867118924856186
- ],
- [
- -0.19959378242492676
- ],
- [
- -0.19621115922927856
- ],
- [
- -0.1811380833387375
- ],
- [
- -0.1599198579788208
- ],
- [
- -0.15470530092716217
- ],
- [
- -0.1663578748703003
- ],
- [
- -0.16461433470249176
- ],
- [
- -0.17861227691173553
- ],
- [
- -0.18070274591445923
- ],
- [
- -0.1875942200422287
- ],
- [
- -0.14198093116283417
- ],
- [
- -0.1712108999490738
- ],
- [
- -0.15546587109565735
- ],
- [
- -0.15635712444782257
- ],
- [
- -0.14400799572467804
- ],
- [
- -0.1720377504825592
- ],
- [
- -0.16787372529506683
- ],
- [
- -0.1397639662027359
- ],
- [
- -0.14904029667377472
- ],
- [
- -0.18165622651576996
- ],
- [
- -0.18291693925857544
- ],
- [
- -0.15101400017738342
- ],
- [
- -0.156324103474617
- ],
- [
- -0.1560845822095871
- ],
- [
- -0.19682712852954865
- ],
- [
- -0.15480953454971313
- ],
- [
- -0.159444659948349
- ],
- [
- -0.1494983732700348
- ],
- [
- -0.16678914427757263
- ],
- [
- -0.2120104432106018
- ],
- [
- -0.17350763082504272
- ],
- [
- -0.19693617522716522
- ],
- [
- -0.17883536219596863
- ],
- [
- -0.16634979844093323
- ],
- [
- -0.19762341678142548
- ],
- [
- -0.18416942656040192
- ],
- [
- -0.1836548149585724
- ],
- [
- -0.1721275895833969
- ],
- [
- -0.1731816977262497
- ],
- [
- -0.17978568375110626
- ],
- [
- -0.18174143135547638
- ],
- [
- -0.1812942922115326
- ],
- [
- -0.19271568953990936
- ],
- [
- -0.17789886891841888
- ],
- [
- -0.23321010172367096
- ],
- [
- -0.18859033286571503
- ],
- [
- -0.1677633672952652
- ],
- [
- -0.1897542029619217
- ],
- [
- -0.17996208369731903
- ],
- [
- -0.1961667537689209
- ],
- [
- -0.16102050244808197
- ],
- [
- -0.16764846444129944
- ],
- [
- -0.1939171403646469
- ],
- [
- -0.1899154931306839
- ],
- [
- -0.22233277559280396
- ],
- [
- -0.170207679271698
- ],
- [
- -0.19149336218833923
- ],
- [
- -0.17277684807777405
- ],
- [
- -0.15064997971057892
- ],
- [
- -0.21702760457992554
- ],
- [
- -0.2204771339893341
- ],
- [
- -0.18513739109039307
- ],
- [
- -0.18720750510692596
- ],
- [
- -0.18946747481822968
- ],
- [
- -0.17766903340816498
- ],
- [
- -0.16459965705871582
- ],
- [
- -0.18088693916797638
- ],
- [
- -0.1629784107208252
- ],
- [
- -0.21881739795207977
- ],
- [
- -0.18741026520729065
- ],
- [
- -0.17082162201404572
- ],
- [
- -0.1816582828760147
- ],
- [
- -0.20035892724990845
- ],
- [
- -0.26015526056289673
- ],
- [
- -0.24588420987129211
- ],
- [
- -0.18029873073101044
- ],
- [
- -0.18377017974853516
- ],
- [
- -0.17955715954303741
- ],
- [
- -0.18493786454200745
- ],
- [
- -0.17482219636440277
- ],
- [
- -0.13112790882587433
- ],
- [
- -0.15757209062576294
- ],
- [
- -0.19564299285411835
- ],
- [
- -0.31959375739097595
- ],
- [
- -0.15963591635227203
- ],
- [
- -0.15397915244102478
- ],
- [
- -0.1859492063522339
- ],
- [
- -0.24640625715255737
- ],
- [
- -0.19564633071422577
- ],
- [
- -0.17703938484191895
- ],
- [
- -0.22402234375476837
- ],
- [
- -0.1859654188156128
- ],
- [
- -0.20778042078018188
- ],
- [
- -0.14620646834373474
- ],
- [
- -0.2509823441505432
- ],
- [
- -0.2168605923652649
- ],
- [
- -0.18321332335472107
- ],
- [
- -0.15785761177539825
- ],
- [
- -0.17786289751529694
- ],
- [
- -0.17578189074993134
- ],
- [
- -0.20526383817195892
- ],
- [
- -0.2208370417356491
- ],
- [
- -0.15807807445526123
- ],
- [
- -0.1897348314523697
- ],
- [
- -0.15729054808616638
- ],
- [
- -0.17210641503334045
- ],
- [
- -0.22639533877372742
- ],
- [
- -0.14276844263076782
- ],
- [
- -0.21831779181957245
- ],
- [
- -0.17482596635818481
- ],
- [
- -0.1952821910381317
- ],
- [
- -0.17340689897537231
- ],
- [
- -0.16471333801746368
- ],
- [
- -0.1604461818933487
- ],
- [
- -0.17594686150550842
- ],
- [
- -0.18743063509464264
- ],
- [
- -0.1803428679704666
- ],
- [
- -0.1976979374885559
- ],
- [
- -0.14430448412895203
- ],
- [
- -0.17948080599308014
- ],
- [
- -0.21837371587753296
- ],
- [
- -0.15121953189373016
- ],
- [
- -0.18200941383838654
- ],
- [
- -0.16272152960300446
- ],
- [
- -0.20212800800800323
- ],
- [
- -0.15618817508220673
- ],
- [
- -0.14089886844158173
- ],
- [
- -0.1865425705909729
- ],
- [
- -0.16811621189117432
- ],
- [
- -0.1595086306333542
- ],
- [
- -0.2632863521575928
- ],
- [
- -0.18367178738117218
- ],
- [
- -0.17524053156375885
- ],
- [
- -0.2014491707086563
- ],
- [
- -0.17999206483364105
- ],
- [
- -0.21480777859687805
- ],
- [
- -0.15415014326572418
- ],
- [
- -0.14417366683483124
- ],
- [
- -0.32448211312294006
- ],
- [
- -0.18896345794200897
- ],
- [
- -0.18553605675697327
- ],
- [
- -0.1423873007297516
- ],
- [
- -0.2100171595811844
- ],
- [
- -0.20931345224380493
- ],
- [
- -0.1753457486629486
- ],
- [
- -0.17901964485645294
- ],
- [
- -0.17398734390735626
- ],
- [
- -0.17050780355930328
- ],
- [
- -0.16929727792739868
- ],
- [
- -0.20436882972717285
- ],
- [
- -0.263933926820755
- ],
- [
- -0.20110930502414703
- ],
- [
- -0.185881108045578
- ],
- [
- -0.16564024984836578
- ],
- [
- -0.17704130709171295
- ],
- [
- -0.22285127639770508
- ],
- [
- -0.1965426206588745
- ],
- [
- -0.2021714150905609
- ],
- [
- -0.1745164692401886
- ],
- [
- -0.17471306025981903
- ],
- [
- -0.18167324364185333
- ],
- [
- -0.17368561029434204
- ],
- [
- -0.1642691045999527
- ],
- [
- -0.1591336876153946
- ],
- [
- -0.16357024013996124
- ],
- [
- -0.1870107352733612
- ],
- [
- -0.20745885372161865
- ],
- [
- -0.18470188975334167
- ],
- [
- -0.15653596818447113
- ],
- [
- -0.1914929300546646
- ],
- [
- -0.28629305958747864
- ],
- [
- -0.15686090290546417
- ],
- [
- -0.2307235300540924
- ],
- [
- -0.18614745140075684
- ],
- [
- -0.1631689965724945
- ],
- [
- -0.15032212436199188
- ],
- [
- -0.1813979297876358
- ],
- [
- -0.17065730690956116
- ],
- [
- -0.2530304193496704
- ],
- [
- -0.2116733193397522
- ],
- [
- -0.16761009395122528
- ],
- [
- -0.17038004100322723
- ],
- [
- -0.15817269682884216
- ],
- [
- -0.2031041532754898
- ],
- [
- -0.19461460411548615
- ],
- [
- -0.17155270278453827
- ],
- [
- -0.18726946413516998
- ],
- [
- -0.18010307848453522
- ],
- [
- -0.2631581127643585
- ],
- [
- -0.1608726978302002
- ],
- [
- -0.1880207359790802
- ],
- [
- -0.18389475345611572
- ],
- [
- -0.15554018318653107
- ],
- [
- -0.1617802381515503
- ],
- [
- -0.1793060302734375
- ],
- [
- -0.19382402300834656
- ],
- [
- -0.22422181069850922
- ],
- [
- -0.2161247730255127
- ],
- [
- -0.2280011624097824
- ],
- [
- -0.16259975731372833
- ],
- [
- -0.16104616224765778
- ],
- [
- -0.20166929066181183
- ],
- [
- -0.17533238232135773
- ],
- [
- -0.18151994049549103
- ],
- [
- -0.20273099839687347
- ],
- [
- -0.18299363553524017
- ],
- [
- -0.1826666295528412
- ],
- [
- -0.19088716804981232
- ],
- [
- -0.19892987608909607
- ],
- [
- -0.23135410249233246
- ],
- [
- -0.2083427757024765
- ],
- [
- -0.1473187953233719
- ],
- [
- -0.18608255684375763
- ],
- [
- -0.16491012275218964
- ],
- [
- -0.16291645169258118
- ],
- [
- -0.20803509652614594
- ],
- [
- -0.13550621271133423
- ],
- [
- -0.19034366309642792
- ],
- [
- -0.18762913346290588
- ],
- [
- -0.2188471108675003
- ],
- [
- -0.2015460729598999
- ],
- [
- -0.16181008517742157
- ],
- [
- -0.17334502935409546
- ],
- [
- -0.18237265944480896
- ],
- [
- -0.2215699702501297
- ],
- [
- -0.15564121305942535
- ],
- [
- -0.15888278186321259
- ],
- [
- -0.2251988798379898
- ],
- [
- -0.18147599697113037
- ],
- [
- -0.16299863159656525
- ],
- [
- -0.15596555173397064
- ],
- [
- -0.17302566766738892
- ],
- [
- -0.18514741957187653
- ],
- [
- -0.1773276925086975
- ],
- [
- -0.16047747433185577
- ],
- [
- -0.22201301157474518
- ],
- [
- -0.22794052958488464
- ],
- [
- -0.20315130054950714
- ],
- [
- -0.21184229850769043
- ],
- [
- -0.2081483006477356
- ],
- [
- -0.15236589312553406
- ],
- [
- -0.17661930620670319
- ],
- [
- -0.17957478761672974
- ],
- [
- -0.18464355170726776
- ],
- [
- -0.17292018234729767
- ],
- [
- -0.15938124060630798
- ],
- [
- -0.24028165638446808
- ],
- [
- -0.17717088758945465
- ],
- [
- -0.24310056865215302
- ],
- [
- -0.18869176506996155
- ],
- [
- -0.23555755615234375
- ],
- [
- -0.18065829575061798
- ],
- [
- -0.19019396603107452
- ],
- [
- -0.18431033194065094
- ],
- [
- -0.17810948193073273
- ],
- [
- -0.25237539410591125
- ],
- [
- -0.20283369719982147
- ],
- [
- -0.176487997174263
- ],
- [
- -0.20932739973068237
- ],
- [
- -0.23728583753108978
- ],
- [
- -0.19103068113327026
- ],
- [
- -0.1589534878730774
- ],
- [
- -0.200917050242424
- ],
- [
- -0.1746799647808075
- ],
- [
- -0.15379831194877625
- ],
- [
- -0.14865314960479736
- ],
- [
- -0.17281094193458557
- ],
- [
- -0.1583787351846695
- ],
- [
- -0.16508759558200836
- ],
- [
- -0.17316575348377228
- ],
- [
- -0.2141069620847702
- ],
- [
- -0.1847236305475235
- ],
- [
- -0.1600286066532135
- ],
- [
- -0.17224131524562836
- ],
- [
- -0.1708705723285675
- ],
- [
- -0.15021927654743195
- ],
- [
- -0.1638488471508026
- ],
- [
- -0.17459745705127716
- ],
- [
- -0.19411323964595795
- ],
- [
- -0.17690987884998322
- ],
- [
- -0.17971327900886536
- ],
- [
- -0.1902340203523636
- ],
- [
- -0.13419662415981293
- ],
- [
- -0.14570192992687225
- ],
- [
- -0.16743507981300354
- ],
- [
- -0.18320968747138977
- ],
- [
- -0.207712784409523
- ],
- [
- -0.15082210302352905
- ],
- [
- -0.23150134086608887
- ],
- [
- -0.19294163584709167
- ],
- [
- -0.2020663619041443
- ],
- [
- -0.1748339831829071
- ],
- [
- -0.17260265350341797
- ],
- [
- -0.17266297340393066
- ],
- [
- -0.17316140234470367
- ],
- [
- -0.18796688318252563
- ],
- [
- -0.21125000715255737
- ],
- [
- -0.17411836981773376
- ],
- [
- -0.1550230085849762
- ],
- [
- -0.1892094612121582
- ],
- [
- -0.14458516240119934
- ],
- [
- -0.15676867961883545
- ],
- [
- -0.18402984738349915
- ],
- [
- -0.16845163702964783
- ],
- [
- -0.15209254622459412
- ],
- [
- -0.19919756054878235
- ],
- [
- -0.1853754073381424
- ],
- [
- -0.16981329023838043
- ],
- [
- -0.15205314755439758
- ],
- [
- -0.16672272980213165
- ],
- [
- -0.1944590061903
- ],
- [
- -0.22414074838161469
- ],
- [
- -0.1917303204536438
- ],
- [
- -0.17682026326656342
- ],
- [
- -0.17859582602977753
- ],
- [
- -0.14507444202899933
- ],
- [
- -0.17127221822738647
- ],
- [
- -0.16880133748054504
- ],
- [
- -0.20047502219676971
- ],
- [
- -0.17174957692623138
- ],
- [
- -0.16538022458553314
- ],
- [
- -0.1597547084093094
- ],
- [
- -0.30808115005493164
- ],
- [
- -0.17374390363693237
- ],
- [
- -0.19371674954891205
- ],
- [
- -0.14302295446395874
- ],
- [
- -0.19174699485301971
- ],
- [
- -0.20590609312057495
- ],
- [
- -0.18773354589939117
- ],
- [
- -0.18651261925697327
- ],
- [
- -0.192533940076828
- ],
- [
- -0.19083216786384583
- ],
- [
- -0.18758000433444977
- ],
- [
- -0.15763826668262482
- ],
- [
- -0.16400687396526337
- ],
- [
- -0.22037732601165771
- ],
- [
- -0.18826819956302643
- ],
- [
- -0.17064718902111053
- ],
- [
- -0.2302066683769226
- ],
- [
- -0.19226448237895966
- ],
- [
- -0.19342029094696045
- ],
- [
- -0.18559421598911285
- ],
- [
- -0.14278358221054077
- ],
- [
- -0.22323215007781982
- ],
- [
- -0.20030605792999268
- ],
- [
- -0.17617374658584595
- ],
- [
- -0.20237284898757935
- ],
- [
- -0.16867761313915253
- ],
- [
- -0.20253422856330872
- ],
- [
- -0.19009575247764587
- ],
- [
- -0.15949080884456635
- ],
- [
- -0.19496813416481018
- ],
- [
- -0.172251895070076
- ],
- [
- -0.16065362095832825
- ],
- [
- -0.25084617733955383
- ],
- [
- -0.19204986095428467
- ],
- [
- -0.16113270819187164
- ],
- [
- -0.17039814591407776
- ],
- [
- -0.19272539019584656
- ],
- [
- -0.20947133004665375
- ],
- [
- -0.17867735028266907
- ],
- [
- -0.1543457806110382
- ],
- [
- -0.1548968255519867
- ],
- [
- -0.19947972893714905
- ],
- [
- -0.19042429327964783
- ],
- [
- -0.19486860930919647
- ],
- [
- -0.20809267461299896
- ],
- [
- -0.17977221310138702
- ],
- [
- -0.16555112600326538
- ],
- [
- -0.14811724424362183
- ],
- [
- -0.18691261112689972
- ],
- [
- -0.18050095438957214
- ],
- [
- -0.17628492414951324
- ],
- [
- -0.1853061318397522
- ],
- [
- -0.26131996512413025
- ],
- [
- -0.1678118258714676
- ],
- [
- -0.1985688954591751
- ],
- [
- -0.19434182345867157
- ],
- [
- -0.16566860675811768
- ],
- [
- -0.19838790595531464
- ],
- [
- -0.23506557941436768
- ],
- [
- -0.13731402158737183
- ],
- [
- -0.16081351041793823
- ],
- [
- -0.18096938729286194
- ],
- [
- -0.18987666070461273
- ],
- [
- -0.17407621443271637
- ],
- [
- -0.16034770011901855
- ],
- [
- -0.24556864798069
- ],
- [
- -0.1538938581943512
- ],
- [
- -0.3308314383029938
- ],
- [
- -0.2268253117799759
- ],
- [
- -0.2912168502807617
- ],
- [
- -0.1589583307504654
- ],
- [
- -0.2510690987110138
- ],
- [
- -0.19860415160655975
- ],
- [
- -0.1472155898809433
- ],
- [
- -0.18444852530956268
- ],
- [
- -0.2806485891342163
- ],
- [
- -0.18793125450611115
- ],
- [
- -0.18326270580291748
- ],
- [
- -0.19256949424743652
- ],
- [
- -0.1483377069234848
- ],
- [
- -0.17540760338306427
- ],
- [
- -0.15189020335674286
- ],
- [
- -0.26437994837760925
- ],
- [
- -0.15442462265491486
- ],
- [
- -0.23165932297706604
- ],
- [
- -0.20758748054504395
- ],
- [
- -0.16096985340118408
- ],
- [
- -0.17397131025791168
- ],
- [
- -0.1841394454240799
- ],
- [
- -0.1738249808549881
- ],
- [
- -0.18996939063072205
- ],
- [
- -0.1807565540075302
- ],
- [
- -0.1667095273733139
- ],
- [
- -0.26068830490112305
- ],
- [
- -0.19834627211093903
- ],
- [
- -0.16692666709423065
- ],
- [
- -0.14595912396907806
- ],
- [
- -0.17825929820537567
- ],
- [
- -0.19342656433582306
- ],
- [
- -0.20118390023708344
- ],
- [
- -0.22219836711883545
- ],
- [
- -0.19526924192905426
- ],
- [
- -0.16521058976650238
- ],
- [
- -0.1662014126777649
- ],
- [
- -0.17750823497772217
- ],
- [
- -0.15328757464885712
- ],
- [
- -0.1639932543039322
- ],
- [
- -0.21797417104244232
- ],
- [
- -0.17379842698574066
- ],
- [
- -0.17616470158100128
- ],
- [
- -0.21967238187789917
- ],
- [
- -0.1897621899843216
- ],
- [
- -0.20835921168327332
- ],
- [
- -0.16407375037670135
- ],
- [
- -0.18935464322566986
- ],
- [
- -0.23566120862960815
- ],
- [
- -0.17528781294822693
- ],
- [
- -0.20077112317085266
- ],
- [
- -0.16685430705547333
- ],
- [
- -0.16016900539398193
- ],
- [
- -0.2504640221595764
- ],
- [
- -0.14925916492938995
- ],
- [
- -0.17839160561561584
- ],
- [
- -0.17908470332622528
- ],
- [
- -0.17176200449466705
- ],
- [
- -0.16726244986057281
- ],
- [
- -0.2058989256620407
- ],
- [
- -0.18805210292339325
- ],
- [
- -0.18631450831890106
- ],
- [
- -0.1812981516122818
- ],
- [
- -0.18295952677726746
- ],
- [
- -0.1470557451248169
- ],
- [
- -0.20279090106487274
- ],
- [
- -0.196679949760437
- ],
- [
- -0.2336379885673523
- ],
- [
- -0.16336439549922943
- ],
- [
- -0.15873487293720245
- ],
- [
- -0.17641638219356537
- ],
- [
- -0.22241157293319702
- ],
- [
- -0.1582973599433899
- ],
- [
- -0.23994730412960052
- ],
- [
- -0.22505223751068115
- ],
- [
- -0.18320785462856293
- ],
- [
- -0.15792714059352875
- ],
- [
- -0.29137638211250305
- ],
- [
- -0.18433921039104462
- ],
- [
- -0.18347850441932678
- ],
- [
- -0.15386167168617249
- ],
- [
- -0.20512989163398743
- ],
- [
- -0.17445743083953857
- ],
- [
- -0.1801995187997818
- ],
- [
- -0.17301364243030548
- ],
- [
- -0.18002738058567047
- ],
- [
- -0.16997955739498138
- ],
- [
- -0.18220065534114838
- ],
- [
- -0.19470949470996857
- ],
- [
- -0.17410418391227722
- ],
- [
- -0.21082746982574463
- ],
- [
- -0.18154235184192657
- ],
- [
- -0.1758839339017868
- ],
- [
- -0.16910278797149658
- ],
- [
- -0.18464532494544983
- ],
- [
- -0.23427267372608185
- ],
- [
- -0.15733662247657776
- ],
- [
- -0.17959114909172058
- ],
- [
- -0.19034461677074432
- ],
- [
- -0.22676165401935577
- ],
- [
- -0.181022047996521
- ],
- [
- -0.1668817549943924
- ],
- [
- -0.17591221630573273
- ],
- [
- -0.14866256713867188
- ],
- [
- -0.15059562027454376
- ],
- [
- -0.16487707197666168
- ],
- [
- -0.15306055545806885
- ],
- [
- -0.19385379552841187
- ],
- [
- -0.21018454432487488
- ],
- [
- -0.18824820220470428
- ],
- [
- -0.19175177812576294
- ],
- [
- -0.1871500015258789
- ],
- [
- -0.18205417692661285
- ],
- [
- -0.21757927536964417
- ],
- [
- -0.20660866796970367
- ],
- [
- -0.18517524003982544
- ],
- [
- -0.16736219823360443
- ],
- [
- -0.18270951509475708
- ],
- [
- -0.18459556996822357
- ],
- [
- -0.15655173361301422
- ],
- [
- -0.1839776337146759
- ],
- [
- -0.14421580731868744
- ],
- [
- -0.15523876249790192
- ],
- [
- -0.19135616719722748
- ],
- [
- -0.16434893012046814
- ],
- [
- -0.16837984323501587
- ],
- [
- -0.17121225595474243
- ],
- [
- -0.17004071176052094
- ],
- [
- -0.16819588840007782
- ],
- [
- -0.15324267745018005
- ],
- [
- -0.22132554650306702
- ],
- [
- -0.1529671549797058
- ],
- [
- -0.2196926474571228
- ],
- [
- -0.20112095773220062
- ],
- [
- -0.18035580217838287
- ],
- [
- -0.2223348319530487
- ],
- [
- -0.1966145783662796
- ],
- [
- -0.17575441300868988
- ],
- [
- -0.15885183215141296
- ],
- [
- -0.19681678712368011
- ],
- [
- -0.18381990492343903
- ],
- [
- -0.1853838562965393
- ],
- [
- -0.17603428661823273
- ],
- [
- -0.2307315468788147
- ],
- [
- -0.26523539423942566
- ],
- [
- -0.21853823959827423
- ],
- [
- -0.23579935729503632
- ],
- [
- -0.1925002634525299
- ],
- [
- -0.15563294291496277
- ],
- [
- -0.2432861626148224
- ],
- [
- -0.1889563798904419
- ],
- [
- -0.16129560768604279
- ],
- [
- -0.22907914221286774
- ],
- [
- -0.17883452773094177
- ],
- [
- -0.18274150788784027
- ],
- [
- -0.1905391365289688
- ],
- [
- -0.18944557011127472
- ],
- [
- -0.17718391120433807
- ],
- [
- -0.22449149191379547
- ],
- [
- -0.15173634886741638
- ],
- [
- -0.18502750992774963
- ],
- [
- -0.18156522512435913
- ],
- [
- -0.1550455540418625
- ],
- [
- -0.21641050279140472
- ],
- [
- -0.18402206897735596
- ],
- [
- -0.15967068076133728
- ],
- [
- -0.1857430338859558
- ],
- [
- -0.21137355268001556
- ],
- [
- -0.20513099431991577
- ],
- [
- -0.16250717639923096
- ],
- [
- -0.21546512842178345
- ],
- [
- -0.1697390079498291
- ],
- [
- -0.17480096220970154
- ],
- [
- -0.22121456265449524
- ],
- [
- -0.17031621932983398
- ],
- [
- -0.20220191776752472
- ],
- [
- -0.18759159743785858
- ],
- [
- -0.1765585094690323
- ],
- [
- -0.16026805341243744
- ],
- [
- -0.17486916482448578
- ],
- [
- -0.16195161640644073
- ],
- [
- -0.1431393027305603
- ],
- [
- -0.20473697781562805
- ],
- [
- -0.17828436195850372
- ],
- [
- -0.15795081853866577
- ],
- [
- -0.16837233304977417
- ],
- [
- -0.22043217718601227
- ],
- [
- -0.17764000594615936
- ],
- [
- -0.16156943142414093
- ],
- [
- -0.16034772992134094
- ],
- [
- -0.15081219375133514
- ],
- [
- -0.1990709751844406
- ],
- [
- -0.21912206709384918
- ],
- [
- -0.1962527185678482
- ],
- [
- -0.18995828926563263
- ],
- [
- -0.17731398344039917
- ],
- [
- -0.2481997013092041
- ],
- [
- -0.2272866815328598
- ],
- [
- -0.14826740324497223
- ],
- [
- -0.20075081288814545
- ],
- [
- -0.15744146704673767
- ],
- [
- -0.1621989905834198
- ],
- [
- -0.15793946385383606
- ],
- [
- -0.16875560581684113
- ],
- [
- -0.13808099925518036
- ],
- [
- -0.1623252034187317
- ],
- [
- -0.17968574166297913
- ],
- [
- -0.19446972012519836
- ],
- [
- -0.24602816998958588
- ],
- [
- -0.17993929982185364
- ],
- [
- -0.18997789919376373
- ],
- [
- -0.20867472887039185
- ],
- [
- -0.2658577561378479
- ],
- [
- -0.18800264596939087
- ],
- [
- -0.16816557943820953
- ],
- [
- -0.18368878960609436
- ],
- [
- -0.17978094518184662
- ],
- [
- -0.1814107745885849
- ],
- [
- -0.15550686419010162
- ],
- [
- -0.16250856220722198
- ],
- [
- -0.21450307965278625
- ],
- [
- -0.16707515716552734
- ],
- [
- -0.20437303185462952
- ],
- [
- -0.1526467651128769
- ],
- [
- -0.15785396099090576
- ],
- [
- -0.164737731218338
- ],
- [
- -0.22548067569732666
- ],
- [
- -0.15701237320899963
- ],
- [
- -0.16715876758098602
- ],
- [
- -0.19250597059726715
- ],
- [
- -0.13915030658245087
- ],
- [
- -0.13940826058387756
- ],
- [
- -0.17614200711250305
- ],
- [
- -0.16211147606372833
- ],
- [
- -0.17450806498527527
- ],
- [
- -0.21575121581554413
- ],
- [
- -0.21135596930980682
- ],
- [
- -0.221391499042511
- ],
- [
- -0.19858095049858093
- ],
- [
- -0.21205203235149384
- ],
- [
- -0.1684476137161255
- ],
- [
- -0.2520287036895752
- ],
- [
- -0.19030354917049408
- ],
- [
- -0.17905858159065247
- ],
- [
- -0.17154593765735626
- ],
- [
- -0.2017565369606018
- ],
- [
- -0.1648661494255066
- ],
- [
- -0.18700377643108368
- ],
- [
- -0.2086944431066513
- ],
- [
- -0.1883562058210373
- ],
- [
- -0.16313202679157257
- ],
- [
- -0.1507696956396103
- ],
- [
- -0.17325656116008759
- ],
- [
- -0.18775059282779694
- ],
- [
- -0.1995343714952469
- ]
- ],
- "output_high": [
- [
- 0.1554616540670395
- ],
- [
- 0.1975422203540802
- ],
- [
- 0.19815252721309662
- ],
- [
- 0.19275590777397156
- ],
- [
- 0.1632937341928482
- ],
- [
- 0.1923627406358719
- ],
- [
- 0.18891191482543945
- ],
- [
- 0.19505365192890167
- ],
- [
- 0.16614100337028503
- ],
- [
- 0.2026558220386505
- ],
- [
- 0.17544172704219818
- ],
- [
- 0.17875641584396362
- ],
- [
- 0.19346709549427032
- ],
- [
- 0.19736085832118988
- ],
- [
- 0.21658942103385925
- ],
- [
- 0.16777093708515167
- ],
- [
- 0.16759631037712097
- ],
- [
- 0.19211065769195557
- ],
- [
- 0.16350416839122772
- ],
- [
- 0.17982250452041626
- ],
- [
- 0.17943334579467773
- ],
- [
- 0.18009012937545776
- ],
- [
- 0.20071813464164734
- ],
- [
- 0.1820417046546936
- ],
- [
- 0.18197399377822876
- ],
- [
- 0.17596738040447235
- ],
- [
- 0.14973224699497223
- ],
- [
- 0.157967671751976
- ],
- [
- 0.1670437604188919
- ],
- [
- 0.19772693514823914
- ],
- [
- 0.15720735490322113
- ],
- [
- 0.1574394851922989
- ],
- [
- 0.1458834856748581
- ],
- [
- 0.16934432089328766
- ],
- [
- 0.21939755976200104
- ],
- [
- 0.1791817992925644
- ],
- [
- 0.17166835069656372
- ],
- [
- 0.15734130144119263
- ],
- [
- 0.2154453992843628
- ],
- [
- 0.16703885793685913
- ],
- [
- 0.14975644648075104
- ],
- [
- 0.15567708015441895
- ],
- [
- 0.21273085474967957
- ],
- [
- 0.17863717675209045
- ],
- [
- 0.1500164419412613
- ],
- [
- 0.19780881702899933
- ],
- [
- 0.14390213787555695
- ],
- [
- 0.16493703424930573
- ],
- [
- 0.16165776550769806
- ],
- [
- 0.16916118562221527
- ],
- [
- 0.16741515696048737
- ],
- [
- 0.19759589433670044
- ],
- [
- 0.14447800815105438
- ],
- [
- 0.19408459961414337
- ],
- [
- 0.15510299801826477
- ],
- [
- 0.15851148962974548
- ],
- [
- 0.1577356457710266
- ],
- [
- 0.16961176693439484
- ],
- [
- 0.1655804067850113
- ],
- [
- 0.16352957487106323
- ],
- [
- 0.15973614156246185
- ],
- [
- 0.1958252489566803
- ],
- [
- 0.15216363966464996
- ],
- [
- 0.16100147366523743
- ],
- [
- 0.1638059765100479
- ],
- [
- 0.19385847449302673
- ],
- [
- 0.1567348837852478
- ],
- [
- 0.1739172339439392
- ],
- [
- 0.17613054811954498
- ],
- [
- 0.16814537346363068
- ],
- [
- 0.15428847074508667
- ],
- [
- 0.18976397812366486
- ],
- [
- 0.18346834182739258
- ],
- [
- 0.18718120455741882
- ],
- [
- 0.17757417261600494
- ],
- [
- 0.1564321219921112
- ],
- [
- 0.19593022763729095
- ],
- [
- 0.16516827046871185
- ],
- [
- 0.1725962907075882
- ],
- [
- 0.18348577618598938
- ],
- [
- 0.15860189497470856
- ],
- [
- 0.2019111067056656
- ],
- [
- 0.19141781330108643
- ],
- [
- 0.1870553344488144
- ],
- [
- 0.19091860949993134
- ],
- [
- 0.1963810920715332
- ],
- [
- 0.1551758199930191
- ],
- [
- 0.19004997611045837
- ],
- [
- 0.17954422533512115
- ],
- [
- 0.17040644586086273
- ],
- [
- 0.20762114226818085
- ],
- [
- 0.17358563840389252
- ],
- [
- 0.19947870075702667
- ],
- [
- 0.20734532177448273
- ],
- [
- 0.19740080833435059
- ],
- [
- 0.18585246801376343
- ],
- [
- 0.17795231938362122
- ],
- [
- 0.1665991246700287
- ],
- [
- 0.18589343130588531
- ],
- [
- 0.17855334281921387
- ],
- [
- 0.176802858710289
- ],
- [
- 0.21271899342536926
- ],
- [
- 0.19119681417942047
- ],
- [
- 0.1980128139257431
- ],
- [
- 0.16658519208431244
- ],
- [
- 0.17710739374160767
- ],
- [
- 0.15256288647651672
- ],
- [
- 0.18983004987239838
- ],
- [
- 0.1538560837507248
- ],
- [
- 0.16041402518749237
- ],
- [
- 0.1940893530845642
- ],
- [
- 0.28210437297821045
- ],
- [
- 0.18090768158435822
- ],
- [
- 0.15481793880462646
- ],
- [
- 0.17062480747699738
- ],
- [
- 0.22132103145122528
- ],
- [
- 0.16138815879821777
- ],
- [
- 0.20396102964878082
- ],
- [
- 0.1852949559688568
- ],
- [
- 0.1882438212633133
- ],
- [
- 0.1543368250131607
- ],
- [
- 0.1559508889913559
- ],
- [
- 0.3038824200630188
- ],
- [
- 0.15609534084796906
- ],
- [
- 0.15606719255447388
- ],
- [
- 0.1690848469734192
- ],
- [
- 0.15160515904426575
- ],
- [
- 0.15777899324893951
- ],
- [
- 0.16711781919002533
- ],
- [
- 0.1764446198940277
- ],
- [
- 0.20234768092632294
- ],
- [
- 0.15752936899662018
- ],
- [
- 0.16651871800422668
- ],
- [
- 0.17491839826107025
- ],
- [
- 0.20015445351600647
- ],
- [
- 0.16318103671073914
- ],
- [
- 0.20413576066493988
- ],
- [
- 0.1840687096118927
- ],
- [
- 0.17463408410549164
- ],
- [
- 0.1678122878074646
- ],
- [
- 0.15287120640277863
- ],
- [
- 0.17828428745269775
- ],
- [
- 0.15503408014774323
- ],
- [
- 0.19394060969352722
- ],
- [
- 0.18013359606266022
- ],
- [
- 0.194406658411026
- ],
- [
- 0.17791183292865753
- ],
- [
- 0.15880170464515686
- ],
- [
- 0.1970207691192627
- ],
- [
- 0.19493091106414795
- ],
- [
- 0.2132979780435562
- ],
- [
- 0.13604971766471863
- ],
- [
- 0.14387249946594238
- ],
- [
- 0.15706458687782288
- ],
- [
- 0.1441241353750229
- ],
- [
- 0.1456950306892395
- ],
- [
- 0.16140998899936676
- ],
- [
- 0.14745505154132843
- ],
- [
- 0.14955733716487885
- ],
- [
- 0.13720279932022095
- ],
- [
- 0.14628441631793976
- ],
- [
- 0.15323592722415924
- ],
- [
- 0.1414981335401535
- ],
- [
- 0.14737191796302795
- ],
- [
- 0.15496139228343964
- ],
- [
- 0.13915173709392548
- ],
- [
- 0.1395258605480194
- ],
- [
- 0.15097515285015106
- ],
- [
- 0.14261914789676666
- ],
- [
- 0.1680321842432022
- ],
- [
- 0.15259958803653717
- ],
- [
- 0.1438864767551422
- ],
- [
- 0.1865168660879135
- ],
- [
- 0.1623374968767166
- ],
- [
- 0.14232207834720612
- ],
- [
- 0.14515051245689392
- ],
- [
- 0.1602032482624054
- ],
- [
- 0.1362183690071106
- ],
- [
- 0.16892684996128082
- ],
- [
- 0.18019527196884155
- ],
- [
- 0.14054836332798004
- ],
- [
- 0.16556498408317566
- ],
- [
- 0.1487024873495102
- ],
- [
- 0.1330948919057846
- ],
- [
- 0.17255175113677979
- ],
- [
- 0.1688777208328247
- ],
- [
- 0.13641972839832306
- ],
- [
- 0.1392057090997696
- ],
- [
- 0.13428297638893127
- ],
- [
- 0.17613103985786438
- ],
- [
- 0.1469261795282364
- ],
- [
- 0.16084416210651398
- ],
- [
- 0.16282273828983307
- ],
- [
- 0.1485363245010376
- ],
- [
- 0.15152333676815033
- ],
- [
- 0.1347143054008484
- ],
- [
- 0.13911904394626617
- ],
- [
- 0.14172464609146118
- ],
- [
- 0.16149453818798065
- ],
- [
- 0.16716161370277405
- ],
- [
- 0.1490926593542099
- ],
- [
- 0.1630668044090271
- ],
- [
- 0.1563192456960678
- ],
- [
- 0.30908846855163574
- ],
- [
- 0.15396101772785187
- ],
- [
- 0.13763822615146637
- ],
- [
- 0.1573229730129242
- ],
- [
- 0.1458754539489746
- ],
- [
- 0.2124687135219574
- ],
- [
- 0.13131213188171387
- ],
- [
- 0.14602069556713104
- ],
- [
- 0.1606072187423706
- ],
- [
- 0.15101312100887299
- ],
- [
- 0.14434655010700226
- ],
- [
- 0.13670538365840912
- ],
- [
- 0.12839893996715546
- ],
- [
- 0.15258818864822388
- ],
- [
- 0.18240438401699066
- ],
- [
- 0.14064869284629822
- ],
- [
- 0.15807132422924042
- ],
- [
- 0.15209217369556427
- ],
- [
- 0.1419975906610489
- ],
- [
- 0.13598614931106567
- ],
- [
- 0.14221300184726715
- ],
- [
- 0.15173684060573578
- ],
- [
- 0.14439542591571808
- ],
- [
- 0.15190725028514862
- ],
- [
- 0.1393192857503891
- ],
- [
- 0.183673694729805
- ],
- [
- 0.1676936000585556
- ],
- [
- 0.1360417902469635
- ],
- [
- 0.2881479561328888
- ],
- [
- 0.16910609602928162
- ],
- [
- 0.13352417945861816
- ],
- [
- 0.1296633929014206
- ],
- [
- 0.1437918245792389
- ],
- [
- 0.12645654380321503
- ],
- [
- 0.1495286077260971
- ],
- [
- 0.13880714774131775
- ],
- [
- 0.13524878025054932
- ],
- [
- 0.1409737914800644
- ],
- [
- 0.14624647796154022
- ],
- [
- 0.18651117384433746
- ],
- [
- 0.16946345567703247
- ],
- [
- 0.14949281513690948
- ],
- [
- 0.1477336585521698
- ],
- [
- 0.21915489435195923
- ],
- [
- 0.14885690808296204
- ],
- [
- 0.15019501745700836
- ],
- [
- 0.15175694227218628
- ],
- [
- 0.13289572298526764
- ],
- [
- 0.15563049912452698
- ],
- [
- 0.14055584371089935
- ],
- [
- 0.15766851603984833
- ],
- [
- 0.1481427401304245
- ],
- [
- 0.15644818544387817
- ],
- [
- 0.13985498249530792
- ],
- [
- 0.11431986093521118
- ],
- [
- 0.1623237431049347
- ],
- [
- 0.13968627154827118
- ],
- [
- 0.1521422564983368
- ],
- [
- 0.14525818824768066
- ],
- [
- 0.1610676646232605
- ],
- [
- 0.1531512439250946
- ],
- [
- 0.19808046519756317
- ],
- [
- 0.1537771224975586
- ],
- [
- 0.1539282649755478
- ],
- [
- 0.1464168131351471
- ],
- [
- 0.17963628470897675
- ],
- [
- 0.1485971361398697
- ],
- [
- 0.141460582613945
- ],
- [
- 0.19123481214046478
- ],
- [
- 0.1403573602437973
- ],
- [
- 0.13767030835151672
- ],
- [
- 0.16806331276893616
- ],
- [
- 0.1673450618982315
- ],
- [
- 0.1478317826986313
- ],
- [
- 0.16226759552955627
- ],
- [
- 0.1504182517528534
- ],
- [
- 0.15283240377902985
- ],
- [
- 0.14401422441005707
- ],
- [
- 0.1596337854862213
- ],
- [
- 0.21676887571811676
- ],
- [
- 0.13491491973400116
- ],
- [
- 0.18152843415737152
- ],
- [
- 0.13824713230133057
- ],
- [
- 0.15338853001594543
- ],
- [
- 0.17609448730945587
- ],
- [
- 0.1495874673128128
- ],
- [
- 0.15294019877910614
- ],
- [
- 0.14528177678585052
- ],
- [
- 0.17574435472488403
- ],
- [
- 0.169702410697937
- ],
- [
- 0.1472545713186264
- ],
- [
- 0.14803604781627655
- ],
- [
- 0.18454037606716156
- ],
- [
- 0.1599598228931427
- ],
- [
- 0.15051262080669403
- ],
- [
- 0.16271421313285828
- ],
- [
- 0.1690702736377716
- ],
- [
- 0.16742467880249023
- ],
- [
- 0.14732667803764343
- ],
- [
- 0.14613237977027893
- ],
- [
- 0.1706421673297882
- ],
- [
- 0.1492362916469574
- ],
- [
- 0.20478655397891998
- ],
- [
- 0.18628975749015808
- ],
- [
- 0.18614841997623444
- ],
- [
- 0.18360406160354614
- ],
- [
- 0.17302314937114716
- ],
- [
- 0.16951556503772736
- ],
- [
- 0.16514141857624054
- ],
- [
- 0.17182575166225433
- ],
- [
- 0.1680196225643158
- ],
- [
- 0.1738901138305664
- ],
- [
- 0.2046060860157013
- ],
- [
- 0.1991339921951294
- ],
- [
- 0.16841518878936768
- ],
- [
- 0.18121151626110077
- ],
- [
- 0.18472367525100708
- ],
- [
- 0.18740805983543396
- ],
- [
- 0.18905211985111237
- ],
- [
- 0.18663005530834198
- ],
- [
- 0.17923007905483246
- ],
- [
- 0.19697289168834686
- ],
- [
- 0.21080587804317474
- ],
- [
- 0.16534699499607086
- ],
- [
- 0.16663599014282227
- ],
- [
- 0.23738177120685577
- ],
- [
- 0.16369733214378357
- ],
- [
- 0.18115276098251343
- ],
- [
- 0.15539315342903137
- ],
- [
- 0.17165030539035797
- ],
- [
- 0.2192673236131668
- ],
- [
- 0.18592023849487305
- ],
- [
- 0.21107617020606995
- ],
- [
- 0.1565266251564026
- ],
- [
- 0.1613844931125641
- ],
- [
- 0.17557285726070404
- ],
- [
- 0.15444649755954742
- ],
- [
- 0.19357317686080933
- ],
- [
- 0.18057496845722198
- ],
- [
- 0.1677565723657608
- ],
- [
- 0.1801391988992691
- ],
- [
- 0.18744203448295593
- ],
- [
- 0.19864708185195923
- ],
- [
- 0.1822778582572937
- ],
- [
- 0.20251941680908203
- ],
- [
- 0.1965763121843338
- ],
- [
- 0.19803616404533386
- ],
- [
- 0.18668320775032043
- ],
- [
- 0.16774487495422363
- ],
- [
- 0.16835254430770874
- ],
- [
- 0.15865857899188995
- ],
- [
- 0.1844508945941925
- ],
- [
- 0.1867118924856186
- ],
- [
- 0.19959378242492676
- ],
- [
- 0.19621115922927856
- ],
- [
- 0.1811380833387375
- ],
- [
- 0.1599198579788208
- ],
- [
- 0.15470530092716217
- ],
- [
- 0.1663578748703003
- ],
- [
- 0.16461433470249176
- ],
- [
- 0.17861227691173553
- ],
- [
- 0.18070274591445923
- ],
- [
- 0.1875942200422287
- ],
- [
- 0.14198093116283417
- ],
- [
- 0.1712108999490738
- ],
- [
- 0.15546587109565735
- ],
- [
- 0.15635712444782257
- ],
- [
- 0.14400799572467804
- ],
- [
- 0.1720377504825592
- ],
- [
- 0.16787372529506683
- ],
- [
- 0.1397639662027359
- ],
- [
- 0.14904029667377472
- ],
- [
- 0.18165622651576996
- ],
- [
- 0.18291693925857544
- ],
- [
- 0.15101400017738342
- ],
- [
- 0.156324103474617
- ],
- [
- 0.1560845822095871
- ],
- [
- 0.19682712852954865
- ],
- [
- 0.15480953454971313
- ],
- [
- 0.159444659948349
- ],
- [
- 0.1494983732700348
- ],
- [
- 0.16678914427757263
- ],
- [
- 0.2120104432106018
- ],
- [
- 0.17350763082504272
- ],
- [
- 0.19693617522716522
- ],
- [
- 0.17883536219596863
- ],
- [
- 0.16634979844093323
- ],
- [
- 0.19762341678142548
- ],
- [
- 0.18416942656040192
- ],
- [
- 0.1836548149585724
- ],
- [
- 0.1721275895833969
- ],
- [
- 0.1731816977262497
- ],
- [
- 0.17978568375110626
- ],
- [
- 0.18174143135547638
- ],
- [
- 0.1812942922115326
- ],
- [
- 0.19271568953990936
- ],
- [
- 0.17789886891841888
- ],
- [
- 0.23321010172367096
- ],
- [
- 0.18859033286571503
- ],
- [
- 0.1677633672952652
- ],
- [
- 0.1897542029619217
- ],
- [
- 0.17996208369731903
- ],
- [
- 0.1961667537689209
- ],
- [
- 0.16102050244808197
- ],
- [
- 0.16764846444129944
- ],
- [
- 0.1939171403646469
- ],
- [
- 0.1899154931306839
- ],
- [
- 0.22233277559280396
- ],
- [
- 0.170207679271698
- ],
- [
- 0.19149336218833923
- ],
- [
- 0.17277684807777405
- ],
- [
- 0.15064997971057892
- ],
- [
- 0.21702760457992554
- ],
- [
- 0.2204771339893341
- ],
- [
- 0.18513739109039307
- ],
- [
- 0.18720750510692596
- ],
- [
- 0.18946747481822968
- ],
- [
- 0.17766903340816498
- ],
- [
- 0.16459965705871582
- ],
- [
- 0.18088693916797638
- ],
- [
- 0.1629784107208252
- ],
- [
- 0.21881739795207977
- ],
- [
- 0.18741026520729065
- ],
- [
- 0.17082162201404572
- ],
- [
- 0.1816582828760147
- ],
- [
- 0.20035892724990845
- ],
- [
- 0.26015526056289673
- ],
- [
- 0.24588420987129211
- ],
- [
- 0.18029873073101044
- ],
- [
- 0.18377017974853516
- ],
- [
- 0.17955715954303741
- ],
- [
- 0.18493786454200745
- ],
- [
- 0.17482219636440277
- ],
- [
- 0.13112790882587433
- ],
- [
- 0.15757209062576294
- ],
- [
- 0.19564299285411835
- ],
- [
- 0.31959375739097595
- ],
- [
- 0.15963591635227203
- ],
- [
- 0.15397915244102478
- ],
- [
- 0.1859492063522339
- ],
- [
- 0.24640625715255737
- ],
- [
- 0.19564633071422577
- ],
- [
- 0.17703938484191895
- ],
- [
- 0.22402234375476837
- ],
- [
- 0.1859654188156128
- ],
- [
- 0.20778042078018188
- ],
- [
- 0.14620646834373474
- ],
- [
- 0.2509823441505432
- ],
- [
- 0.2168605923652649
- ],
- [
- 0.18321332335472107
- ],
- [
- 0.15785761177539825
- ],
- [
- 0.17786289751529694
- ],
- [
- 0.17578189074993134
- ],
- [
- 0.20526383817195892
- ],
- [
- 0.2208370417356491
- ],
- [
- 0.15807807445526123
- ],
- [
- 0.1897348314523697
- ],
- [
- 0.15729054808616638
- ],
- [
- 0.17210641503334045
- ],
- [
- 0.22639533877372742
- ],
- [
- 0.14276844263076782
- ],
- [
- 0.21831779181957245
- ],
- [
- 0.17482596635818481
- ],
- [
- 0.1952821910381317
- ],
- [
- 0.17340689897537231
- ],
- [
- 0.16471333801746368
- ],
- [
- 0.1604461818933487
- ],
- [
- 0.17594686150550842
- ],
- [
- 0.18743063509464264
- ],
- [
- 0.1803428679704666
- ],
- [
- 0.1976979374885559
- ],
- [
- 0.14430448412895203
- ],
- [
- 0.17948080599308014
- ],
- [
- 0.21837371587753296
- ],
- [
- 0.15121953189373016
- ],
- [
- 0.18200941383838654
- ],
- [
- 0.16272152960300446
- ],
- [
- 0.20212800800800323
- ],
- [
- 0.15618817508220673
- ],
- [
- 0.14089886844158173
- ],
- [
- 0.1865425705909729
- ],
- [
- 0.16811621189117432
- ],
- [
- 0.1595086306333542
- ],
- [
- 0.2632863521575928
- ],
- [
- 0.18367178738117218
- ],
- [
- 0.17524053156375885
- ],
- [
- 0.2014491707086563
- ],
- [
- 0.17999206483364105
- ],
- [
- 0.21480777859687805
- ],
- [
- 0.15415014326572418
- ],
- [
- 0.14417366683483124
- ],
- [
- 0.32448211312294006
- ],
- [
- 0.18896345794200897
- ],
- [
- 0.18553605675697327
- ],
- [
- 0.1423873007297516
- ],
- [
- 0.2100171595811844
- ],
- [
- 0.20931345224380493
- ],
- [
- 0.1753457486629486
- ],
- [
- 0.17901964485645294
- ],
- [
- 0.17398734390735626
- ],
- [
- 0.17050780355930328
- ],
- [
- 0.16929727792739868
- ],
- [
- 0.20436882972717285
- ],
- [
- 0.263933926820755
- ],
- [
- 0.20110930502414703
- ],
- [
- 0.185881108045578
- ],
- [
- 0.16564024984836578
- ],
- [
- 0.17704130709171295
- ],
- [
- 0.22285127639770508
- ],
- [
- 0.1965426206588745
- ],
- [
- 0.2021714150905609
- ],
- [
- 0.1745164692401886
- ],
- [
- 0.17471306025981903
- ],
- [
- 0.18167324364185333
- ],
- [
- 0.17368561029434204
- ],
- [
- 0.1642691045999527
- ],
- [
- 0.1591336876153946
- ],
- [
- 0.16357024013996124
- ],
- [
- 0.1870107352733612
- ],
- [
- 0.20745885372161865
- ],
- [
- 0.18470188975334167
- ],
- [
- 0.15653596818447113
- ],
- [
- 0.1914929300546646
- ],
- [
- 0.28629305958747864
- ],
- [
- 0.15686090290546417
- ],
- [
- 0.2307235300540924
- ],
- [
- 0.18614745140075684
- ],
- [
- 0.1631689965724945
- ],
- [
- 0.15032212436199188
- ],
- [
- 0.1813979297876358
- ],
- [
- 0.17065730690956116
- ],
- [
- 0.2530304193496704
- ],
- [
- 0.2116733193397522
- ],
- [
- 0.16761009395122528
- ],
- [
- 0.17038004100322723
- ],
- [
- 0.15817269682884216
- ],
- [
- 0.2031041532754898
- ],
- [
- 0.19461460411548615
- ],
- [
- 0.17155270278453827
- ],
- [
- 0.18726946413516998
- ],
- [
- 0.18010307848453522
- ],
- [
- 0.2631581127643585
- ],
- [
- 0.1608726978302002
- ],
- [
- 0.1880207359790802
- ],
- [
- 0.18389475345611572
- ],
- [
- 0.15554018318653107
- ],
- [
- 0.1617802381515503
- ],
- [
- 0.1793060302734375
- ],
- [
- 0.19382402300834656
- ],
- [
- 0.22422181069850922
- ],
- [
- 0.2161247730255127
- ],
- [
- 0.2280011624097824
- ],
- [
- 0.16259975731372833
- ],
- [
- 0.16104616224765778
- ],
- [
- 0.20166929066181183
- ],
- [
- 0.17533238232135773
- ],
- [
- 0.18151994049549103
- ],
- [
- 0.20273099839687347
- ],
- [
- 0.18299363553524017
- ],
- [
- 0.1826666295528412
- ],
- [
- 0.19088716804981232
- ],
- [
- 0.19892987608909607
- ],
- [
- 0.23135410249233246
- ],
- [
- 0.2083427757024765
- ],
- [
- 0.1473187953233719
- ],
- [
- 0.18608255684375763
- ],
- [
- 0.16491012275218964
- ],
- [
- 0.16291645169258118
- ],
- [
- 0.20803509652614594
- ],
- [
- 0.13550621271133423
- ],
- [
- 0.19034366309642792
- ],
- [
- 0.18762913346290588
- ],
- [
- 0.2188471108675003
- ],
- [
- 0.2015460729598999
- ],
- [
- 0.16181008517742157
- ],
- [
- 0.17334502935409546
- ],
- [
- 0.18237265944480896
- ],
- [
- 0.2215699702501297
- ],
- [
- 0.15564121305942535
- ],
- [
- 0.15888278186321259
- ],
- [
- 0.2251988798379898
- ],
- [
- 0.18147599697113037
- ],
- [
- 0.16299863159656525
- ],
- [
- 0.15596555173397064
- ],
- [
- 0.17302566766738892
- ],
- [
- 0.18514741957187653
- ],
- [
- 0.1773276925086975
- ],
- [
- 0.16047747433185577
- ],
- [
- 0.22201301157474518
- ],
- [
- 0.22794052958488464
- ],
- [
- 0.20315130054950714
- ],
- [
- 0.21184229850769043
- ],
- [
- 0.2081483006477356
- ],
- [
- 0.15236589312553406
- ],
- [
- 0.17661930620670319
- ],
- [
- 0.17957478761672974
- ],
- [
- 0.18464355170726776
- ],
- [
- 0.17292018234729767
- ],
- [
- 0.15938124060630798
- ],
- [
- 0.24028165638446808
- ],
- [
- 0.17717088758945465
- ],
- [
- 0.24310056865215302
- ],
- [
- 0.18869176506996155
- ],
- [
- 0.23555755615234375
- ],
- [
- 0.18065829575061798
- ],
- [
- 0.19019396603107452
- ],
- [
- 0.18431033194065094
- ],
- [
- 0.17810948193073273
- ],
- [
- 0.25237539410591125
- ],
- [
- 0.20283369719982147
- ],
- [
- 0.176487997174263
- ],
- [
- 0.20932739973068237
- ],
- [
- 0.23728583753108978
- ],
- [
- 0.19103068113327026
- ],
- [
- 0.1589534878730774
- ],
- [
- 0.200917050242424
- ],
- [
- 0.1746799647808075
- ],
- [
- 0.15379831194877625
- ],
- [
- 0.14865314960479736
- ],
- [
- 0.17281094193458557
- ],
- [
- 0.1583787351846695
- ],
- [
- 0.16508759558200836
- ],
- [
- 0.17316575348377228
- ],
- [
- 0.2141069620847702
- ],
- [
- 0.1847236305475235
- ],
- [
- 0.1600286066532135
- ],
- [
- 0.17224131524562836
- ],
- [
- 0.1708705723285675
- ],
- [
- 0.15021927654743195
- ],
- [
- 0.1638488471508026
- ],
- [
- 0.17459745705127716
- ],
- [
- 0.19411323964595795
- ],
- [
- 0.17690987884998322
- ],
- [
- 0.17971327900886536
- ],
- [
- 0.1902340203523636
- ],
- [
- 0.13419662415981293
- ],
- [
- 0.14570192992687225
- ],
- [
- 0.16743507981300354
- ],
- [
- 0.18320968747138977
- ],
- [
- 0.207712784409523
- ],
- [
- 0.15082210302352905
- ],
- [
- 0.23150134086608887
- ],
- [
- 0.19294163584709167
- ],
- [
- 0.2020663619041443
- ],
- [
- 0.1748339831829071
- ],
- [
- 0.17260265350341797
- ],
- [
- 0.17266297340393066
- ],
- [
- 0.17316140234470367
- ],
- [
- 0.18796688318252563
- ],
- [
- 0.21125000715255737
- ],
- [
- 0.17411836981773376
- ],
- [
- 0.1550230085849762
- ],
- [
- 0.1892094612121582
- ],
- [
- 0.14458516240119934
- ],
- [
- 0.15676867961883545
- ],
- [
- 0.18402984738349915
- ],
- [
- 0.16845163702964783
- ],
- [
- 0.15209254622459412
- ],
- [
- 0.19919756054878235
- ],
- [
- 0.1853754073381424
- ],
- [
- 0.16981329023838043
- ],
- [
- 0.15205314755439758
- ],
- [
- 0.16672272980213165
- ],
- [
- 0.1944590061903
- ],
- [
- 0.22414074838161469
- ],
- [
- 0.1917303204536438
- ],
- [
- 0.17682026326656342
- ],
- [
- 0.17859582602977753
- ],
- [
- 0.14507444202899933
- ],
- [
- 0.17127221822738647
- ],
- [
- 0.16880133748054504
- ],
- [
- 0.20047502219676971
- ],
- [
- 0.17174957692623138
- ],
- [
- 0.16538022458553314
- ],
- [
- 0.1597547084093094
- ],
- [
- 0.30808115005493164
- ],
- [
- 0.17374390363693237
- ],
- [
- 0.19371674954891205
- ],
- [
- 0.14302295446395874
- ],
- [
- 0.19174699485301971
- ],
- [
- 0.20590609312057495
- ],
- [
- 0.18773354589939117
- ],
- [
- 0.18651261925697327
- ],
- [
- 0.192533940076828
- ],
- [
- 0.19083216786384583
- ],
- [
- 0.18758000433444977
- ],
- [
- 0.15763826668262482
- ],
- [
- 0.16400687396526337
- ],
- [
- 0.22037732601165771
- ],
- [
- 0.18826819956302643
- ],
- [
- 0.17064718902111053
- ],
- [
- 0.2302066683769226
- ],
- [
- 0.19226448237895966
- ],
- [
- 0.19342029094696045
- ],
- [
- 0.18559421598911285
- ],
- [
- 0.14278358221054077
- ],
- [
- 0.22323215007781982
- ],
- [
- 0.20030605792999268
- ],
- [
- 0.17617374658584595
- ],
- [
- 0.20237284898757935
- ],
- [
- 0.16867761313915253
- ],
- [
- 0.20253422856330872
- ],
- [
- 0.19009575247764587
- ],
- [
- 0.15949080884456635
- ],
- [
- 0.19496813416481018
- ],
- [
- 0.172251895070076
- ],
- [
- 0.16065362095832825
- ],
- [
- 0.25084617733955383
- ],
- [
- 0.19204986095428467
- ],
- [
- 0.16113270819187164
- ],
- [
- 0.17039814591407776
- ],
- [
- 0.19272539019584656
- ],
- [
- 0.20947133004665375
- ],
- [
- 0.17867735028266907
- ],
- [
- 0.1543457806110382
- ],
- [
- 0.1548968255519867
- ],
- [
- 0.19947972893714905
- ],
- [
- 0.19042429327964783
- ],
- [
- 0.19486860930919647
- ],
- [
- 0.20809267461299896
- ],
- [
- 0.17977221310138702
- ],
- [
- 0.16555112600326538
- ],
- [
- 0.14811724424362183
- ],
- [
- 0.18691261112689972
- ],
- [
- 0.18050095438957214
- ],
- [
- 0.17628492414951324
- ],
- [
- 0.1853061318397522
- ],
- [
- 0.26131996512413025
- ],
- [
- 0.1678118258714676
- ],
- [
- 0.1985688954591751
- ],
- [
- 0.19434182345867157
- ],
- [
- 0.16566860675811768
- ],
- [
- 0.19838790595531464
- ],
- [
- 0.23506557941436768
- ],
- [
- 0.13731402158737183
- ],
- [
- 0.16081351041793823
- ],
- [
- 0.18096938729286194
- ],
- [
- 0.18987666070461273
- ],
- [
- 0.17407621443271637
- ],
- [
- 0.16034770011901855
- ],
- [
- 0.24556864798069
- ],
- [
- 0.1538938581943512
- ],
- [
- 0.3308314383029938
- ],
- [
- 0.2268253117799759
- ],
- [
- 0.2912168502807617
- ],
- [
- 0.1589583307504654
- ],
- [
- 0.2510690987110138
- ],
- [
- 0.19860415160655975
- ],
- [
- 0.1472155898809433
- ],
- [
- 0.18444852530956268
- ],
- [
- 0.2806485891342163
- ],
- [
- 0.18793125450611115
- ],
- [
- 0.18326270580291748
- ],
- [
- 0.19256949424743652
- ],
- [
- 0.1483377069234848
- ],
- [
- 0.17540760338306427
- ],
- [
- 0.15189020335674286
- ],
- [
- 0.26437994837760925
- ],
- [
- 0.15442462265491486
- ],
- [
- 0.23165932297706604
- ],
- [
- 0.20758748054504395
- ],
- [
- 0.16096985340118408
- ],
- [
- 0.17397131025791168
- ],
- [
- 0.1841394454240799
- ],
- [
- 0.1738249808549881
- ],
- [
- 0.18996939063072205
- ],
- [
- 0.1807565540075302
- ],
- [
- 0.1667095273733139
- ],
- [
- 0.26068830490112305
- ],
- [
- 0.19834627211093903
- ],
- [
- 0.16692666709423065
- ],
- [
- 0.14595912396907806
- ],
- [
- 0.17825929820537567
- ],
- [
- 0.19342656433582306
- ],
- [
- 0.20118390023708344
- ],
- [
- 0.22219836711883545
- ],
- [
- 0.19526924192905426
- ],
- [
- 0.16521058976650238
- ],
- [
- 0.1662014126777649
- ],
- [
- 0.17750823497772217
- ],
- [
- 0.15328757464885712
- ],
- [
- 0.1639932543039322
- ],
- [
- 0.21797417104244232
- ],
- [
- 0.17379842698574066
- ],
- [
- 0.17616470158100128
- ],
- [
- 0.21967238187789917
- ],
- [
- 0.1897621899843216
- ],
- [
- 0.20835921168327332
- ],
- [
- 0.16407375037670135
- ],
- [
- 0.18935464322566986
- ],
- [
- 0.23566120862960815
- ],
- [
- 0.17528781294822693
- ],
- [
- 0.20077112317085266
- ],
- [
- 0.16685430705547333
- ],
- [
- 0.16016900539398193
- ],
- [
- 0.2504640221595764
- ],
- [
- 0.14925916492938995
- ],
- [
- 0.17839160561561584
- ],
- [
- 0.17908470332622528
- ],
- [
- 0.17176200449466705
- ],
- [
- 0.16726244986057281
- ],
- [
- 0.2058989256620407
- ],
- [
- 0.18805210292339325
- ],
- [
- 0.18631450831890106
- ],
- [
- 0.1812981516122818
- ],
- [
- 0.18295952677726746
- ],
- [
- 0.1470557451248169
- ],
- [
- 0.20279090106487274
- ],
- [
- 0.196679949760437
- ],
- [
- 0.2336379885673523
- ],
- [
- 0.16336439549922943
- ],
- [
- 0.15873487293720245
- ],
- [
- 0.17641638219356537
- ],
- [
- 0.22241157293319702
- ],
- [
- 0.1582973599433899
- ],
- [
- 0.23994730412960052
- ],
- [
- 0.22505223751068115
- ],
- [
- 0.18320785462856293
- ],
- [
- 0.15792714059352875
- ],
- [
- 0.29137638211250305
- ],
- [
- 0.18433921039104462
- ],
- [
- 0.18347850441932678
- ],
- [
- 0.15386167168617249
- ],
- [
- 0.20512989163398743
- ],
- [
- 0.17445743083953857
- ],
- [
- 0.1801995187997818
- ],
- [
- 0.17301364243030548
- ],
- [
- 0.18002738058567047
- ],
- [
- 0.16997955739498138
- ],
- [
- 0.18220065534114838
- ],
- [
- 0.19470949470996857
- ],
- [
- 0.17410418391227722
- ],
- [
- 0.21082746982574463
- ],
- [
- 0.18154235184192657
- ],
- [
- 0.1758839339017868
- ],
- [
- 0.16910278797149658
- ],
- [
- 0.18464532494544983
- ],
- [
- 0.23427267372608185
- ],
- [
- 0.15733662247657776
- ],
- [
- 0.17959114909172058
- ],
- [
- 0.19034461677074432
- ],
- [
- 0.22676165401935577
- ],
- [
- 0.181022047996521
- ],
- [
- 0.1668817549943924
- ],
- [
- 0.17591221630573273
- ],
- [
- 0.14866256713867188
- ],
- [
- 0.15059562027454376
- ],
- [
- 0.16487707197666168
- ],
- [
- 0.15306055545806885
- ],
- [
- 0.19385379552841187
- ],
- [
- 0.21018454432487488
- ],
- [
- 0.18824820220470428
- ],
- [
- 0.19175177812576294
- ],
- [
- 0.1871500015258789
- ],
- [
- 0.18205417692661285
- ],
- [
- 0.21757927536964417
- ],
- [
- 0.20660866796970367
- ],
- [
- 0.18517524003982544
- ],
- [
- 0.16736219823360443
- ],
- [
- 0.18270951509475708
- ],
- [
- 0.18459556996822357
- ],
- [
- 0.15655173361301422
- ],
- [
- 0.1839776337146759
- ],
- [
- 0.14421580731868744
- ],
- [
- 0.15523876249790192
- ],
- [
- 0.19135616719722748
- ],
- [
- 0.16434893012046814
- ],
- [
- 0.16837984323501587
- ],
- [
- 0.17121225595474243
- ],
- [
- 0.17004071176052094
- ],
- [
- 0.16819588840007782
- ],
- [
- 0.15324267745018005
- ],
- [
- 0.22132554650306702
- ],
- [
- 0.1529671549797058
- ],
- [
- 0.2196926474571228
- ],
- [
- 0.20112095773220062
- ],
- [
- 0.18035580217838287
- ],
- [
- 0.2223348319530487
- ],
- [
- 0.1966145783662796
- ],
- [
- 0.17575441300868988
- ],
- [
- 0.15885183215141296
- ],
- [
- 0.19681678712368011
- ],
- [
- 0.18381990492343903
- ],
- [
- 0.1853838562965393
- ],
- [
- 0.17603428661823273
- ],
- [
- 0.2307315468788147
- ],
- [
- 0.26523539423942566
- ],
- [
- 0.21853823959827423
- ],
- [
- 0.23579935729503632
- ],
- [
- 0.1925002634525299
- ],
- [
- 0.15563294291496277
- ],
- [
- 0.2432861626148224
- ],
- [
- 0.1889563798904419
- ],
- [
- 0.16129560768604279
- ],
- [
- 0.22907914221286774
- ],
- [
- 0.17883452773094177
- ],
- [
- 0.18274150788784027
- ],
- [
- 0.1905391365289688
- ],
- [
- 0.18944557011127472
- ],
- [
- 0.17718391120433807
- ],
- [
- 0.22449149191379547
- ],
- [
- 0.15173634886741638
- ],
- [
- 0.18502750992774963
- ],
- [
- 0.18156522512435913
- ],
- [
- 0.1550455540418625
- ],
- [
- 0.21641050279140472
- ],
- [
- 0.18402206897735596
- ],
- [
- 0.15967068076133728
- ],
- [
- 0.1857430338859558
- ],
- [
- 0.21137355268001556
- ],
- [
- 0.20513099431991577
- ],
- [
- 0.16250717639923096
- ],
- [
- 0.21546512842178345
- ],
- [
- 0.1697390079498291
- ],
- [
- 0.17480096220970154
- ],
- [
- 0.22121456265449524
- ],
- [
- 0.17031621932983398
- ],
- [
- 0.20220191776752472
- ],
- [
- 0.18759159743785858
- ],
- [
- 0.1765585094690323
- ],
- [
- 0.16026805341243744
- ],
- [
- 0.17486916482448578
- ],
- [
- 0.16195161640644073
- ],
- [
- 0.1431393027305603
- ],
- [
- 0.20473697781562805
- ],
- [
- 0.17828436195850372
- ],
- [
- 0.15795081853866577
- ],
- [
- 0.16837233304977417
- ],
- [
- 0.22043217718601227
- ],
- [
- 0.17764000594615936
- ],
- [
- 0.16156943142414093
- ],
- [
- 0.16034772992134094
- ],
- [
- 0.15081219375133514
- ],
- [
- 0.1990709751844406
- ],
- [
- 0.21912206709384918
- ],
- [
- 0.1962527185678482
- ],
- [
- 0.18995828926563263
- ],
- [
- 0.17731398344039917
- ],
- [
- 0.2481997013092041
- ],
- [
- 0.2272866815328598
- ],
- [
- 0.14826740324497223
- ],
- [
- 0.20075081288814545
- ],
- [
- 0.15744146704673767
- ],
- [
- 0.1621989905834198
- ],
- [
- 0.15793946385383606
- ],
- [
- 0.16875560581684113
- ],
- [
- 0.13808099925518036
- ],
- [
- 0.1623252034187317
- ],
- [
- 0.17968574166297913
- ],
- [
- 0.19446972012519836
- ],
- [
- 0.24602816998958588
- ],
- [
- 0.17993929982185364
- ],
- [
- 0.18997789919376373
- ],
- [
- 0.20867472887039185
- ],
- [
- 0.2658577561378479
- ],
- [
- 0.18800264596939087
- ],
- [
- 0.16816557943820953
- ],
- [
- 0.18368878960609436
- ],
- [
- 0.17978094518184662
- ],
- [
- 0.1814107745885849
- ],
- [
- 0.15550686419010162
- ],
- [
- 0.16250856220722198
- ],
- [
- 0.21450307965278625
- ],
- [
- 0.16707515716552734
- ],
- [
- 0.20437303185462952
- ],
- [
- 0.1526467651128769
- ],
- [
- 0.15785396099090576
- ],
- [
- 0.164737731218338
- ],
- [
- 0.22548067569732666
- ],
- [
- 0.15701237320899963
- ],
- [
- 0.16715876758098602
- ],
- [
- 0.19250597059726715
- ],
- [
- 0.13915030658245087
- ],
- [
- 0.13940826058387756
- ],
- [
- 0.17614200711250305
- ],
- [
- 0.16211147606372833
- ],
- [
- 0.17450806498527527
- ],
- [
- 0.21575121581554413
- ],
- [
- 0.21135596930980682
- ],
- [
- 0.221391499042511
- ],
- [
- 0.19858095049858093
- ],
- [
- 0.21205203235149384
- ],
- [
- 0.1684476137161255
- ],
- [
- 0.2520287036895752
- ],
- [
- 0.19030354917049408
- ],
- [
- 0.17905858159065247
- ],
- [
- 0.17154593765735626
- ],
- [
- 0.2017565369606018
- ],
- [
- 0.1648661494255066
- ],
- [
- 0.18700377643108368
- ],
- [
- 0.2086944431066513
- ],
- [
- 0.1883562058210373
- ],
- [
- 0.16313202679157257
- ],
- [
- 0.1507696956396103
- ],
- [
- 0.17325656116008759
- ],
- [
- 0.18775059282779694
- ],
- [
- 0.1995343714952469
- ]
- ]
- },
- "/GlobalAveragePool/fq_output_0": {
- "input_low": 0.0,
- "input_high": 3.270127058029175,
- "output_low": 0.0,
- "output_high": 3.270127058029175
- },
- "/features/features.18/features.18.2/Clip/fq_output_0": {
- "input_low": 0.0,
- "input_high": 6.0,
- "output_low": 0.0,
- "output_high": 6.0
- },
- "/features/features.18/features.18.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.9333563446998596
- ]
- ]
- ],
- [
- [
- [
- -0.8634206056594849
- ]
- ]
- ],
- [
- [
- [
- -1.3679049015045166
- ]
- ]
- ],
- [
- [
- [
- -0.921192467212677
- ]
- ]
- ],
- [
- [
- [
- -1.074693202972412
- ]
- ]
- ],
- [
- [
- [
- -0.9710022807121277
- ]
- ]
- ],
- [
- [
- [
- -0.937746524810791
- ]
- ]
- ],
- [
- [
- [
- -0.8183114528656006
- ]
- ]
- ],
- [
- [
- [
- -0.9902278184890747
- ]
- ]
- ],
- [
- [
- [
- -1.0752556324005127
- ]
- ]
- ],
- [
- [
- [
- -1.2409653663635254
- ]
- ]
- ],
- [
- [
- [
- -1.1727107763290405
- ]
- ]
- ],
- [
- [
- [
- -1.094907283782959
- ]
- ]
- ],
- [
- [
- [
- -1.0488450527191162
- ]
- ]
- ],
- [
- [
- [
- -0.9464437961578369
- ]
- ]
- ],
- [
- [
- [
- -0.8778498768806458
- ]
- ]
- ],
- [
- [
- [
- -0.9288340210914612
- ]
- ]
- ],
- [
- [
- [
- -1.169562578201294
- ]
- ]
- ],
- [
- [
- [
- -1.0479663610458374
- ]
- ]
- ],
- [
- [
- [
- -1.0154087543487549
- ]
- ]
- ],
- [
- [
- [
- -1.0552308559417725
- ]
- ]
- ],
- [
- [
- [
- -1.0735704898834229
- ]
- ]
- ],
- [
- [
- [
- -1.2206473350524902
- ]
- ]
- ],
- [
- [
- [
- -0.8820775747299194
- ]
- ]
- ],
- [
- [
- [
- -0.985245406627655
- ]
- ]
- ],
- [
- [
- [
- -0.9965498447418213
- ]
- ]
- ],
- [
- [
- [
- -1.097084879875183
- ]
- ]
- ],
- [
- [
- [
- -0.9789084196090698
- ]
- ]
- ],
- [
- [
- [
- -0.9565417170524597
- ]
- ]
- ],
- [
- [
- [
- -0.9204089641571045
- ]
- ]
- ],
- [
- [
- [
- -1.1081256866455078
- ]
- ]
- ],
- [
- [
- [
- -0.9363775849342346
- ]
- ]
- ],
- [
- [
- [
- -1.1928625106811523
- ]
- ]
- ],
- [
- [
- [
- -0.8435102701187134
- ]
- ]
- ],
- [
- [
- [
- -1.0255998373031616
- ]
- ]
- ],
- [
- [
- [
- -0.9146135449409485
- ]
- ]
- ],
- [
- [
- [
- -1.0180649757385254
- ]
- ]
- ],
- [
- [
- [
- -1.0512093305587769
- ]
- ]
- ],
- [
- [
- [
- -1.1696480512619019
- ]
- ]
- ],
- [
- [
- [
- -1.1852375268936157
- ]
- ]
- ],
- [
- [
- [
- -1.0058954954147339
- ]
- ]
- ],
- [
- [
- [
- -1.1105128526687622
- ]
- ]
- ],
- [
- [
- [
- -0.9131753444671631
- ]
- ]
- ],
- [
- [
- [
- -0.9425309896469116
- ]
- ]
- ],
- [
- [
- [
- -0.9901024103164673
- ]
- ]
- ],
- [
- [
- [
- -1.2012548446655273
- ]
- ]
- ],
- [
- [
- [
- -1.1605666875839233
- ]
- ]
- ],
- [
- [
- [
- -1.139669418334961
- ]
- ]
- ],
- [
- [
- [
- -1.0456866025924683
- ]
- ]
- ],
- [
- [
- [
- -1.1513564586639404
- ]
- ]
- ],
- [
- [
- [
- -1.3330177068710327
- ]
- ]
- ],
- [
- [
- [
- -0.9522570371627808
- ]
- ]
- ],
- [
- [
- [
- -0.9786536693572998
- ]
- ]
- ],
- [
- [
- [
- -1.0071555376052856
- ]
- ]
- ],
- [
- [
- [
- -0.9622791409492493
- ]
- ]
- ],
- [
- [
- [
- -0.9655205607414246
- ]
- ]
- ],
- [
- [
- [
- -1.1577054262161255
- ]
- ]
- ],
- [
- [
- [
- -0.9871496558189392
- ]
- ]
- ],
- [
- [
- [
- -0.916568398475647
- ]
- ]
- ],
- [
- [
- [
- -1.080419659614563
- ]
- ]
- ],
- [
- [
- [
- -1.240788221359253
- ]
- ]
- ],
- [
- [
- [
- -1.007234811782837
- ]
- ]
- ],
- [
- [
- [
- -1.2301338911056519
- ]
- ]
- ],
- [
- [
- [
- -1.0749702453613281
- ]
- ]
- ],
- [
- [
- [
- -0.8941547274589539
- ]
- ]
- ],
- [
- [
- [
- -1.3026576042175293
- ]
- ]
- ],
- [
- [
- [
- -0.9793345928192139
- ]
- ]
- ],
- [
- [
- [
- -1.553097128868103
- ]
- ]
- ],
- [
- [
- [
- -0.9606373906135559
- ]
- ]
- ],
- [
- [
- [
- -0.9629589319229126
- ]
- ]
- ],
- [
- [
- [
- -1.0442421436309814
- ]
- ]
- ],
- [
- [
- [
- -0.9142823219299316
- ]
- ]
- ],
- [
- [
- [
- -0.9564029574394226
- ]
- ]
- ],
- [
- [
- [
- -0.9296230673789978
- ]
- ]
- ],
- [
- [
- [
- -1.0089994668960571
- ]
- ]
- ],
- [
- [
- [
- -1.0354018211364746
- ]
- ]
- ],
- [
- [
- [
- -1.2310198545455933
- ]
- ]
- ],
- [
- [
- [
- -1.090272068977356
- ]
- ]
- ],
- [
- [
- [
- -1.07002592086792
- ]
- ]
- ],
- [
- [
- [
- -1.1138919591903687
- ]
- ]
- ],
- [
- [
- [
- -1.084550142288208
- ]
- ]
- ],
- [
- [
- [
- -1.1057924032211304
- ]
- ]
- ],
- [
- [
- [
- -1.2235233783721924
- ]
- ]
- ],
- [
- [
- [
- -1.0582817792892456
- ]
- ]
- ],
- [
- [
- [
- -0.9743874669075012
- ]
- ]
- ],
- [
- [
- [
- -0.9303461909294128
- ]
- ]
- ],
- [
- [
- [
- -1.0827430486679077
- ]
- ]
- ],
- [
- [
- [
- -1.0619254112243652
- ]
- ]
- ],
- [
- [
- [
- -0.8887662887573242
- ]
- ]
- ],
- [
- [
- [
- -1.075006365776062
- ]
- ]
- ],
- [
- [
- [
- -1.2990859746932983
- ]
- ]
- ],
- [
- [
- [
- -1.1231625080108643
- ]
- ]
- ],
- [
- [
- [
- -0.9791327714920044
- ]
- ]
- ],
- [
- [
- [
- -0.9313610196113586
- ]
- ]
- ],
- [
- [
- [
- -1.0811262130737305
- ]
- ]
- ],
- [
- [
- [
- -0.9537045359611511
- ]
- ]
- ],
- [
- [
- [
- -1.1036652326583862
- ]
- ]
- ],
- [
- [
- [
- -1.035569429397583
- ]
- ]
- ],
- [
- [
- [
- -1.209285020828247
- ]
- ]
- ],
- [
- [
- [
- -0.9597774744033813
- ]
- ]
- ],
- [
- [
- [
- -0.989969789981842
- ]
- ]
- ],
- [
- [
- [
- -1.1306732892990112
- ]
- ]
- ],
- [
- [
- [
- -0.9206469655036926
- ]
- ]
- ],
- [
- [
- [
- -1.0266563892364502
- ]
- ]
- ],
- [
- [
- [
- -1.1178147792816162
- ]
- ]
- ],
- [
- [
- [
- -1.266143798828125
- ]
- ]
- ],
- [
- [
- [
- -1.1960279941558838
- ]
- ]
- ],
- [
- [
- [
- -0.9617884755134583
- ]
- ]
- ],
- [
- [
- [
- -0.9933983087539673
- ]
- ]
- ],
- [
- [
- [
- -1.0695656538009644
- ]
- ]
- ],
- [
- [
- [
- -1.1198887825012207
- ]
- ]
- ],
- [
- [
- [
- -1.3172880411148071
- ]
- ]
- ],
- [
- [
- [
- -1.2068411111831665
- ]
- ]
- ],
- [
- [
- [
- -0.9493498206138611
- ]
- ]
- ],
- [
- [
- [
- -1.1716622114181519
- ]
- ]
- ],
- [
- [
- [
- -1.0408910512924194
- ]
- ]
- ],
- [
- [
- [
- -1.0437089204788208
- ]
- ]
- ],
- [
- [
- [
- -1.3508024215698242
- ]
- ]
- ],
- [
- [
- [
- -0.9652036428451538
- ]
- ]
- ],
- [
- [
- [
- -1.221362829208374
- ]
- ]
- ],
- [
- [
- [
- -0.9645214676856995
- ]
- ]
- ],
- [
- [
- [
- -1.1308947801589966
- ]
- ]
- ],
- [
- [
- [
- -1.1852948665618896
- ]
- ]
- ],
- [
- [
- [
- -1.1971423625946045
- ]
- ]
- ],
- [
- [
- [
- -1.118455410003662
- ]
- ]
- ],
- [
- [
- [
- -1.0853466987609863
- ]
- ]
- ],
- [
- [
- [
- -1.040671944618225
- ]
- ]
- ],
- [
- [
- [
- -0.9294936656951904
- ]
- ]
- ],
- [
- [
- [
- -0.9489459991455078
- ]
- ]
- ],
- [
- [
- [
- -1.0066914558410645
- ]
- ]
- ],
- [
- [
- [
- -1.1474987268447876
- ]
- ]
- ],
- [
- [
- [
- -0.9631145596504211
- ]
- ]
- ],
- [
- [
- [
- -0.9549851417541504
- ]
- ]
- ],
- [
- [
- [
- -0.9759792685508728
- ]
- ]
- ],
- [
- [
- [
- -0.8484014272689819
- ]
- ]
- ],
- [
- [
- [
- -1.2572873830795288
- ]
- ]
- ],
- [
- [
- [
- -1.101784348487854
- ]
- ]
- ],
- [
- [
- [
- -0.946007251739502
- ]
- ]
- ],
- [
- [
- [
- -1.023027777671814
- ]
- ]
- ],
- [
- [
- [
- -0.985552191734314
- ]
- ]
- ],
- [
- [
- [
- -1.0553869009017944
- ]
- ]
- ],
- [
- [
- [
- -1.2880066633224487
- ]
- ]
- ],
- [
- [
- [
- -0.9363034963607788
- ]
- ]
- ],
- [
- [
- [
- -0.8398956656455994
- ]
- ]
- ],
- [
- [
- [
- -1.0739140510559082
- ]
- ]
- ],
- [
- [
- [
- -1.0675075054168701
- ]
- ]
- ],
- [
- [
- [
- -0.9242190718650818
- ]
- ]
- ],
- [
- [
- [
- -1.1382657289505005
- ]
- ]
- ],
- [
- [
- [
- -1.0403072834014893
- ]
- ]
- ],
- [
- [
- [
- -1.1370315551757812
- ]
- ]
- ],
- [
- [
- [
- -0.9231918454170227
- ]
- ]
- ],
- [
- [
- [
- -1.1595697402954102
- ]
- ]
- ],
- [
- [
- [
- -1.2384108304977417
- ]
- ]
- ],
- [
- [
- [
- -1.1984539031982422
- ]
- ]
- ],
- [
- [
- [
- -0.9855936765670776
- ]
- ]
- ],
- [
- [
- [
- -0.8974236845970154
- ]
- ]
- ],
- [
- [
- [
- -0.9669147729873657
- ]
- ]
- ],
- [
- [
- [
- -0.9588724374771118
- ]
- ]
- ],
- [
- [
- [
- -1.0779979228973389
- ]
- ]
- ],
- [
- [
- [
- -1.5036675930023193
- ]
- ]
- ],
- [
- [
- [
- -1.085407018661499
- ]
- ]
- ],
- [
- [
- [
- -0.9511837959289551
- ]
- ]
- ],
- [
- [
- [
- -1.1415632963180542
- ]
- ]
- ],
- [
- [
- [
- -0.995284914970398
- ]
- ]
- ],
- [
- [
- [
- -1.0743579864501953
- ]
- ]
- ],
- [
- [
- [
- -1.1048157215118408
- ]
- ]
- ],
- [
- [
- [
- -0.8877156972885132
- ]
- ]
- ],
- [
- [
- [
- -1.061960220336914
- ]
- ]
- ],
- [
- [
- [
- -0.8511340618133545
- ]
- ]
- ],
- [
- [
- [
- -0.9933391213417053
- ]
- ]
- ],
- [
- [
- [
- -1.0546026229858398
- ]
- ]
- ],
- [
- [
- [
- -1.1471015214920044
- ]
- ]
- ],
- [
- [
- [
- -1.0036520957946777
- ]
- ]
- ],
- [
- [
- [
- -1.0422816276550293
- ]
- ]
- ],
- [
- [
- [
- -0.9623719453811646
- ]
- ]
- ],
- [
- [
- [
- -1.0570905208587646
- ]
- ]
- ],
- [
- [
- [
- -0.9814915657043457
- ]
- ]
- ],
- [
- [
- [
- -1.0998843908309937
- ]
- ]
- ],
- [
- [
- [
- -1.0130168199539185
- ]
- ]
- ],
- [
- [
- [
- -1.1490646600723267
- ]
- ]
- ],
- [
- [
- [
- -1.2486684322357178
- ]
- ]
- ],
- [
- [
- [
- -1.28632390499115
- ]
- ]
- ],
- [
- [
- [
- -0.9732431173324585
- ]
- ]
- ],
- [
- [
- [
- -1.090385913848877
- ]
- ]
- ],
- [
- [
- [
- -1.0271539688110352
- ]
- ]
- ],
- [
- [
- [
- -1.175118088722229
- ]
- ]
- ],
- [
- [
- [
- -1.0271024703979492
- ]
- ]
- ],
- [
- [
- [
- -1.0429068803787231
- ]
- ]
- ],
- [
- [
- [
- -1.3355507850646973
- ]
- ]
- ],
- [
- [
- [
- -1.0986449718475342
- ]
- ]
- ],
- [
- [
- [
- -0.9025618433952332
- ]
- ]
- ],
- [
- [
- [
- -0.9742262363433838
- ]
- ]
- ],
- [
- [
- [
- -1.079102873802185
- ]
- ]
- ],
- [
- [
- [
- -1.0656567811965942
- ]
- ]
- ],
- [
- [
- [
- -0.8870715498924255
- ]
- ]
- ],
- [
- [
- [
- -1.180302619934082
- ]
- ]
- ],
- [
- [
- [
- -1.0591682195663452
- ]
- ]
- ],
- [
- [
- [
- -1.3211504220962524
- ]
- ]
- ],
- [
- [
- [
- -1.2522222995758057
- ]
- ]
- ],
- [
- [
- [
- -0.9193216562271118
- ]
- ]
- ],
- [
- [
- [
- -0.9008913636207581
- ]
- ]
- ],
- [
- [
- [
- -1.2300808429718018
- ]
- ]
- ],
- [
- [
- [
- -1.063359260559082
- ]
- ]
- ],
- [
- [
- [
- -1.6895217895507812
- ]
- ]
- ],
- [
- [
- [
- -0.8930205702781677
- ]
- ]
- ],
- [
- [
- [
- -0.9828954935073853
- ]
- ]
- ],
- [
- [
- [
- -0.9596538543701172
- ]
- ]
- ],
- [
- [
- [
- -1.2376537322998047
- ]
- ]
- ],
- [
- [
- [
- -1.0304819345474243
- ]
- ]
- ],
- [
- [
- [
- -1.133754014968872
- ]
- ]
- ],
- [
- [
- [
- -1.1909630298614502
- ]
- ]
- ],
- [
- [
- [
- -1.1091370582580566
- ]
- ]
- ],
- [
- [
- [
- -1.1710139513015747
- ]
- ]
- ],
- [
- [
- [
- -1.2166528701782227
- ]
- ]
- ],
- [
- [
- [
- -1.1042399406433105
- ]
- ]
- ],
- [
- [
- [
- -0.9472065567970276
- ]
- ]
- ],
- [
- [
- [
- -0.9535732269287109
- ]
- ]
- ],
- [
- [
- [
- -1.4094656705856323
- ]
- ]
- ],
- [
- [
- [
- -0.9438491463661194
- ]
- ]
- ],
- [
- [
- [
- -0.9314394593238831
- ]
- ]
- ],
- [
- [
- [
- -1.2167338132858276
- ]
- ]
- ],
- [
- [
- [
- -1.084581971168518
- ]
- ]
- ],
- [
- [
- [
- -0.9906135201454163
- ]
- ]
- ],
- [
- [
- [
- -1.109767198562622
- ]
- ]
- ],
- [
- [
- [
- -1.1694353818893433
- ]
- ]
- ],
- [
- [
- [
- -0.9967679977416992
- ]
- ]
- ],
- [
- [
- [
- -0.9304764866828918
- ]
- ]
- ],
- [
- [
- [
- -1.2569602727890015
- ]
- ]
- ],
- [
- [
- [
- -1.4095278978347778
- ]
- ]
- ],
- [
- [
- [
- -1.1177442073822021
- ]
- ]
- ],
- [
- [
- [
- -1.1069436073303223
- ]
- ]
- ],
- [
- [
- [
- -1.4498186111450195
- ]
- ]
- ],
- [
- [
- [
- -1.1434459686279297
- ]
- ]
- ],
- [
- [
- [
- -1.0918574333190918
- ]
- ]
- ],
- [
- [
- [
- -1.0191292762756348
- ]
- ]
- ],
- [
- [
- [
- -1.0982662439346313
- ]
- ]
- ],
- [
- [
- [
- -1.1418126821517944
- ]
- ]
- ],
- [
- [
- [
- -0.9569193124771118
- ]
- ]
- ],
- [
- [
- [
- -0.9890464544296265
- ]
- ]
- ],
- [
- [
- [
- -0.9381627440452576
- ]
- ]
- ],
- [
- [
- [
- -1.0574634075164795
- ]
- ]
- ],
- [
- [
- [
- -1.0875447988510132
- ]
- ]
- ],
- [
- [
- [
- -1.070379376411438
- ]
- ]
- ],
- [
- [
- [
- -0.9775957465171814
- ]
- ]
- ],
- [
- [
- [
- -1.0251274108886719
- ]
- ]
- ],
- [
- [
- [
- -1.1181633472442627
- ]
- ]
- ],
- [
- [
- [
- -1.0554866790771484
- ]
- ]
- ],
- [
- [
- [
- -0.8782362341880798
- ]
- ]
- ],
- [
- [
- [
- -1.081396222114563
- ]
- ]
- ],
- [
- [
- [
- -0.999630868434906
- ]
- ]
- ],
- [
- [
- [
- -1.0213637351989746
- ]
- ]
- ],
- [
- [
- [
- -1.0546178817749023
- ]
- ]
- ],
- [
- [
- [
- -0.9052988886833191
- ]
- ]
- ],
- [
- [
- [
- -1.1843880414962769
- ]
- ]
- ],
- [
- [
- [
- -1.0908010005950928
- ]
- ]
- ],
- [
- [
- [
- -0.8818742036819458
- ]
- ]
- ],
- [
- [
- [
- -0.9863035678863525
- ]
- ]
- ],
- [
- [
- [
- -1.0003252029418945
- ]
- ]
- ],
- [
- [
- [
- -1.356971025466919
- ]
- ]
- ],
- [
- [
- [
- -0.9092697501182556
- ]
- ]
- ],
- [
- [
- [
- -0.974674642086029
- ]
- ]
- ],
- [
- [
- [
- -1.1732672452926636
- ]
- ]
- ],
- [
- [
- [
- -1.048018455505371
- ]
- ]
- ],
- [
- [
- [
- -1.0168042182922363
- ]
- ]
- ],
- [
- [
- [
- -1.164398431777954
- ]
- ]
- ],
- [
- [
- [
- -1.1958274841308594
- ]
- ]
- ],
- [
- [
- [
- -1.0630402565002441
- ]
- ]
- ],
- [
- [
- [
- -0.9315245151519775
- ]
- ]
- ],
- [
- [
- [
- -0.9949636459350586
- ]
- ]
- ],
- [
- [
- [
- -1.2398091554641724
- ]
- ]
- ],
- [
- [
- [
- -1.1028319597244263
- ]
- ]
- ],
- [
- [
- [
- -1.0009875297546387
- ]
- ]
- ],
- [
- [
- [
- -0.8744645714759827
- ]
- ]
- ],
- [
- [
- [
- -1.1580833196640015
- ]
- ]
- ],
- [
- [
- [
- -0.8973917365074158
- ]
- ]
- ],
- [
- [
- [
- -1.0696721076965332
- ]
- ]
- ],
- [
- [
- [
- -0.8751872181892395
- ]
- ]
- ],
- [
- [
- [
- -1.0858561992645264
- ]
- ]
- ],
- [
- [
- [
- -0.956839382648468
- ]
- ]
- ],
- [
- [
- [
- -1.0391230583190918
- ]
- ]
- ],
- [
- [
- [
- -1.2111361026763916
- ]
- ]
- ],
- [
- [
- [
- -0.9947336316108704
- ]
- ]
- ],
- [
- [
- [
- -0.9011788368225098
- ]
- ]
- ],
- [
- [
- [
- -1.0902773141860962
- ]
- ]
- ],
- [
- [
- [
- -1.2022267580032349
- ]
- ]
- ],
- [
- [
- [
- -1.0447752475738525
- ]
- ]
- ],
- [
- [
- [
- -0.9791738986968994
- ]
- ]
- ],
- [
- [
- [
- -0.975117027759552
- ]
- ]
- ],
- [
- [
- [
- -1.0790438652038574
- ]
- ]
- ],
- [
- [
- [
- -1.0845134258270264
- ]
- ]
- ],
- [
- [
- [
- -0.9572739601135254
- ]
- ]
- ],
- [
- [
- [
- -1.0808404684066772
- ]
- ]
- ],
- [
- [
- [
- -1.039548397064209
- ]
- ]
- ],
- [
- [
- [
- -0.9536731243133545
- ]
- ]
- ],
- [
- [
- [
- -0.9342179298400879
- ]
- ]
- ],
- [
- [
- [
- -0.9340324997901917
- ]
- ]
- ],
- [
- [
- [
- -0.9412869811058044
- ]
- ]
- ],
- [
- [
- [
- -0.9349332451820374
- ]
- ]
- ],
- [
- [
- [
- -1.258759617805481
- ]
- ]
- ],
- [
- [
- [
- -1.3072147369384766
- ]
- ]
- ],
- [
- [
- [
- -1.3572763204574585
- ]
- ]
- ],
- [
- [
- [
- -1.007968783378601
- ]
- ]
- ],
- [
- [
- [
- -0.8810752630233765
- ]
- ]
- ],
- [
- [
- [
- -1.0278948545455933
- ]
- ]
- ],
- [
- [
- [
- -0.8891944885253906
- ]
- ]
- ],
- [
- [
- [
- -0.8978524804115295
- ]
- ]
- ],
- [
- [
- [
- -1.0035778284072876
- ]
- ]
- ],
- [
- [
- [
- -1.1754200458526611
- ]
- ]
- ],
- [
- [
- [
- -1.1995974779129028
- ]
- ]
- ],
- [
- [
- [
- -1.2424542903900146
- ]
- ]
- ],
- [
- [
- [
- -0.9533348083496094
- ]
- ]
- ],
- [
- [
- [
- -0.9028401970863342
- ]
- ]
- ],
- [
- [
- [
- -0.8905308842658997
- ]
- ]
- ],
- [
- [
- [
- -0.9136421084403992
- ]
- ]
- ],
- [
- [
- [
- -1.0208842754364014
- ]
- ]
- ],
- [
- [
- [
- -1.249997854232788
- ]
- ]
- ],
- [
- [
- [
- -0.9038533568382263
- ]
- ]
- ],
- [
- [
- [
- -1.0959959030151367
- ]
- ]
- ],
- [
- [
- [
- -1.0703538656234741
- ]
- ]
- ],
- [
- [
- [
- -0.9960085153579712
- ]
- ]
- ],
- [
- [
- [
- -1.1064180135726929
- ]
- ]
- ],
- [
- [
- [
- -1.0244805812835693
- ]
- ]
- ],
- [
- [
- [
- -1.1023123264312744
- ]
- ]
- ],
- [
- [
- [
- -1.1334660053253174
- ]
- ]
- ],
- [
- [
- [
- -1.1243915557861328
- ]
- ]
- ],
- [
- [
- [
- -1.038134217262268
- ]
- ]
- ],
- [
- [
- [
- -0.9326073527336121
- ]
- ]
- ],
- [
- [
- [
- -0.9266437888145447
- ]
- ]
- ],
- [
- [
- [
- -0.9886530637741089
- ]
- ]
- ],
- [
- [
- [
- -1.3859061002731323
- ]
- ]
- ],
- [
- [
- [
- -1.0442261695861816
- ]
- ]
- ],
- [
- [
- [
- -1.1705939769744873
- ]
- ]
- ],
- [
- [
- [
- -0.9767018556594849
- ]
- ]
- ],
- [
- [
- [
- -0.9926846623420715
- ]
- ]
- ],
- [
- [
- [
- -1.128870964050293
- ]
- ]
- ],
- [
- [
- [
- -0.9656462669372559
- ]
- ]
- ],
- [
- [
- [
- -1.0403693914413452
- ]
- ]
- ],
- [
- [
- [
- -1.192579746246338
- ]
- ]
- ],
- [
- [
- [
- -1.0518159866333008
- ]
- ]
- ],
- [
- [
- [
- -0.9633121490478516
- ]
- ]
- ],
- [
- [
- [
- -1.0014386177062988
- ]
- ]
- ],
- [
- [
- [
- -0.8739585280418396
- ]
- ]
- ],
- [
- [
- [
- -1.1564912796020508
- ]
- ]
- ],
- [
- [
- [
- -1.1049473285675049
- ]
- ]
- ],
- [
- [
- [
- -0.9471585154533386
- ]
- ]
- ],
- [
- [
- [
- -1.0494964122772217
- ]
- ]
- ],
- [
- [
- [
- -1.0051406621932983
- ]
- ]
- ],
- [
- [
- [
- -0.9241628646850586
- ]
- ]
- ],
- [
- [
- [
- -1.2139900922775269
- ]
- ]
- ],
- [
- [
- [
- -0.8791210651397705
- ]
- ]
- ],
- [
- [
- [
- -1.0671290159225464
- ]
- ]
- ],
- [
- [
- [
- -1.2966636419296265
- ]
- ]
- ],
- [
- [
- [
- -1.0498162508010864
- ]
- ]
- ],
- [
- [
- [
- -1.2444278001785278
- ]
- ]
- ],
- [
- [
- [
- -0.8769262433052063
- ]
- ]
- ],
- [
- [
- [
- -1.057062029838562
- ]
- ]
- ],
- [
- [
- [
- -1.0791765451431274
- ]
- ]
- ],
- [
- [
- [
- -0.8913027048110962
- ]
- ]
- ],
- [
- [
- [
- -1.0281563997268677
- ]
- ]
- ],
- [
- [
- [
- -1.0479307174682617
- ]
- ]
- ],
- [
- [
- [
- -1.0180803537368774
- ]
- ]
- ],
- [
- [
- [
- -1.0311634540557861
- ]
- ]
- ],
- [
- [
- [
- -0.9627006649971008
- ]
- ]
- ],
- [
- [
- [
- -1.1538949012756348
- ]
- ]
- ],
- [
- [
- [
- -1.276624083518982
- ]
- ]
- ],
- [
- [
- [
- -1.0041576623916626
- ]
- ]
- ],
- [
- [
- [
- -0.9421504735946655
- ]
- ]
- ],
- [
- [
- [
- -1.10451340675354
- ]
- ]
- ],
- [
- [
- [
- -0.9514027833938599
- ]
- ]
- ],
- [
- [
- [
- -0.8607175350189209
- ]
- ]
- ],
- [
- [
- [
- -1.0594812631607056
- ]
- ]
- ],
- [
- [
- [
- -1.1915260553359985
- ]
- ]
- ],
- [
- [
- [
- -1.2745659351348877
- ]
- ]
- ],
- [
- [
- [
- -1.3023194074630737
- ]
- ]
- ],
- [
- [
- [
- -1.1491321325302124
- ]
- ]
- ],
- [
- [
- [
- -1.1788514852523804
- ]
- ]
- ],
- [
- [
- [
- -1.041752815246582
- ]
- ]
- ],
- [
- [
- [
- -1.0274423360824585
- ]
- ]
- ],
- [
- [
- [
- -1.0060992240905762
- ]
- ]
- ],
- [
- [
- [
- -1.043733835220337
- ]
- ]
- ],
- [
- [
- [
- -1.0043559074401855
- ]
- ]
- ],
- [
- [
- [
- -1.242361307144165
- ]
- ]
- ],
- [
- [
- [
- -1.0917469263076782
- ]
- ]
- ],
- [
- [
- [
- -0.8868166208267212
- ]
- ]
- ],
- [
- [
- [
- -1.1185859441757202
- ]
- ]
- ],
- [
- [
- [
- -1.215065836906433
- ]
- ]
- ],
- [
- [
- [
- -1.1409235000610352
- ]
- ]
- ],
- [
- [
- [
- -1.3653721809387207
- ]
- ]
- ],
- [
- [
- [
- -1.0264019966125488
- ]
- ]
- ],
- [
- [
- [
- -1.0741392374038696
- ]
- ]
- ],
- [
- [
- [
- -1.0314425230026245
- ]
- ]
- ],
- [
- [
- [
- -1.0425899028778076
- ]
- ]
- ],
- [
- [
- [
- -1.2318168878555298
- ]
- ]
- ],
- [
- [
- [
- -1.0735887289047241
- ]
- ]
- ],
- [
- [
- [
- -0.9825544357299805
- ]
- ]
- ],
- [
- [
- [
- -1.2492674589157104
- ]
- ]
- ],
- [
- [
- [
- -1.0203065872192383
- ]
- ]
- ],
- [
- [
- [
- -1.081558108329773
- ]
- ]
- ],
- [
- [
- [
- -0.937170684337616
- ]
- ]
- ],
- [
- [
- [
- -0.9265850186347961
- ]
- ]
- ],
- [
- [
- [
- -1.0881130695343018
- ]
- ]
- ],
- [
- [
- [
- -0.9770416617393494
- ]
- ]
- ],
- [
- [
- [
- -1.2899556159973145
- ]
- ]
- ],
- [
- [
- [
- -0.9241189360618591
- ]
- ]
- ],
- [
- [
- [
- -1.2112699747085571
- ]
- ]
- ],
- [
- [
- [
- -0.8882724046707153
- ]
- ]
- ],
- [
- [
- [
- -1.0282716751098633
- ]
- ]
- ],
- [
- [
- [
- -0.9828348755836487
- ]
- ]
- ],
- [
- [
- [
- -1.0737230777740479
- ]
- ]
- ],
- [
- [
- [
- -0.9871606230735779
- ]
- ]
- ],
- [
- [
- [
- -0.9771016836166382
- ]
- ]
- ],
- [
- [
- [
- -0.9747909307479858
- ]
- ]
- ],
- [
- [
- [
- -1.1770833730697632
- ]
- ]
- ],
- [
- [
- [
- -0.8328016400337219
- ]
- ]
- ],
- [
- [
- [
- -1.443938970565796
- ]
- ]
- ],
- [
- [
- [
- -1.0111873149871826
- ]
- ]
- ],
- [
- [
- [
- -1.174965500831604
- ]
- ]
- ],
- [
- [
- [
- -0.9433943629264832
- ]
- ]
- ],
- [
- [
- [
- -0.9464369416236877
- ]
- ]
- ],
- [
- [
- [
- -1.1407573223114014
- ]
- ]
- ],
- [
- [
- [
- -0.9741951823234558
- ]
- ]
- ],
- [
- [
- [
- -1.0612951517105103
- ]
- ]
- ],
- [
- [
- [
- -1.1312328577041626
- ]
- ]
- ],
- [
- [
- [
- -0.9462396502494812
- ]
- ]
- ],
- [
- [
- [
- -0.8338273763656616
- ]
- ]
- ],
- [
- [
- [
- -0.9607547521591187
- ]
- ]
- ],
- [
- [
- [
- -0.9146403074264526
- ]
- ]
- ],
- [
- [
- [
- -0.9611701369285583
- ]
- ]
- ],
- [
- [
- [
- -1.1471474170684814
- ]
- ]
- ],
- [
- [
- [
- -1.1801178455352783
- ]
- ]
- ],
- [
- [
- [
- -1.1448014974594116
- ]
- ]
- ],
- [
- [
- [
- -0.9068194031715393
- ]
- ]
- ],
- [
- [
- [
- -1.0315921306610107
- ]
- ]
- ],
- [
- [
- [
- -0.9900477528572083
- ]
- ]
- ],
- [
- [
- [
- -0.9586200714111328
- ]
- ]
- ],
- [
- [
- [
- -1.0193208456039429
- ]
- ]
- ],
- [
- [
- [
- -0.9869599938392639
- ]
- ]
- ],
- [
- [
- [
- -1.0661892890930176
- ]
- ]
- ],
- [
- [
- [
- -1.1352925300598145
- ]
- ]
- ],
- [
- [
- [
- -1.2916767597198486
- ]
- ]
- ],
- [
- [
- [
- -1.1136655807495117
- ]
- ]
- ],
- [
- [
- [
- -1.2857850790023804
- ]
- ]
- ],
- [
- [
- [
- -1.0083401203155518
- ]
- ]
- ],
- [
- [
- [
- -0.9288949966430664
- ]
- ]
- ],
- [
- [
- [
- -1.1385548114776611
- ]
- ]
- ],
- [
- [
- [
- -0.8625121116638184
- ]
- ]
- ],
- [
- [
- [
- -1.2757608890533447
- ]
- ]
- ],
- [
- [
- [
- -1.0160857439041138
- ]
- ]
- ],
- [
- [
- [
- -1.072108268737793
- ]
- ]
- ],
- [
- [
- [
- -0.8454800248146057
- ]
- ]
- ],
- [
- [
- [
- -1.2928614616394043
- ]
- ]
- ],
- [
- [
- [
- -1.1194101572036743
- ]
- ]
- ],
- [
- [
- [
- -0.9775660037994385
- ]
- ]
- ],
- [
- [
- [
- -0.9476670622825623
- ]
- ]
- ],
- [
- [
- [
- -0.924085259437561
- ]
- ]
- ],
- [
- [
- [
- -0.948512852191925
- ]
- ]
- ],
- [
- [
- [
- -0.9827684760093689
- ]
- ]
- ],
- [
- [
- [
- -1.1721360683441162
- ]
- ]
- ],
- [
- [
- [
- -0.9274629950523376
- ]
- ]
- ],
- [
- [
- [
- -0.9326360821723938
- ]
- ]
- ],
- [
- [
- [
- -0.9119270443916321
- ]
- ]
- ],
- [
- [
- [
- -1.1501086950302124
- ]
- ]
- ],
- [
- [
- [
- -0.9949315190315247
- ]
- ]
- ],
- [
- [
- [
- -1.081493854522705
- ]
- ]
- ],
- [
- [
- [
- -1.0049703121185303
- ]
- ]
- ],
- [
- [
- [
- -1.0624843835830688
- ]
- ]
- ],
- [
- [
- [
- -1.1247005462646484
- ]
- ]
- ],
- [
- [
- [
- -1.0666905641555786
- ]
- ]
- ],
- [
- [
- [
- -0.9057600498199463
- ]
- ]
- ],
- [
- [
- [
- -0.9993549585342407
- ]
- ]
- ],
- [
- [
- [
- -1.0748307704925537
- ]
- ]
- ],
- [
- [
- [
- -0.8645081520080566
- ]
- ]
- ],
- [
- [
- [
- -1.0128540992736816
- ]
- ]
- ],
- [
- [
- [
- -1.1865665912628174
- ]
- ]
- ],
- [
- [
- [
- -1.0805553197860718
- ]
- ]
- ],
- [
- [
- [
- -0.9412241578102112
- ]
- ]
- ],
- [
- [
- [
- -1.0709384679794312
- ]
- ]
- ],
- [
- [
- [
- -1.074902892112732
- ]
- ]
- ],
- [
- [
- [
- -0.9770339727401733
- ]
- ]
- ],
- [
- [
- [
- -1.1531246900558472
- ]
- ]
- ],
- [
- [
- [
- -1.045769214630127
- ]
- ]
- ],
- [
- [
- [
- -0.8681127429008484
- ]
- ]
- ],
- [
- [
- [
- -1.0733221769332886
- ]
- ]
- ],
- [
- [
- [
- -1.1108791828155518
- ]
- ]
- ],
- [
- [
- [
- -1.1578302383422852
- ]
- ]
- ],
- [
- [
- [
- -1.0519989728927612
- ]
- ]
- ],
- [
- [
- [
- -1.064167857170105
- ]
- ]
- ],
- [
- [
- [
- -0.9444636106491089
- ]
- ]
- ],
- [
- [
- [
- -1.1508172750473022
- ]
- ]
- ],
- [
- [
- [
- -1.0227632522583008
- ]
- ]
- ],
- [
- [
- [
- -1.1821093559265137
- ]
- ]
- ],
- [
- [
- [
- -1.0196737051010132
- ]
- ]
- ],
- [
- [
- [
- -0.9042742252349854
- ]
- ]
- ],
- [
- [
- [
- -0.9510952234268188
- ]
- ]
- ],
- [
- [
- [
- -1.1046959161758423
- ]
- ]
- ],
- [
- [
- [
- -1.0874121189117432
- ]
- ]
- ],
- [
- [
- [
- -1.0555789470672607
- ]
- ]
- ],
- [
- [
- [
- -0.9716154932975769
- ]
- ]
- ],
- [
- [
- [
- -1.1370609998703003
- ]
- ]
- ],
- [
- [
- [
- -0.8890295624732971
- ]
- ]
- ],
- [
- [
- [
- -1.076837182044983
- ]
- ]
- ],
- [
- [
- [
- -1.2104840278625488
- ]
- ]
- ],
- [
- [
- [
- -1.001082181930542
- ]
- ]
- ],
- [
- [
- [
- -1.0418784618377686
- ]
- ]
- ],
- [
- [
- [
- -1.1214569807052612
- ]
- ]
- ],
- [
- [
- [
- -1.0205363035202026
- ]
- ]
- ],
- [
- [
- [
- -0.949020266532898
- ]
- ]
- ],
- [
- [
- [
- -0.9941352605819702
- ]
- ]
- ],
- [
- [
- [
- -1.0550471544265747
- ]
- ]
- ],
- [
- [
- [
- -1.1806210279464722
- ]
- ]
- ],
- [
- [
- [
- -1.063831090927124
- ]
- ]
- ],
- [
- [
- [
- -0.9540398716926575
- ]
- ]
- ],
- [
- [
- [
- -1.3580119609832764
- ]
- ]
- ],
- [
- [
- [
- -1.0793349742889404
- ]
- ]
- ],
- [
- [
- [
- -1.105453372001648
- ]
- ]
- ],
- [
- [
- [
- -1.153299331665039
- ]
- ]
- ],
- [
- [
- [
- -1.4000060558319092
- ]
- ]
- ],
- [
- [
- [
- -0.9018593430519104
- ]
- ]
- ],
- [
- [
- [
- -1.1524367332458496
- ]
- ]
- ],
- [
- [
- [
- -1.1427441835403442
- ]
- ]
- ],
- [
- [
- [
- -1.062362551689148
- ]
- ]
- ],
- [
- [
- [
- -1.1045435667037964
- ]
- ]
- ],
- [
- [
- [
- -1.2931828498840332
- ]
- ]
- ],
- [
- [
- [
- -0.9359686374664307
- ]
- ]
- ],
- [
- [
- [
- -0.9755357503890991
- ]
- ]
- ],
- [
- [
- [
- -0.946886420249939
- ]
- ]
- ],
- [
- [
- [
- -0.8571058511734009
- ]
- ]
- ],
- [
- [
- [
- -1.0224840641021729
- ]
- ]
- ],
- [
- [
- [
- -0.9571502804756165
- ]
- ]
- ],
- [
- [
- [
- -0.8671402335166931
- ]
- ]
- ],
- [
- [
- [
- -1.0481683015823364
- ]
- ]
- ],
- [
- [
- [
- -1.0317639112472534
- ]
- ]
- ],
- [
- [
- [
- -1.2178491353988647
- ]
- ]
- ],
- [
- [
- [
- -1.008280873298645
- ]
- ]
- ],
- [
- [
- [
- -0.9531464576721191
- ]
- ]
- ],
- [
- [
- [
- -1.0938166379928589
- ]
- ]
- ],
- [
- [
- [
- -0.8070809245109558
- ]
- ]
- ],
- [
- [
- [
- -0.8963366150856018
- ]
- ]
- ],
- [
- [
- [
- -0.9782972931861877
- ]
- ]
- ],
- [
- [
- [
- -1.207140564918518
- ]
- ]
- ],
- [
- [
- [
- -0.8975882530212402
- ]
- ]
- ],
- [
- [
- [
- -1.0835970640182495
- ]
- ]
- ],
- [
- [
- [
- -0.9120482206344604
- ]
- ]
- ],
- [
- [
- [
- -0.9942784309387207
- ]
- ]
- ],
- [
- [
- [
- -1.1974923610687256
- ]
- ]
- ],
- [
- [
- [
- -1.0429184436798096
- ]
- ]
- ],
- [
- [
- [
- -0.8633242249488831
- ]
- ]
- ],
- [
- [
- [
- -0.9132651090621948
- ]
- ]
- ],
- [
- [
- [
- -0.9730945825576782
- ]
- ]
- ],
- [
- [
- [
- -1.0051466226577759
- ]
- ]
- ],
- [
- [
- [
- -1.1378281116485596
- ]
- ]
- ],
- [
- [
- [
- -1.0244734287261963
- ]
- ]
- ],
- [
- [
- [
- -0.8485549688339233
- ]
- ]
- ],
- [
- [
- [
- -1.0585641860961914
- ]
- ]
- ],
- [
- [
- [
- -0.9116373658180237
- ]
- ]
- ],
- [
- [
- [
- -1.0814012289047241
- ]
- ]
- ],
- [
- [
- [
- -0.8764873147010803
- ]
- ]
- ],
- [
- [
- [
- -0.9200323224067688
- ]
- ]
- ],
- [
- [
- [
- -1.1397144794464111
- ]
- ]
- ],
- [
- [
- [
- -1.0758315324783325
- ]
- ]
- ],
- [
- [
- [
- -0.9473378658294678
- ]
- ]
- ],
- [
- [
- [
- -0.8864887356758118
- ]
- ]
- ],
- [
- [
- [
- -1.027967929840088
- ]
- ]
- ],
- [
- [
- [
- -1.0994118452072144
- ]
- ]
- ],
- [
- [
- [
- -1.3142101764678955
- ]
- ]
- ],
- [
- [
- [
- -0.9950578212738037
- ]
- ]
- ],
- [
- [
- [
- -0.954127311706543
- ]
- ]
- ],
- [
- [
- [
- -1.0410901308059692
- ]
- ]
- ],
- [
- [
- [
- -1.0565950870513916
- ]
- ]
- ],
- [
- [
- [
- -1.037336826324463
- ]
- ]
- ],
- [
- [
- [
- -1.0508824586868286
- ]
- ]
- ],
- [
- [
- [
- -1.0649062395095825
- ]
- ]
- ],
- [
- [
- [
- -1.2643682956695557
- ]
- ]
- ],
- [
- [
- [
- -1.1107748746871948
- ]
- ]
- ],
- [
- [
- [
- -1.126798152923584
- ]
- ]
- ],
- [
- [
- [
- -0.9122111797332764
- ]
- ]
- ],
- [
- [
- [
- -0.9524283409118652
- ]
- ]
- ],
- [
- [
- [
- -1.2405966520309448
- ]
- ]
- ],
- [
- [
- [
- -1.1679342985153198
- ]
- ]
- ],
- [
- [
- [
- -1.0392626523971558
- ]
- ]
- ],
- [
- [
- [
- -0.8760585188865662
- ]
- ]
- ],
- [
- [
- [
- -0.8741157054901123
- ]
- ]
- ],
- [
- [
- [
- -0.9548141360282898
- ]
- ]
- ],
- [
- [
- [
- -0.9706990122795105
- ]
- ]
- ],
- [
- [
- [
- -1.1455386877059937
- ]
- ]
- ],
- [
- [
- [
- -0.8311827778816223
- ]
- ]
- ],
- [
- [
- [
- -0.8358185887336731
- ]
- ]
- ],
- [
- [
- [
- -0.9647719264030457
- ]
- ]
- ],
- [
- [
- [
- -1.0174694061279297
- ]
- ]
- ],
- [
- [
- [
- -1.0811899900436401
- ]
- ]
- ],
- [
- [
- [
- -1.0228279829025269
- ]
- ]
- ],
- [
- [
- [
- -1.3363714218139648
- ]
- ]
- ],
- [
- [
- [
- -1.202298879623413
- ]
- ]
- ],
- [
- [
- [
- -0.9641047120094299
- ]
- ]
- ],
- [
- [
- [
- -1.1036877632141113
- ]
- ]
- ],
- [
- [
- [
- -1.044417381286621
- ]
- ]
- ],
- [
- [
- [
- -1.2973098754882812
- ]
- ]
- ],
- [
- [
- [
- -1.3021875619888306
- ]
- ]
- ],
- [
- [
- [
- -0.9591345191001892
- ]
- ]
- ],
- [
- [
- [
- -0.9549047946929932
- ]
- ]
- ],
- [
- [
- [
- -0.9558269381523132
- ]
- ]
- ],
- [
- [
- [
- -1.1656184196472168
- ]
- ]
- ],
- [
- [
- [
- -1.3799079656600952
- ]
- ]
- ],
- [
- [
- [
- -1.1299395561218262
- ]
- ]
- ],
- [
- [
- [
- -1.0141754150390625
- ]
- ]
- ],
- [
- [
- [
- -0.8755527138710022
- ]
- ]
- ],
- [
- [
- [
- -0.9361050128936768
- ]
- ]
- ],
- [
- [
- [
- -0.968070387840271
- ]
- ]
- ],
- [
- [
- [
- -0.9279971718788147
- ]
- ]
- ],
- [
- [
- [
- -1.1448434591293335
- ]
- ]
- ],
- [
- [
- [
- -0.858123242855072
- ]
- ]
- ],
- [
- [
- [
- -1.1218311786651611
- ]
- ]
- ],
- [
- [
- [
- -0.97364342212677
- ]
- ]
- ],
- [
- [
- [
- -1.0089670419692993
- ]
- ]
- ],
- [
- [
- [
- -1.1893596649169922
- ]
- ]
- ],
- [
- [
- [
- -1.1618074178695679
- ]
- ]
- ],
- [
- [
- [
- -1.0006062984466553
- ]
- ]
- ],
- [
- [
- [
- -1.0363999605178833
- ]
- ]
- ],
- [
- [
- [
- -1.4448304176330566
- ]
- ]
- ],
- [
- [
- [
- -0.9783505797386169
- ]
- ]
- ],
- [
- [
- [
- -1.063950538635254
- ]
- ]
- ],
- [
- [
- [
- -1.2171812057495117
- ]
- ]
- ],
- [
- [
- [
- -0.9537957906723022
- ]
- ]
- ],
- [
- [
- [
- -1.0810315608978271
- ]
- ]
- ],
- [
- [
- [
- -1.116645097732544
- ]
- ]
- ],
- [
- [
- [
- -0.9056975245475769
- ]
- ]
- ],
- [
- [
- [
- -1.2064576148986816
- ]
- ]
- ],
- [
- [
- [
- -1.0363768339157104
- ]
- ]
- ],
- [
- [
- [
- -0.8926680088043213
- ]
- ]
- ],
- [
- [
- [
- -0.988464891910553
- ]
- ]
- ],
- [
- [
- [
- -1.2780306339263916
- ]
- ]
- ],
- [
- [
- [
- -0.9857171773910522
- ]
- ]
- ],
- [
- [
- [
- -1.25666344165802
- ]
- ]
- ],
- [
- [
- [
- -0.8698002696037292
- ]
- ]
- ],
- [
- [
- [
- -0.9867891669273376
- ]
- ]
- ],
- [
- [
- [
- -0.8669582009315491
- ]
- ]
- ],
- [
- [
- [
- -0.9488417506217957
- ]
- ]
- ],
- [
- [
- [
- -0.9466429948806763
- ]
- ]
- ],
- [
- [
- [
- -0.7996994256973267
- ]
- ]
- ],
- [
- [
- [
- -0.9027645587921143
- ]
- ]
- ],
- [
- [
- [
- -0.8893091082572937
- ]
- ]
- ],
- [
- [
- [
- -0.9615079760551453
- ]
- ]
- ],
- [
- [
- [
- -0.9414946436882019
- ]
- ]
- ],
- [
- [
- [
- -1.154750108718872
- ]
- ]
- ],
- [
- [
- [
- -0.9982889294624329
- ]
- ]
- ],
- [
- [
- [
- -0.9375662803649902
- ]
- ]
- ],
- [
- [
- [
- -1.0495917797088623
- ]
- ]
- ],
- [
- [
- [
- -0.907593846321106
- ]
- ]
- ],
- [
- [
- [
- -0.9003844857215881
- ]
- ]
- ],
- [
- [
- [
- -0.8861998319625854
- ]
- ]
- ],
- [
- [
- [
- -1.1976532936096191
- ]
- ]
- ],
- [
- [
- [
- -0.962557852268219
- ]
- ]
- ],
- [
- [
- [
- -1.0082967281341553
- ]
- ]
- ],
- [
- [
- [
- -1.0035251379013062
- ]
- ]
- ],
- [
- [
- [
- -1.176417589187622
- ]
- ]
- ],
- [
- [
- [
- -1.2831366062164307
- ]
- ]
- ],
- [
- [
- [
- -0.9748857617378235
- ]
- ]
- ],
- [
- [
- [
- -1.2109774351119995
- ]
- ]
- ],
- [
- [
- [
- -1.078963279724121
- ]
- ]
- ],
- [
- [
- [
- -1.0289831161499023
- ]
- ]
- ],
- [
- [
- [
- -1.2135554552078247
- ]
- ]
- ],
- [
- [
- [
- -1.754465103149414
- ]
- ]
- ],
- [
- [
- [
- -1.090802550315857
- ]
- ]
- ],
- [
- [
- [
- -1.0062347650527954
- ]
- ]
- ],
- [
- [
- [
- -1.3429503440856934
- ]
- ]
- ],
- [
- [
- [
- -1.1255489587783813
- ]
- ]
- ],
- [
- [
- [
- -1.0317440032958984
- ]
- ]
- ],
- [
- [
- [
- -1.179051160812378
- ]
- ]
- ],
- [
- [
- [
- -0.8333987593650818
- ]
- ]
- ],
- [
- [
- [
- -0.9396768808364868
- ]
- ]
- ],
- [
- [
- [
- -1.0890417098999023
- ]
- ]
- ],
- [
- [
- [
- -0.9309419393539429
- ]
- ]
- ],
- [
- [
- [
- -1.0102843046188354
- ]
- ]
- ],
- [
- [
- [
- -0.9432196617126465
- ]
- ]
- ],
- [
- [
- [
- -1.1532131433486938
- ]
- ]
- ],
- [
- [
- [
- -1.3022540807724
- ]
- ]
- ],
- [
- [
- [
- -1.2124758958816528
- ]
- ]
- ],
- [
- [
- [
- -0.8487300276756287
- ]
- ]
- ],
- [
- [
- [
- -1.3267371654510498
- ]
- ]
- ],
- [
- [
- [
- -1.0668996572494507
- ]
- ]
- ],
- [
- [
- [
- -1.123834490776062
- ]
- ]
- ],
- [
- [
- [
- -1.0314404964447021
- ]
- ]
- ],
- [
- [
- [
- -0.8755265474319458
- ]
- ]
- ],
- [
- [
- [
- -0.9168115854263306
- ]
- ]
- ],
- [
- [
- [
- -1.068183422088623
- ]
- ]
- ],
- [
- [
- [
- -1.1002918481826782
- ]
- ]
- ],
- [
- [
- [
- -0.9287847876548767
- ]
- ]
- ],
- [
- [
- [
- -1.0686533451080322
- ]
- ]
- ],
- [
- [
- [
- -1.1428122520446777
- ]
- ]
- ],
- [
- [
- [
- -0.9422306418418884
- ]
- ]
- ],
- [
- [
- [
- -1.0455546379089355
- ]
- ]
- ],
- [
- [
- [
- -0.9890179634094238
- ]
- ]
- ],
- [
- [
- [
- -1.0845826864242554
- ]
- ]
- ],
- [
- [
- [
- -1.0206300020217896
- ]
- ]
- ],
- [
- [
- [
- -1.0744905471801758
- ]
- ]
- ],
- [
- [
- [
- -1.0404577255249023
- ]
- ]
- ],
- [
- [
- [
- -0.8507762551307678
- ]
- ]
- ],
- [
- [
- [
- -1.1101171970367432
- ]
- ]
- ],
- [
- [
- [
- -1.165541410446167
- ]
- ]
- ],
- [
- [
- [
- -1.1639692783355713
- ]
- ]
- ],
- [
- [
- [
- -1.0935155153274536
- ]
- ]
- ],
- [
- [
- [
- -0.9642266631126404
- ]
- ]
- ],
- [
- [
- [
- -1.0703414678573608
- ]
- ]
- ],
- [
- [
- [
- -1.1228464841842651
- ]
- ]
- ],
- [
- [
- [
- -1.2027513980865479
- ]
- ]
- ],
- [
- [
- [
- -0.9062309265136719
- ]
- ]
- ],
- [
- [
- [
- -1.017543911933899
- ]
- ]
- ],
- [
- [
- [
- -0.8918632864952087
- ]
- ]
- ],
- [
- [
- [
- -0.94833904504776
- ]
- ]
- ],
- [
- [
- [
- -1.1465473175048828
- ]
- ]
- ],
- [
- [
- [
- -0.9237032532691956
- ]
- ]
- ],
- [
- [
- [
- -1.3423292636871338
- ]
- ]
- ],
- [
- [
- [
- -1.110587477684021
- ]
- ]
- ],
- [
- [
- [
- -1.0027050971984863
- ]
- ]
- ],
- [
- [
- [
- -0.859287679195404
- ]
- ]
- ],
- [
- [
- [
- -1.0727876424789429
- ]
- ]
- ],
- [
- [
- [
- -1.1240602731704712
- ]
- ]
- ],
- [
- [
- [
- -1.1620910167694092
- ]
- ]
- ],
- [
- [
- [
- -0.9728571176528931
- ]
- ]
- ],
- [
- [
- [
- -1.0243632793426514
- ]
- ]
- ],
- [
- [
- [
- -1.0096006393432617
- ]
- ]
- ],
- [
- [
- [
- -0.9416310787200928
- ]
- ]
- ],
- [
- [
- [
- -1.0457837581634521
- ]
- ]
- ],
- [
- [
- [
- -0.9331189393997192
- ]
- ]
- ],
- [
- [
- [
- -0.9473450183868408
- ]
- ]
- ],
- [
- [
- [
- -0.9231617450714111
- ]
- ]
- ],
- [
- [
- [
- -0.9393772482872009
- ]
- ]
- ],
- [
- [
- [
- -0.9252429604530334
- ]
- ]
- ],
- [
- [
- [
- -1.1057758331298828
- ]
- ]
- ],
- [
- [
- [
- -1.0021097660064697
- ]
- ]
- ],
- [
- [
- [
- -0.868303656578064
- ]
- ]
- ],
- [
- [
- [
- -1.1718151569366455
- ]
- ]
- ],
- [
- [
- [
- -1.0418108701705933
- ]
- ]
- ],
- [
- [
- [
- -1.3579179048538208
- ]
- ]
- ],
- [
- [
- [
- -0.914419412612915
- ]
- ]
- ],
- [
- [
- [
- -0.9089223742485046
- ]
- ]
- ],
- [
- [
- [
- -1.0666972398757935
- ]
- ]
- ],
- [
- [
- [
- -0.9895171523094177
- ]
- ]
- ],
- [
- [
- [
- -1.1276636123657227
- ]
- ]
- ],
- [
- [
- [
- -1.0933486223220825
- ]
- ]
- ],
- [
- [
- [
- -1.0089737176895142
- ]
- ]
- ],
- [
- [
- [
- -1.0134998559951782
- ]
- ]
- ],
- [
- [
- [
- -0.9586994051933289
- ]
- ]
- ],
- [
- [
- [
- -0.9611824154853821
- ]
- ]
- ],
- [
- [
- [
- -0.9234668612480164
- ]
- ]
- ],
- [
- [
- [
- -0.9769498109817505
- ]
- ]
- ],
- [
- [
- [
- -1.0329909324645996
- ]
- ]
- ],
- [
- [
- [
- -1.109122633934021
- ]
- ]
- ],
- [
- [
- [
- -1.016844391822815
- ]
- ]
- ],
- [
- [
- [
- -1.1730237007141113
- ]
- ]
- ],
- [
- [
- [
- -0.8907853364944458
- ]
- ]
- ],
- [
- [
- [
- -1.0471842288970947
- ]
- ]
- ],
- [
- [
- [
- -0.9165148735046387
- ]
- ]
- ],
- [
- [
- [
- -1.183213472366333
- ]
- ]
- ],
- [
- [
- [
- -0.9386231303215027
- ]
- ]
- ],
- [
- [
- [
- -1.2009954452514648
- ]
- ]
- ],
- [
- [
- [
- -0.9719381332397461
- ]
- ]
- ],
- [
- [
- [
- -0.9470806121826172
- ]
- ]
- ],
- [
- [
- [
- -1.0678826570510864
- ]
- ]
- ],
- [
- [
- [
- -0.8914904594421387
- ]
- ]
- ],
- [
- [
- [
- -1.2094393968582153
- ]
- ]
- ],
- [
- [
- [
- -1.0731004476547241
- ]
- ]
- ],
- [
- [
- [
- -0.9327958822250366
- ]
- ]
- ],
- [
- [
- [
- -1.1446822881698608
- ]
- ]
- ],
- [
- [
- [
- -0.8550580739974976
- ]
- ]
- ],
- [
- [
- [
- -0.9099161624908447
- ]
- ]
- ],
- [
- [
- [
- -0.8784576654434204
- ]
- ]
- ],
- [
- [
- [
- -1.0977330207824707
- ]
- ]
- ],
- [
- [
- [
- -1.131624460220337
- ]
- ]
- ],
- [
- [
- [
- -1.0359814167022705
- ]
- ]
- ],
- [
- [
- [
- -1.1548970937728882
- ]
- ]
- ],
- [
- [
- [
- -1.0996190309524536
- ]
- ]
- ],
- [
- [
- [
- -1.1651257276535034
- ]
- ]
- ],
- [
- [
- [
- -1.0054795742034912
- ]
- ]
- ],
- [
- [
- [
- -1.081498622894287
- ]
- ]
- ],
- [
- [
- [
- -1.1673420667648315
- ]
- ]
- ],
- [
- [
- [
- -1.0609326362609863
- ]
- ]
- ],
- [
- [
- [
- -1.1646230220794678
- ]
- ]
- ],
- [
- [
- [
- -1.2004386186599731
- ]
- ]
- ],
- [
- [
- [
- -1.2459582090377808
- ]
- ]
- ],
- [
- [
- [
- -0.9282576441764832
- ]
- ]
- ],
- [
- [
- [
- -0.9680273532867432
- ]
- ]
- ],
- [
- [
- [
- -1.0662275552749634
- ]
- ]
- ],
- [
- [
- [
- -0.9931215047836304
- ]
- ]
- ],
- [
- [
- [
- -0.9181368947029114
- ]
- ]
- ],
- [
- [
- [
- -1.0280262231826782
- ]
- ]
- ],
- [
- [
- [
- -1.0315675735473633
- ]
- ]
- ],
- [
- [
- [
- -1.211349368095398
- ]
- ]
- ],
- [
- [
- [
- -0.9511834383010864
- ]
- ]
- ],
- [
- [
- [
- -0.9717198610305786
- ]
- ]
- ],
- [
- [
- [
- -1.0667681694030762
- ]
- ]
- ],
- [
- [
- [
- -1.0382022857666016
- ]
- ]
- ],
- [
- [
- [
- -0.9334288239479065
- ]
- ]
- ],
- [
- [
- [
- -1.0301597118377686
- ]
- ]
- ],
- [
- [
- [
- -0.967439591884613
- ]
- ]
- ],
- [
- [
- [
- -1.0981744527816772
- ]
- ]
- ],
- [
- [
- [
- -1.0317530632019043
- ]
- ]
- ],
- [
- [
- [
- -0.9220200181007385
- ]
- ]
- ],
- [
- [
- [
- -1.0175871849060059
- ]
- ]
- ],
- [
- [
- [
- -1.11359703540802
- ]
- ]
- ],
- [
- [
- [
- -1.1702944040298462
- ]
- ]
- ],
- [
- [
- [
- -1.1477751731872559
- ]
- ]
- ],
- [
- [
- [
- -0.9981474280357361
- ]
- ]
- ],
- [
- [
- [
- -0.9660216569900513
- ]
- ]
- ],
- [
- [
- [
- -1.0632623434066772
- ]
- ]
- ],
- [
- [
- [
- -1.0619792938232422
- ]
- ]
- ],
- [
- [
- [
- -0.9663714170455933
- ]
- ]
- ],
- [
- [
- [
- -1.037628173828125
- ]
- ]
- ],
- [
- [
- [
- -1.0056796073913574
- ]
- ]
- ],
- [
- [
- [
- -1.065121054649353
- ]
- ]
- ],
- [
- [
- [
- -1.0345733165740967
- ]
- ]
- ],
- [
- [
- [
- -0.9505118727684021
- ]
- ]
- ],
- [
- [
- [
- -0.897445559501648
- ]
- ]
- ],
- [
- [
- [
- -1.0598386526107788
- ]
- ]
- ],
- [
- [
- [
- -1.2676388025283813
- ]
- ]
- ],
- [
- [
- [
- -0.9511508941650391
- ]
- ]
- ],
- [
- [
- [
- -0.928439736366272
- ]
- ]
- ],
- [
- [
- [
- -1.2194916009902954
- ]
- ]
- ],
- [
- [
- [
- -1.0169765949249268
- ]
- ]
- ],
- [
- [
- [
- -0.9326657652854919
- ]
- ]
- ],
- [
- [
- [
- -0.9493452906608582
- ]
- ]
- ],
- [
- [
- [
- -0.9033411145210266
- ]
- ]
- ],
- [
- [
- [
- -1.1802440881729126
- ]
- ]
- ],
- [
- [
- [
- -1.347385048866272
- ]
- ]
- ],
- [
- [
- [
- -1.034165382385254
- ]
- ]
- ],
- [
- [
- [
- -1.0334899425506592
- ]
- ]
- ],
- [
- [
- [
- -0.9876420497894287
- ]
- ]
- ],
- [
- [
- [
- -1.1072570085525513
- ]
- ]
- ],
- [
- [
- [
- -0.9952456951141357
- ]
- ]
- ],
- [
- [
- [
- -1.2574394941329956
- ]
- ]
- ],
- [
- [
- [
- -0.8689859509468079
- ]
- ]
- ],
- [
- [
- [
- -1.2661182880401611
- ]
- ]
- ],
- [
- [
- [
- -1.03981614112854
- ]
- ]
- ],
- [
- [
- [
- -0.8809809684753418
- ]
- ]
- ],
- [
- [
- [
- -1.0084947347640991
- ]
- ]
- ],
- [
- [
- [
- -1.2330219745635986
- ]
- ]
- ],
- [
- [
- [
- -1.1273365020751953
- ]
- ]
- ],
- [
- [
- [
- -0.9146544933319092
- ]
- ]
- ],
- [
- [
- [
- -1.0193747282028198
- ]
- ]
- ],
- [
- [
- [
- -1.2053042650222778
- ]
- ]
- ],
- [
- [
- [
- -1.0879497528076172
- ]
- ]
- ],
- [
- [
- [
- -1.0110937356948853
- ]
- ]
- ],
- [
- [
- [
- -1.0061726570129395
- ]
- ]
- ],
- [
- [
- [
- -1.235247254371643
- ]
- ]
- ],
- [
- [
- [
- -0.8393933176994324
- ]
- ]
- ],
- [
- [
- [
- -0.824079692363739
- ]
- ]
- ],
- [
- [
- [
- -0.9523329734802246
- ]
- ]
- ],
- [
- [
- [
- -1.0180377960205078
- ]
- ]
- ],
- [
- [
- [
- -1.0148016214370728
- ]
- ]
- ],
- [
- [
- [
- -1.0527592897415161
- ]
- ]
- ],
- [
- [
- [
- -0.8780673742294312
- ]
- ]
- ],
- [
- [
- [
- -0.9197720885276794
- ]
- ]
- ],
- [
- [
- [
- -1.0121686458587646
- ]
- ]
- ],
- [
- [
- [
- -1.149194359779358
- ]
- ]
- ],
- [
- [
- [
- -0.9815737009048462
- ]
- ]
- ],
- [
- [
- [
- -0.9915777444839478
- ]
- ]
- ],
- [
- [
- [
- -1.1064143180847168
- ]
- ]
- ],
- [
- [
- [
- -0.9680820107460022
- ]
- ]
- ],
- [
- [
- [
- -0.9682905077934265
- ]
- ]
- ],
- [
- [
- [
- -0.9024412631988525
- ]
- ]
- ],
- [
- [
- [
- -0.8982731103897095
- ]
- ]
- ],
- [
- [
- [
- -1.1594024896621704
- ]
- ]
- ],
- [
- [
- [
- -0.9761938452720642
- ]
- ]
- ],
- [
- [
- [
- -0.9572800993919373
- ]
- ]
- ],
- [
- [
- [
- -1.1908619403839111
- ]
- ]
- ],
- [
- [
- [
- -0.8362125754356384
- ]
- ]
- ],
- [
- [
- [
- -1.0266835689544678
- ]
- ]
- ],
- [
- [
- [
- -0.9952780604362488
- ]
- ]
- ],
- [
- [
- [
- -0.9968683123588562
- ]
- ]
- ],
- [
- [
- [
- -0.9154673218727112
- ]
- ]
- ],
- [
- [
- [
- -1.0375815629959106
- ]
- ]
- ],
- [
- [
- [
- -1.0971142053604126
- ]
- ]
- ],
- [
- [
- [
- -1.1723730564117432
- ]
- ]
- ],
- [
- [
- [
- -1.1669483184814453
- ]
- ]
- ],
- [
- [
- [
- -0.8638350963592529
- ]
- ]
- ],
- [
- [
- [
- -1.0306495428085327
- ]
- ]
- ],
- [
- [
- [
- -0.7914523482322693
- ]
- ]
- ],
- [
- [
- [
- -0.9465627670288086
- ]
- ]
- ],
- [
- [
- [
- -0.9358009099960327
- ]
- ]
- ],
- [
- [
- [
- -1.1162915229797363
- ]
- ]
- ],
- [
- [
- [
- -1.282200574874878
- ]
- ]
- ],
- [
- [
- [
- -1.1835085153579712
- ]
- ]
- ],
- [
- [
- [
- -1.0965139865875244
- ]
- ]
- ],
- [
- [
- [
- -1.022279143333435
- ]
- ]
- ],
- [
- [
- [
- -0.969238817691803
- ]
- ]
- ],
- [
- [
- [
- -1.0312553644180298
- ]
- ]
- ],
- [
- [
- [
- -0.9301641583442688
- ]
- ]
- ],
- [
- [
- [
- -1.0422611236572266
- ]
- ]
- ],
- [
- [
- [
- -0.8957532644271851
- ]
- ]
- ],
- [
- [
- [
- -1.263972520828247
- ]
- ]
- ],
- [
- [
- [
- -1.0146368741989136
- ]
- ]
- ],
- [
- [
- [
- -1.162316083908081
- ]
- ]
- ],
- [
- [
- [
- -1.1180760860443115
- ]
- ]
- ],
- [
- [
- [
- -0.8681666851043701
- ]
- ]
- ],
- [
- [
- [
- -1.1394109725952148
- ]
- ]
- ],
- [
- [
- [
- -1.1682298183441162
- ]
- ]
- ],
- [
- [
- [
- -1.1062583923339844
- ]
- ]
- ],
- [
- [
- [
- -1.0097405910491943
- ]
- ]
- ],
- [
- [
- [
- -1.0653554201126099
- ]
- ]
- ],
- [
- [
- [
- -1.316703200340271
- ]
- ]
- ],
- [
- [
- [
- -1.0931909084320068
- ]
- ]
- ],
- [
- [
- [
- -1.0288337469100952
- ]
- ]
- ],
- [
- [
- [
- -1.3324306011199951
- ]
- ]
- ],
- [
- [
- [
- -1.1035162210464478
- ]
- ]
- ],
- [
- [
- [
- -0.9111860990524292
- ]
- ]
- ],
- [
- [
- [
- -1.2000322341918945
- ]
- ]
- ],
- [
- [
- [
- -0.9042758941650391
- ]
- ]
- ],
- [
- [
- [
- -1.3390562534332275
- ]
- ]
- ],
- [
- [
- [
- -0.9674554467201233
- ]
- ]
- ],
- [
- [
- [
- -0.8713670372962952
- ]
- ]
- ],
- [
- [
- [
- -1.0164679288864136
- ]
- ]
- ],
- [
- [
- [
- -1.1765505075454712
- ]
- ]
- ],
- [
- [
- [
- -0.9445337057113647
- ]
- ]
- ],
- [
- [
- [
- -1.2038474082946777
- ]
- ]
- ],
- [
- [
- [
- -0.8512529730796814
- ]
- ]
- ],
- [
- [
- [
- -1.0011693239212036
- ]
- ]
- ],
- [
- [
- [
- -0.9551778435707092
- ]
- ]
- ],
- [
- [
- [
- -1.135277509689331
- ]
- ]
- ],
- [
- [
- [
- -1.133786678314209
- ]
- ]
- ],
- [
- [
- [
- -1.1718844175338745
- ]
- ]
- ],
- [
- [
- [
- -1.0246680974960327
- ]
- ]
- ],
- [
- [
- [
- -0.870772123336792
- ]
- ]
- ],
- [
- [
- [
- -0.7498603463172913
- ]
- ]
- ],
- [
- [
- [
- -1.1122853755950928
- ]
- ]
- ],
- [
- [
- [
- -1.117050290107727
- ]
- ]
- ],
- [
- [
- [
- -0.988623857498169
- ]
- ]
- ],
- [
- [
- [
- -1.0564159154891968
- ]
- ]
- ],
- [
- [
- [
- -1.0248101949691772
- ]
- ]
- ],
- [
- [
- [
- -1.0442086458206177
- ]
- ]
- ],
- [
- [
- [
- -1.069042444229126
- ]
- ]
- ],
- [
- [
- [
- -0.9790357351303101
- ]
- ]
- ],
- [
- [
- [
- -1.0303306579589844
- ]
- ]
- ],
- [
- [
- [
- -0.9958706498146057
- ]
- ]
- ],
- [
- [
- [
- -1.0475794076919556
- ]
- ]
- ],
- [
- [
- [
- -0.9423568248748779
- ]
- ]
- ],
- [
- [
- [
- -0.873300313949585
- ]
- ]
- ],
- [
- [
- [
- -1.0221199989318848
- ]
- ]
- ],
- [
- [
- [
- -0.9581412076950073
- ]
- ]
- ],
- [
- [
- [
- -1.0221160650253296
- ]
- ]
- ],
- [
- [
- [
- -0.9930990934371948
- ]
- ]
- ],
- [
- [
- [
- -0.9908562302589417
- ]
- ]
- ],
- [
- [
- [
- -0.9575285911560059
- ]
- ]
- ],
- [
- [
- [
- -0.9035313725471497
- ]
- ]
- ],
- [
- [
- [
- -1.096128225326538
- ]
- ]
- ],
- [
- [
- [
- -0.973421037197113
- ]
- ]
- ],
- [
- [
- [
- -0.9911546111106873
- ]
- ]
- ],
- [
- [
- [
- -0.8282685279846191
- ]
- ]
- ],
- [
- [
- [
- -1.1275051832199097
- ]
- ]
- ],
- [
- [
- [
- -1.0053731203079224
- ]
- ]
- ],
- [
- [
- [
- -0.989039957523346
- ]
- ]
- ],
- [
- [
- [
- -0.9180200695991516
- ]
- ]
- ],
- [
- [
- [
- -1.2811906337738037
- ]
- ]
- ],
- [
- [
- [
- -0.9537343978881836
- ]
- ]
- ],
- [
- [
- [
- -1.1475861072540283
- ]
- ]
- ],
- [
- [
- [
- -0.8917347192764282
- ]
- ]
- ],
- [
- [
- [
- -1.1562293767929077
- ]
- ]
- ],
- [
- [
- [
- -0.9123382568359375
- ]
- ]
- ],
- [
- [
- [
- -0.9741218090057373
- ]
- ]
- ],
- [
- [
- [
- -0.8686437010765076
- ]
- ]
- ],
- [
- [
- [
- -1.4131979942321777
- ]
- ]
- ],
- [
- [
- [
- -1.1079826354980469
- ]
- ]
- ],
- [
- [
- [
- -1.6747843027114868
- ]
- ]
- ],
- [
- [
- [
- -1.2411466836929321
- ]
- ]
- ],
- [
- [
- [
- -0.8981740474700928
- ]
- ]
- ],
- [
- [
- [
- -1.1654136180877686
- ]
- ]
- ],
- [
- [
- [
- -1.1303224563598633
- ]
- ]
- ],
- [
- [
- [
- -1.1889028549194336
- ]
- ]
- ],
- [
- [
- [
- -1.498738408088684
- ]
- ]
- ],
- [
- [
- [
- -1.1379988193511963
- ]
- ]
- ],
- [
- [
- [
- -0.9130008220672607
- ]
- ]
- ],
- [
- [
- [
- -1.1763774156570435
- ]
- ]
- ],
- [
- [
- [
- -1.1547441482543945
- ]
- ]
- ],
- [
- [
- [
- -0.9631338715553284
- ]
- ]
- ],
- [
- [
- [
- -1.151780366897583
- ]
- ]
- ],
- [
- [
- [
- -0.8802265524864197
- ]
- ]
- ],
- [
- [
- [
- -1.339415192604065
- ]
- ]
- ],
- [
- [
- [
- -0.801267147064209
- ]
- ]
- ],
- [
- [
- [
- -1.0882829427719116
- ]
- ]
- ],
- [
- [
- [
- -0.8202828764915466
- ]
- ]
- ],
- [
- [
- [
- -1.0587948560714722
- ]
- ]
- ],
- [
- [
- [
- -1.019809603691101
- ]
- ]
- ],
- [
- [
- [
- -1.0160835981369019
- ]
- ]
- ],
- [
- [
- [
- -0.9160484671592712
- ]
- ]
- ],
- [
- [
- [
- -0.9097926616668701
- ]
- ]
- ],
- [
- [
- [
- -1.0216456651687622
- ]
- ]
- ],
- [
- [
- [
- -1.0127605199813843
- ]
- ]
- ],
- [
- [
- [
- -0.9762558341026306
- ]
- ]
- ],
- [
- [
- [
- -0.9927420020103455
- ]
- ]
- ],
- [
- [
- [
- -0.812792956829071
- ]
- ]
- ],
- [
- [
- [
- -0.8704925775527954
- ]
- ]
- ],
- [
- [
- [
- -1.0351486206054688
- ]
- ]
- ],
- [
- [
- [
- -0.8864662647247314
- ]
- ]
- ],
- [
- [
- [
- -1.0826646089553833
- ]
- ]
- ],
- [
- [
- [
- -1.0816775560379028
- ]
- ]
- ],
- [
- [
- [
- -1.0368469953536987
- ]
- ]
- ],
- [
- [
- [
- -1.0713915824890137
- ]
- ]
- ],
- [
- [
- [
- -1.4123166799545288
- ]
- ]
- ],
- [
- [
- [
- -1.2359747886657715
- ]
- ]
- ],
- [
- [
- [
- -0.9495987892150879
- ]
- ]
- ],
- [
- [
- [
- -0.9151511788368225
- ]
- ]
- ],
- [
- [
- [
- -1.3006463050842285
- ]
- ]
- ],
- [
- [
- [
- -1.2935155630111694
- ]
- ]
- ],
- [
- [
- [
- -0.9979597330093384
- ]
- ]
- ],
- [
- [
- [
- -1.0068566799163818
- ]
- ]
- ],
- [
- [
- [
- -0.8601046204566956
- ]
- ]
- ],
- [
- [
- [
- -1.0795971155166626
- ]
- ]
- ],
- [
- [
- [
- -1.0950769186019897
- ]
- ]
- ],
- [
- [
- [
- -1.1820591688156128
- ]
- ]
- ],
- [
- [
- [
- -1.0445736646652222
- ]
- ]
- ],
- [
- [
- [
- -1.0767415761947632
- ]
- ]
- ],
- [
- [
- [
- -1.0770986080169678
- ]
- ]
- ],
- [
- [
- [
- -1.0848673582077026
- ]
- ]
- ],
- [
- [
- [
- -1.4953398704528809
- ]
- ]
- ],
- [
- [
- [
- -0.9231826663017273
- ]
- ]
- ],
- [
- [
- [
- -1.0823657512664795
- ]
- ]
- ],
- [
- [
- [
- -1.267652153968811
- ]
- ]
- ],
- [
- [
- [
- -0.9659174084663391
- ]
- ]
- ],
- [
- [
- [
- -0.9186413288116455
- ]
- ]
- ],
- [
- [
- [
- -0.9566716551780701
- ]
- ]
- ],
- [
- [
- [
- -1.0898019075393677
- ]
- ]
- ],
- [
- [
- [
- -0.9646103978157043
- ]
- ]
- ],
- [
- [
- [
- -1.0629745721817017
- ]
- ]
- ],
- [
- [
- [
- -0.9967606067657471
- ]
- ]
- ],
- [
- [
- [
- -0.9250516891479492
- ]
- ]
- ],
- [
- [
- [
- -0.9671849012374878
- ]
- ]
- ],
- [
- [
- [
- -1.146730899810791
- ]
- ]
- ],
- [
- [
- [
- -0.9242576956748962
- ]
- ]
- ],
- [
- [
- [
- -1.0041362047195435
- ]
- ]
- ],
- [
- [
- [
- -1.0695887804031372
- ]
- ]
- ],
- [
- [
- [
- -0.9826728701591492
- ]
- ]
- ],
- [
- [
- [
- -1.1424812078475952
- ]
- ]
- ],
- [
- [
- [
- -0.8917030692100525
- ]
- ]
- ],
- [
- [
- [
- -0.9630059003829956
- ]
- ]
- ],
- [
- [
- [
- -0.9132561683654785
- ]
- ]
- ],
- [
- [
- [
- -1.1274898052215576
- ]
- ]
- ],
- [
- [
- [
- -1.0315172672271729
- ]
- ]
- ],
- [
- [
- [
- -1.1761420965194702
- ]
- ]
- ],
- [
- [
- [
- -1.0530563592910767
- ]
- ]
- ],
- [
- [
- [
- -1.0070565938949585
- ]
- ]
- ],
- [
- [
- [
- -0.9258015155792236
- ]
- ]
- ],
- [
- [
- [
- -1.19841468334198
- ]
- ]
- ],
- [
- [
- [
- -1.0243979692459106
- ]
- ]
- ],
- [
- [
- [
- -0.8900928497314453
- ]
- ]
- ],
- [
- [
- [
- -1.0273610353469849
- ]
- ]
- ],
- [
- [
- [
- -0.8598757982254028
- ]
- ]
- ],
- [
- [
- [
- -0.946030855178833
- ]
- ]
- ],
- [
- [
- [
- -0.9448181390762329
- ]
- ]
- ],
- [
- [
- [
- -1.0143765211105347
- ]
- ]
- ],
- [
- [
- [
- -0.9872357249259949
- ]
- ]
- ],
- [
- [
- [
- -1.4276585578918457
- ]
- ]
- ],
- [
- [
- [
- -0.92050701379776
- ]
- ]
- ],
- [
- [
- [
- -1.073231816291809
- ]
- ]
- ],
- [
- [
- [
- -1.0232280492782593
- ]
- ]
- ],
- [
- [
- [
- -0.9219456911087036
- ]
- ]
- ],
- [
- [
- [
- -1.0473815202713013
- ]
- ]
- ],
- [
- [
- [
- -0.9583578109741211
- ]
- ]
- ],
- [
- [
- [
- -1.158691644668579
- ]
- ]
- ],
- [
- [
- [
- -1.190244436264038
- ]
- ]
- ],
- [
- [
- [
- -0.9650874733924866
- ]
- ]
- ],
- [
- [
- [
- -0.9343444108963013
- ]
- ]
- ],
- [
- [
- [
- -1.034268856048584
- ]
- ]
- ],
- [
- [
- [
- -1.1957803964614868
- ]
- ]
- ],
- [
- [
- [
- -0.9994576573371887
- ]
- ]
- ],
- [
- [
- [
- -1.01644766330719
- ]
- ]
- ],
- [
- [
- [
- -1.006485939025879
- ]
- ]
- ],
- [
- [
- [
- -1.050088882446289
- ]
- ]
- ],
- [
- [
- [
- -1.2327247858047485
- ]
- ]
- ],
- [
- [
- [
- -0.9164046049118042
- ]
- ]
- ],
- [
- [
- [
- -1.0635392665863037
- ]
- ]
- ],
- [
- [
- [
- -1.198624849319458
- ]
- ]
- ],
- [
- [
- [
- -1.033980369567871
- ]
- ]
- ],
- [
- [
- [
- -0.9468284845352173
- ]
- ]
- ],
- [
- [
- [
- -1.1643176078796387
- ]
- ]
- ],
- [
- [
- [
- -1.3685736656188965
- ]
- ]
- ],
- [
- [
- [
- -0.9036381840705872
- ]
- ]
- ],
- [
- [
- [
- -1.1483911275863647
- ]
- ]
- ],
- [
- [
- [
- -1.087874174118042
- ]
- ]
- ],
- [
- [
- [
- -1.0929338932037354
- ]
- ]
- ],
- [
- [
- [
- -0.9920712113380432
- ]
- ]
- ],
- [
- [
- [
- -1.160004734992981
- ]
- ]
- ],
- [
- [
- [
- -1.1754090785980225
- ]
- ]
- ],
- [
- [
- [
- -0.9312402606010437
- ]
- ]
- ],
- [
- [
- [
- -1.0538824796676636
- ]
- ]
- ],
- [
- [
- [
- -1.195144534111023
- ]
- ]
- ],
- [
- [
- [
- -0.9637614488601685
- ]
- ]
- ],
- [
- [
- [
- -1.122320294380188
- ]
- ]
- ],
- [
- [
- [
- -1.0226802825927734
- ]
- ]
- ],
- [
- [
- [
- -1.2232252359390259
- ]
- ]
- ],
- [
- [
- [
- -1.0013254880905151
- ]
- ]
- ],
- [
- [
- [
- -1.0539494752883911
- ]
- ]
- ],
- [
- [
- [
- -1.0873000621795654
- ]
- ]
- ],
- [
- [
- [
- -0.9148683547973633
- ]
- ]
- ],
- [
- [
- [
- -0.9341676235198975
- ]
- ]
- ],
- [
- [
- [
- -1.0425392389297485
- ]
- ]
- ],
- [
- [
- [
- -1.0417110919952393
- ]
- ]
- ],
- [
- [
- [
- -1.2196671962738037
- ]
- ]
- ],
- [
- [
- [
- -1.4334861040115356
- ]
- ]
- ],
- [
- [
- [
- -1.1152645349502563
- ]
- ]
- ],
- [
- [
- [
- -1.2558820247650146
- ]
- ]
- ],
- [
- [
- [
- -0.8673494458198547
- ]
- ]
- ],
- [
- [
- [
- -1.6053882837295532
- ]
- ]
- ],
- [
- [
- [
- -1.2437046766281128
- ]
- ]
- ],
- [
- [
- [
- -1.025049090385437
- ]
- ]
- ],
- [
- [
- [
- -1.1366007328033447
- ]
- ]
- ],
- [
- [
- [
- -1.0822099447250366
- ]
- ]
- ],
- [
- [
- [
- -1.1041475534439087
- ]
- ]
- ],
- [
- [
- [
- -0.9215682148933411
- ]
- ]
- ],
- [
- [
- [
- -1.2372361421585083
- ]
- ]
- ],
- [
- [
- [
- -1.0263289213180542
- ]
- ]
- ],
- [
- [
- [
- -1.331955075263977
- ]
- ]
- ],
- [
- [
- [
- -0.9262051582336426
- ]
- ]
- ],
- [
- [
- [
- -0.8875250816345215
- ]
- ]
- ],
- [
- [
- [
- -1.0618343353271484
- ]
- ]
- ],
- [
- [
- [
- -1.0563658475875854
- ]
- ]
- ],
- [
- [
- [
- -1.2385578155517578
- ]
- ]
- ],
- [
- [
- [
- -0.9614799618721008
- ]
- ]
- ],
- [
- [
- [
- -0.968964695930481
- ]
- ]
- ],
- [
- [
- [
- -0.9935006499290466
- ]
- ]
- ],
- [
- [
- [
- -1.1900731325149536
- ]
- ]
- ],
- [
- [
- [
- -1.0714223384857178
- ]
- ]
- ],
- [
- [
- [
- -1.0552107095718384
- ]
- ]
- ],
- [
- [
- [
- -1.08120596408844
- ]
- ]
- ],
- [
- [
- [
- -0.9579365253448486
- ]
- ]
- ],
- [
- [
- [
- -1.1733412742614746
- ]
- ]
- ],
- [
- [
- [
- -1.4753390550613403
- ]
- ]
- ],
- [
- [
- [
- -1.0601569414138794
- ]
- ]
- ],
- [
- [
- [
- -1.0317269563674927
- ]
- ]
- ],
- [
- [
- [
- -0.98548424243927
- ]
- ]
- ],
- [
- [
- [
- -1.1392360925674438
- ]
- ]
- ],
- [
- [
- [
- -1.154281497001648
- ]
- ]
- ],
- [
- [
- [
- -1.0393935441970825
- ]
- ]
- ],
- [
- [
- [
- -0.9594317674636841
- ]
- ]
- ],
- [
- [
- [
- -0.8906742334365845
- ]
- ]
- ],
- [
- [
- [
- -1.0964202880859375
- ]
- ]
- ],
- [
- [
- [
- -1.0778019428253174
- ]
- ]
- ],
- [
- [
- [
- -0.9638389945030212
- ]
- ]
- ],
- [
- [
- [
- -0.9502721428871155
- ]
- ]
- ],
- [
- [
- [
- -1.2740446329116821
- ]
- ]
- ],
- [
- [
- [
- -1.026613473892212
- ]
- ]
- ],
- [
- [
- [
- -1.0728224515914917
- ]
- ]
- ],
- [
- [
- [
- -1.136831283569336
- ]
- ]
- ],
- [
- [
- [
- -1.0910557508468628
- ]
- ]
- ],
- [
- [
- [
- -0.8803440928459167
- ]
- ]
- ],
- [
- [
- [
- -1.0493167638778687
- ]
- ]
- ],
- [
- [
- [
- -0.8760088086128235
- ]
- ]
- ],
- [
- [
- [
- -0.8282005190849304
- ]
- ]
- ],
- [
- [
- [
- -0.9414563179016113
- ]
- ]
- ],
- [
- [
- [
- -0.9254025816917419
- ]
- ]
- ],
- [
- [
- [
- -0.9233563542366028
- ]
- ]
- ],
- [
- [
- [
- -1.1296831369400024
- ]
- ]
- ],
- [
- [
- [
- -1.044033169746399
- ]
- ]
- ],
- [
- [
- [
- -1.0141501426696777
- ]
- ]
- ],
- [
- [
- [
- -0.9893689751625061
- ]
- ]
- ],
- [
- [
- [
- -1.3385313749313354
- ]
- ]
- ],
- [
- [
- [
- -1.0532974004745483
- ]
- ]
- ],
- [
- [
- [
- -0.9132193326950073
- ]
- ]
- ],
- [
- [
- [
- -0.8977677822113037
- ]
- ]
- ],
- [
- [
- [
- -0.9809406399726868
- ]
- ]
- ],
- [
- [
- [
- -0.9672472476959229
- ]
- ]
- ],
- [
- [
- [
- -1.2133967876434326
- ]
- ]
- ],
- [
- [
- [
- -0.8907191753387451
- ]
- ]
- ],
- [
- [
- [
- -1.1266659498214722
- ]
- ]
- ],
- [
- [
- [
- -0.9290457367897034
- ]
- ]
- ],
- [
- [
- [
- -0.9387751817703247
- ]
- ]
- ],
- [
- [
- [
- -1.039330244064331
- ]
- ]
- ],
- [
- [
- [
- -1.1366225481033325
- ]
- ]
- ],
- [
- [
- [
- -1.3512424230575562
- ]
- ]
- ],
- [
- [
- [
- -1.0292646884918213
- ]
- ]
- ],
- [
- [
- [
- -0.969363272190094
- ]
- ]
- ],
- [
- [
- [
- -1.0838828086853027
- ]
- ]
- ],
- [
- [
- [
- -0.8946046233177185
- ]
- ]
- ],
- [
- [
- [
- -0.9409071803092957
- ]
- ]
- ],
- [
- [
- [
- -1.0113590955734253
- ]
- ]
- ],
- [
- [
- [
- -1.14974045753479
- ]
- ]
- ],
- [
- [
- [
- -1.0293505191802979
- ]
- ]
- ],
- [
- [
- [
- -1.0862846374511719
- ]
- ]
- ],
- [
- [
- [
- -0.9694017171859741
- ]
- ]
- ],
- [
- [
- [
- -0.9677215814590454
- ]
- ]
- ],
- [
- [
- [
- -0.939729630947113
- ]
- ]
- ],
- [
- [
- [
- -1.0437185764312744
- ]
- ]
- ],
- [
- [
- [
- -1.006166934967041
- ]
- ]
- ],
- [
- [
- [
- -0.9743891358375549
- ]
- ]
- ],
- [
- [
- [
- -1.1442912817001343
- ]
- ]
- ],
- [
- [
- [
- -1.1824060678482056
- ]
- ]
- ],
- [
- [
- [
- -1.1274503469467163
- ]
- ]
- ],
- [
- [
- [
- -0.8865083456039429
- ]
- ]
- ],
- [
- [
- [
- -1.0748287439346313
- ]
- ]
- ],
- [
- [
- [
- -0.8866617679595947
- ]
- ]
- ],
- [
- [
- [
- -1.1383073329925537
- ]
- ]
- ],
- [
- [
- [
- -1.2039122581481934
- ]
- ]
- ],
- [
- [
- [
- -1.0320487022399902
- ]
- ]
- ],
- [
- [
- [
- -1.014757752418518
- ]
- ]
- ],
- [
- [
- [
- -0.9832412004470825
- ]
- ]
- ],
- [
- [
- [
- -1.034433364868164
- ]
- ]
- ],
- [
- [
- [
- -1.0604592561721802
- ]
- ]
- ],
- [
- [
- [
- -1.0199542045593262
- ]
- ]
- ],
- [
- [
- [
- -0.9525006413459778
- ]
- ]
- ],
- [
- [
- [
- -1.0461488962173462
- ]
- ]
- ],
- [
- [
- [
- -1.0134856700897217
- ]
- ]
- ],
- [
- [
- [
- -1.0897252559661865
- ]
- ]
- ],
- [
- [
- [
- -1.1297426223754883
- ]
- ]
- ],
- [
- [
- [
- -1.0999870300292969
- ]
- ]
- ],
- [
- [
- [
- -1.0331299304962158
- ]
- ]
- ],
- [
- [
- [
- -0.9930763840675354
- ]
- ]
- ],
- [
- [
- [
- -0.9544077515602112
- ]
- ]
- ],
- [
- [
- [
- -0.970114529132843
- ]
- ]
- ],
- [
- [
- [
- -1.2985087633132935
- ]
- ]
- ],
- [
- [
- [
- -1.0040926933288574
- ]
- ]
- ],
- [
- [
- [
- -1.1276699304580688
- ]
- ]
- ],
- [
- [
- [
- -1.0992940664291382
- ]
- ]
- ],
- [
- [
- [
- -1.0134931802749634
- ]
- ]
- ],
- [
- [
- [
- -1.0181903839111328
- ]
- ]
- ],
- [
- [
- [
- -1.2153596878051758
- ]
- ]
- ],
- [
- [
- [
- -1.0986175537109375
- ]
- ]
- ],
- [
- [
- [
- -0.8209522366523743
- ]
- ]
- ],
- [
- [
- [
- -0.8855798244476318
- ]
- ]
- ],
- [
- [
- [
- -0.9683364629745483
- ]
- ]
- ],
- [
- [
- [
- -0.9707607626914978
- ]
- ]
- ],
- [
- [
- [
- -0.865387499332428
- ]
- ]
- ],
- [
- [
- [
- -0.9642270803451538
- ]
- ]
- ],
- [
- [
- [
- -0.8924148082733154
- ]
- ]
- ],
- [
- [
- [
- -0.9769684672355652
- ]
- ]
- ],
- [
- [
- [
- -1.1303585767745972
- ]
- ]
- ],
- [
- [
- [
- -0.973569393157959
- ]
- ]
- ],
- [
- [
- [
- -0.9845264554023743
- ]
- ]
- ],
- [
- [
- [
- -0.8775923848152161
- ]
- ]
- ],
- [
- [
- [
- -1.0446174144744873
- ]
- ]
- ],
- [
- [
- [
- -1.06755793094635
- ]
- ]
- ],
- [
- [
- [
- -0.9677262902259827
- ]
- ]
- ],
- [
- [
- [
- -0.8944038152694702
- ]
- ]
- ],
- [
- [
- [
- -0.9117789268493652
- ]
- ]
- ],
- [
- [
- [
- -1.3298097848892212
- ]
- ]
- ],
- [
- [
- [
- -0.9277745485305786
- ]
- ]
- ],
- [
- [
- [
- -1.1351077556610107
- ]
- ]
- ],
- [
- [
- [
- -0.9505661129951477
- ]
- ]
- ],
- [
- [
- [
- -0.9157877564430237
- ]
- ]
- ],
- [
- [
- [
- -0.8652980327606201
- ]
- ]
- ],
- [
- [
- [
- -1.4441709518432617
- ]
- ]
- ],
- [
- [
- [
- -0.9310252070426941
- ]
- ]
- ],
- [
- [
- [
- -1.101375699043274
- ]
- ]
- ],
- [
- [
- [
- -0.8490892648696899
- ]
- ]
- ],
- [
- [
- [
- -1.0252288579940796
- ]
- ]
- ],
- [
- [
- [
- -0.9815975427627563
- ]
- ]
- ],
- [
- [
- [
- -0.9024218916893005
- ]
- ]
- ],
- [
- [
- [
- -0.9733182191848755
- ]
- ]
- ],
- [
- [
- [
- -1.3083481788635254
- ]
- ]
- ],
- [
- [
- [
- -0.9134640693664551
- ]
- ]
- ],
- [
- [
- [
- -1.0094417333602905
- ]
- ]
- ],
- [
- [
- [
- -1.0689857006072998
- ]
- ]
- ],
- [
- [
- [
- -1.4842339754104614
- ]
- ]
- ],
- [
- [
- [
- -0.8851192593574524
- ]
- ]
- ],
- [
- [
- [
- -1.0576046705245972
- ]
- ]
- ],
- [
- [
- [
- -1.072542667388916
- ]
- ]
- ],
- [
- [
- [
- -0.9997857809066772
- ]
- ]
- ],
- [
- [
- [
- -0.9685620665550232
- ]
- ]
- ],
- [
- [
- [
- -0.8968682289123535
- ]
- ]
- ],
- [
- [
- [
- -0.9818838834762573
- ]
- ]
- ],
- [
- [
- [
- -0.9587700963020325
- ]
- ]
- ],
- [
- [
- [
- -0.9785784482955933
- ]
- ]
- ],
- [
- [
- [
- -1.115765929222107
- ]
- ]
- ],
- [
- [
- [
- -1.2617428302764893
- ]
- ]
- ],
- [
- [
- [
- -0.9551870822906494
- ]
- ]
- ],
- [
- [
- [
- -1.0487961769104004
- ]
- ]
- ],
- [
- [
- [
- -1.2335795164108276
- ]
- ]
- ],
- [
- [
- [
- -1.0376629829406738
- ]
- ]
- ],
- [
- [
- [
- -1.2391270399093628
- ]
- ]
- ],
- [
- [
- [
- -1.0144726037979126
- ]
- ]
- ],
- [
- [
- [
- -1.068605899810791
- ]
- ]
- ],
- [
- [
- [
- -1.1246964931488037
- ]
- ]
- ],
- [
- [
- [
- -0.8251024484634399
- ]
- ]
- ],
- [
- [
- [
- -1.131123661994934
- ]
- ]
- ],
- [
- [
- [
- -0.9032446146011353
- ]
- ]
- ],
- [
- [
- [
- -0.8750292658805847
- ]
- ]
- ],
- [
- [
- [
- -1.1389330625534058
- ]
- ]
- ],
- [
- [
- [
- -1.0585908889770508
- ]
- ]
- ],
- [
- [
- [
- -1.111668348312378
- ]
- ]
- ],
- [
- [
- [
- -0.8796474933624268
- ]
- ]
- ],
- [
- [
- [
- -1.367453932762146
- ]
- ]
- ],
- [
- [
- [
- -1.0127404928207397
- ]
- ]
- ],
- [
- [
- [
- -0.9792473912239075
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.9333563446998596
- ]
- ]
- ],
- [
- [
- [
- 0.8634206056594849
- ]
- ]
- ],
- [
- [
- [
- 1.3679049015045166
- ]
- ]
- ],
- [
- [
- [
- 0.921192467212677
- ]
- ]
- ],
- [
- [
- [
- 1.074693202972412
- ]
- ]
- ],
- [
- [
- [
- 0.9710022807121277
- ]
- ]
- ],
- [
- [
- [
- 0.937746524810791
- ]
- ]
- ],
- [
- [
- [
- 0.8183114528656006
- ]
- ]
- ],
- [
- [
- [
- 0.9902278184890747
- ]
- ]
- ],
- [
- [
- [
- 1.0752556324005127
- ]
- ]
- ],
- [
- [
- [
- 1.2409653663635254
- ]
- ]
- ],
- [
- [
- [
- 1.1727107763290405
- ]
- ]
- ],
- [
- [
- [
- 1.094907283782959
- ]
- ]
- ],
- [
- [
- [
- 1.0488450527191162
- ]
- ]
- ],
- [
- [
- [
- 0.9464437961578369
- ]
- ]
- ],
- [
- [
- [
- 0.8778498768806458
- ]
- ]
- ],
- [
- [
- [
- 0.9288340210914612
- ]
- ]
- ],
- [
- [
- [
- 1.169562578201294
- ]
- ]
- ],
- [
- [
- [
- 1.0479663610458374
- ]
- ]
- ],
- [
- [
- [
- 1.0154087543487549
- ]
- ]
- ],
- [
- [
- [
- 1.0552308559417725
- ]
- ]
- ],
- [
- [
- [
- 1.0735704898834229
- ]
- ]
- ],
- [
- [
- [
- 1.2206473350524902
- ]
- ]
- ],
- [
- [
- [
- 0.8820775747299194
- ]
- ]
- ],
- [
- [
- [
- 0.985245406627655
- ]
- ]
- ],
- [
- [
- [
- 0.9965498447418213
- ]
- ]
- ],
- [
- [
- [
- 1.097084879875183
- ]
- ]
- ],
- [
- [
- [
- 0.9789084196090698
- ]
- ]
- ],
- [
- [
- [
- 0.9565417170524597
- ]
- ]
- ],
- [
- [
- [
- 0.9204089641571045
- ]
- ]
- ],
- [
- [
- [
- 1.1081256866455078
- ]
- ]
- ],
- [
- [
- [
- 0.9363775849342346
- ]
- ]
- ],
- [
- [
- [
- 1.1928625106811523
- ]
- ]
- ],
- [
- [
- [
- 0.8435102701187134
- ]
- ]
- ],
- [
- [
- [
- 1.0255998373031616
- ]
- ]
- ],
- [
- [
- [
- 0.9146135449409485
- ]
- ]
- ],
- [
- [
- [
- 1.0180649757385254
- ]
- ]
- ],
- [
- [
- [
- 1.0512093305587769
- ]
- ]
- ],
- [
- [
- [
- 1.1696480512619019
- ]
- ]
- ],
- [
- [
- [
- 1.1852375268936157
- ]
- ]
- ],
- [
- [
- [
- 1.0058954954147339
- ]
- ]
- ],
- [
- [
- [
- 1.1105128526687622
- ]
- ]
- ],
- [
- [
- [
- 0.9131753444671631
- ]
- ]
- ],
- [
- [
- [
- 0.9425309896469116
- ]
- ]
- ],
- [
- [
- [
- 0.9901024103164673
- ]
- ]
- ],
- [
- [
- [
- 1.2012548446655273
- ]
- ]
- ],
- [
- [
- [
- 1.1605666875839233
- ]
- ]
- ],
- [
- [
- [
- 1.139669418334961
- ]
- ]
- ],
- [
- [
- [
- 1.0456866025924683
- ]
- ]
- ],
- [
- [
- [
- 1.1513564586639404
- ]
- ]
- ],
- [
- [
- [
- 1.3330177068710327
- ]
- ]
- ],
- [
- [
- [
- 0.9522570371627808
- ]
- ]
- ],
- [
- [
- [
- 0.9786536693572998
- ]
- ]
- ],
- [
- [
- [
- 1.0071555376052856
- ]
- ]
- ],
- [
- [
- [
- 0.9622791409492493
- ]
- ]
- ],
- [
- [
- [
- 0.9655205607414246
- ]
- ]
- ],
- [
- [
- [
- 1.1577054262161255
- ]
- ]
- ],
- [
- [
- [
- 0.9871496558189392
- ]
- ]
- ],
- [
- [
- [
- 0.916568398475647
- ]
- ]
- ],
- [
- [
- [
- 1.080419659614563
- ]
- ]
- ],
- [
- [
- [
- 1.240788221359253
- ]
- ]
- ],
- [
- [
- [
- 1.007234811782837
- ]
- ]
- ],
- [
- [
- [
- 1.2301338911056519
- ]
- ]
- ],
- [
- [
- [
- 1.0749702453613281
- ]
- ]
- ],
- [
- [
- [
- 0.8941547274589539
- ]
- ]
- ],
- [
- [
- [
- 1.3026576042175293
- ]
- ]
- ],
- [
- [
- [
- 0.9793345928192139
- ]
- ]
- ],
- [
- [
- [
- 1.553097128868103
- ]
- ]
- ],
- [
- [
- [
- 0.9606373906135559
- ]
- ]
- ],
- [
- [
- [
- 0.9629589319229126
- ]
- ]
- ],
- [
- [
- [
- 1.0442421436309814
- ]
- ]
- ],
- [
- [
- [
- 0.9142823219299316
- ]
- ]
- ],
- [
- [
- [
- 0.9564029574394226
- ]
- ]
- ],
- [
- [
- [
- 0.9296230673789978
- ]
- ]
- ],
- [
- [
- [
- 1.0089994668960571
- ]
- ]
- ],
- [
- [
- [
- 1.0354018211364746
- ]
- ]
- ],
- [
- [
- [
- 1.2310198545455933
- ]
- ]
- ],
- [
- [
- [
- 1.090272068977356
- ]
- ]
- ],
- [
- [
- [
- 1.07002592086792
- ]
- ]
- ],
- [
- [
- [
- 1.1138919591903687
- ]
- ]
- ],
- [
- [
- [
- 1.084550142288208
- ]
- ]
- ],
- [
- [
- [
- 1.1057924032211304
- ]
- ]
- ],
- [
- [
- [
- 1.2235233783721924
- ]
- ]
- ],
- [
- [
- [
- 1.0582817792892456
- ]
- ]
- ],
- [
- [
- [
- 0.9743874669075012
- ]
- ]
- ],
- [
- [
- [
- 0.9303461909294128
- ]
- ]
- ],
- [
- [
- [
- 1.0827430486679077
- ]
- ]
- ],
- [
- [
- [
- 1.0619254112243652
- ]
- ]
- ],
- [
- [
- [
- 0.8887662887573242
- ]
- ]
- ],
- [
- [
- [
- 1.075006365776062
- ]
- ]
- ],
- [
- [
- [
- 1.2990859746932983
- ]
- ]
- ],
- [
- [
- [
- 1.1231625080108643
- ]
- ]
- ],
- [
- [
- [
- 0.9791327714920044
- ]
- ]
- ],
- [
- [
- [
- 0.9313610196113586
- ]
- ]
- ],
- [
- [
- [
- 1.0811262130737305
- ]
- ]
- ],
- [
- [
- [
- 0.9537045359611511
- ]
- ]
- ],
- [
- [
- [
- 1.1036652326583862
- ]
- ]
- ],
- [
- [
- [
- 1.035569429397583
- ]
- ]
- ],
- [
- [
- [
- 1.209285020828247
- ]
- ]
- ],
- [
- [
- [
- 0.9597774744033813
- ]
- ]
- ],
- [
- [
- [
- 0.989969789981842
- ]
- ]
- ],
- [
- [
- [
- 1.1306732892990112
- ]
- ]
- ],
- [
- [
- [
- 0.9206469655036926
- ]
- ]
- ],
- [
- [
- [
- 1.0266563892364502
- ]
- ]
- ],
- [
- [
- [
- 1.1178147792816162
- ]
- ]
- ],
- [
- [
- [
- 1.266143798828125
- ]
- ]
- ],
- [
- [
- [
- 1.1960279941558838
- ]
- ]
- ],
- [
- [
- [
- 0.9617884755134583
- ]
- ]
- ],
- [
- [
- [
- 0.9933983087539673
- ]
- ]
- ],
- [
- [
- [
- 1.0695656538009644
- ]
- ]
- ],
- [
- [
- [
- 1.1198887825012207
- ]
- ]
- ],
- [
- [
- [
- 1.3172880411148071
- ]
- ]
- ],
- [
- [
- [
- 1.2068411111831665
- ]
- ]
- ],
- [
- [
- [
- 0.9493498206138611
- ]
- ]
- ],
- [
- [
- [
- 1.1716622114181519
- ]
- ]
- ],
- [
- [
- [
- 1.0408910512924194
- ]
- ]
- ],
- [
- [
- [
- 1.0437089204788208
- ]
- ]
- ],
- [
- [
- [
- 1.3508024215698242
- ]
- ]
- ],
- [
- [
- [
- 0.9652036428451538
- ]
- ]
- ],
- [
- [
- [
- 1.221362829208374
- ]
- ]
- ],
- [
- [
- [
- 0.9645214676856995
- ]
- ]
- ],
- [
- [
- [
- 1.1308947801589966
- ]
- ]
- ],
- [
- [
- [
- 1.1852948665618896
- ]
- ]
- ],
- [
- [
- [
- 1.1971423625946045
- ]
- ]
- ],
- [
- [
- [
- 1.118455410003662
- ]
- ]
- ],
- [
- [
- [
- 1.0853466987609863
- ]
- ]
- ],
- [
- [
- [
- 1.040671944618225
- ]
- ]
- ],
- [
- [
- [
- 0.9294936656951904
- ]
- ]
- ],
- [
- [
- [
- 0.9489459991455078
- ]
- ]
- ],
- [
- [
- [
- 1.0066914558410645
- ]
- ]
- ],
- [
- [
- [
- 1.1474987268447876
- ]
- ]
- ],
- [
- [
- [
- 0.9631145596504211
- ]
- ]
- ],
- [
- [
- [
- 0.9549851417541504
- ]
- ]
- ],
- [
- [
- [
- 0.9759792685508728
- ]
- ]
- ],
- [
- [
- [
- 0.8484014272689819
- ]
- ]
- ],
- [
- [
- [
- 1.2572873830795288
- ]
- ]
- ],
- [
- [
- [
- 1.101784348487854
- ]
- ]
- ],
- [
- [
- [
- 0.946007251739502
- ]
- ]
- ],
- [
- [
- [
- 1.023027777671814
- ]
- ]
- ],
- [
- [
- [
- 0.985552191734314
- ]
- ]
- ],
- [
- [
- [
- 1.0553869009017944
- ]
- ]
- ],
- [
- [
- [
- 1.2880066633224487
- ]
- ]
- ],
- [
- [
- [
- 0.9363034963607788
- ]
- ]
- ],
- [
- [
- [
- 0.8398956656455994
- ]
- ]
- ],
- [
- [
- [
- 1.0739140510559082
- ]
- ]
- ],
- [
- [
- [
- 1.0675075054168701
- ]
- ]
- ],
- [
- [
- [
- 0.9242190718650818
- ]
- ]
- ],
- [
- [
- [
- 1.1382657289505005
- ]
- ]
- ],
- [
- [
- [
- 1.0403072834014893
- ]
- ]
- ],
- [
- [
- [
- 1.1370315551757812
- ]
- ]
- ],
- [
- [
- [
- 0.9231918454170227
- ]
- ]
- ],
- [
- [
- [
- 1.1595697402954102
- ]
- ]
- ],
- [
- [
- [
- 1.2384108304977417
- ]
- ]
- ],
- [
- [
- [
- 1.1984539031982422
- ]
- ]
- ],
- [
- [
- [
- 0.9855936765670776
- ]
- ]
- ],
- [
- [
- [
- 0.8974236845970154
- ]
- ]
- ],
- [
- [
- [
- 0.9669147729873657
- ]
- ]
- ],
- [
- [
- [
- 0.9588724374771118
- ]
- ]
- ],
- [
- [
- [
- 1.0779979228973389
- ]
- ]
- ],
- [
- [
- [
- 1.5036675930023193
- ]
- ]
- ],
- [
- [
- [
- 1.085407018661499
- ]
- ]
- ],
- [
- [
- [
- 0.9511837959289551
- ]
- ]
- ],
- [
- [
- [
- 1.1415632963180542
- ]
- ]
- ],
- [
- [
- [
- 0.995284914970398
- ]
- ]
- ],
- [
- [
- [
- 1.0743579864501953
- ]
- ]
- ],
- [
- [
- [
- 1.1048157215118408
- ]
- ]
- ],
- [
- [
- [
- 0.8877156972885132
- ]
- ]
- ],
- [
- [
- [
- 1.061960220336914
- ]
- ]
- ],
- [
- [
- [
- 0.8511340618133545
- ]
- ]
- ],
- [
- [
- [
- 0.9933391213417053
- ]
- ]
- ],
- [
- [
- [
- 1.0546026229858398
- ]
- ]
- ],
- [
- [
- [
- 1.1471015214920044
- ]
- ]
- ],
- [
- [
- [
- 1.0036520957946777
- ]
- ]
- ],
- [
- [
- [
- 1.0422816276550293
- ]
- ]
- ],
- [
- [
- [
- 0.9623719453811646
- ]
- ]
- ],
- [
- [
- [
- 1.0570905208587646
- ]
- ]
- ],
- [
- [
- [
- 0.9814915657043457
- ]
- ]
- ],
- [
- [
- [
- 1.0998843908309937
- ]
- ]
- ],
- [
- [
- [
- 1.0130168199539185
- ]
- ]
- ],
- [
- [
- [
- 1.1490646600723267
- ]
- ]
- ],
- [
- [
- [
- 1.2486684322357178
- ]
- ]
- ],
- [
- [
- [
- 1.28632390499115
- ]
- ]
- ],
- [
- [
- [
- 0.9732431173324585
- ]
- ]
- ],
- [
- [
- [
- 1.090385913848877
- ]
- ]
- ],
- [
- [
- [
- 1.0271539688110352
- ]
- ]
- ],
- [
- [
- [
- 1.175118088722229
- ]
- ]
- ],
- [
- [
- [
- 1.0271024703979492
- ]
- ]
- ],
- [
- [
- [
- 1.0429068803787231
- ]
- ]
- ],
- [
- [
- [
- 1.3355507850646973
- ]
- ]
- ],
- [
- [
- [
- 1.0986449718475342
- ]
- ]
- ],
- [
- [
- [
- 0.9025618433952332
- ]
- ]
- ],
- [
- [
- [
- 0.9742262363433838
- ]
- ]
- ],
- [
- [
- [
- 1.079102873802185
- ]
- ]
- ],
- [
- [
- [
- 1.0656567811965942
- ]
- ]
- ],
- [
- [
- [
- 0.8870715498924255
- ]
- ]
- ],
- [
- [
- [
- 1.180302619934082
- ]
- ]
- ],
- [
- [
- [
- 1.0591682195663452
- ]
- ]
- ],
- [
- [
- [
- 1.3211504220962524
- ]
- ]
- ],
- [
- [
- [
- 1.2522222995758057
- ]
- ]
- ],
- [
- [
- [
- 0.9193216562271118
- ]
- ]
- ],
- [
- [
- [
- 0.9008913636207581
- ]
- ]
- ],
- [
- [
- [
- 1.2300808429718018
- ]
- ]
- ],
- [
- [
- [
- 1.063359260559082
- ]
- ]
- ],
- [
- [
- [
- 1.6895217895507812
- ]
- ]
- ],
- [
- [
- [
- 0.8930205702781677
- ]
- ]
- ],
- [
- [
- [
- 0.9828954935073853
- ]
- ]
- ],
- [
- [
- [
- 0.9596538543701172
- ]
- ]
- ],
- [
- [
- [
- 1.2376537322998047
- ]
- ]
- ],
- [
- [
- [
- 1.0304819345474243
- ]
- ]
- ],
- [
- [
- [
- 1.133754014968872
- ]
- ]
- ],
- [
- [
- [
- 1.1909630298614502
- ]
- ]
- ],
- [
- [
- [
- 1.1091370582580566
- ]
- ]
- ],
- [
- [
- [
- 1.1710139513015747
- ]
- ]
- ],
- [
- [
- [
- 1.2166528701782227
- ]
- ]
- ],
- [
- [
- [
- 1.1042399406433105
- ]
- ]
- ],
- [
- [
- [
- 0.9472065567970276
- ]
- ]
- ],
- [
- [
- [
- 0.9535732269287109
- ]
- ]
- ],
- [
- [
- [
- 1.4094656705856323
- ]
- ]
- ],
- [
- [
- [
- 0.9438491463661194
- ]
- ]
- ],
- [
- [
- [
- 0.9314394593238831
- ]
- ]
- ],
- [
- [
- [
- 1.2167338132858276
- ]
- ]
- ],
- [
- [
- [
- 1.084581971168518
- ]
- ]
- ],
- [
- [
- [
- 0.9906135201454163
- ]
- ]
- ],
- [
- [
- [
- 1.109767198562622
- ]
- ]
- ],
- [
- [
- [
- 1.1694353818893433
- ]
- ]
- ],
- [
- [
- [
- 0.9967679977416992
- ]
- ]
- ],
- [
- [
- [
- 0.9304764866828918
- ]
- ]
- ],
- [
- [
- [
- 1.2569602727890015
- ]
- ]
- ],
- [
- [
- [
- 1.4095278978347778
- ]
- ]
- ],
- [
- [
- [
- 1.1177442073822021
- ]
- ]
- ],
- [
- [
- [
- 1.1069436073303223
- ]
- ]
- ],
- [
- [
- [
- 1.4498186111450195
- ]
- ]
- ],
- [
- [
- [
- 1.1434459686279297
- ]
- ]
- ],
- [
- [
- [
- 1.0918574333190918
- ]
- ]
- ],
- [
- [
- [
- 1.0191292762756348
- ]
- ]
- ],
- [
- [
- [
- 1.0982662439346313
- ]
- ]
- ],
- [
- [
- [
- 1.1418126821517944
- ]
- ]
- ],
- [
- [
- [
- 0.9569193124771118
- ]
- ]
- ],
- [
- [
- [
- 0.9890464544296265
- ]
- ]
- ],
- [
- [
- [
- 0.9381627440452576
- ]
- ]
- ],
- [
- [
- [
- 1.0574634075164795
- ]
- ]
- ],
- [
- [
- [
- 1.0875447988510132
- ]
- ]
- ],
- [
- [
- [
- 1.070379376411438
- ]
- ]
- ],
- [
- [
- [
- 0.9775957465171814
- ]
- ]
- ],
- [
- [
- [
- 1.0251274108886719
- ]
- ]
- ],
- [
- [
- [
- 1.1181633472442627
- ]
- ]
- ],
- [
- [
- [
- 1.0554866790771484
- ]
- ]
- ],
- [
- [
- [
- 0.8782362341880798
- ]
- ]
- ],
- [
- [
- [
- 1.081396222114563
- ]
- ]
- ],
- [
- [
- [
- 0.999630868434906
- ]
- ]
- ],
- [
- [
- [
- 1.0213637351989746
- ]
- ]
- ],
- [
- [
- [
- 1.0546178817749023
- ]
- ]
- ],
- [
- [
- [
- 0.9052988886833191
- ]
- ]
- ],
- [
- [
- [
- 1.1843880414962769
- ]
- ]
- ],
- [
- [
- [
- 1.0908010005950928
- ]
- ]
- ],
- [
- [
- [
- 0.8818742036819458
- ]
- ]
- ],
- [
- [
- [
- 0.9863035678863525
- ]
- ]
- ],
- [
- [
- [
- 1.0003252029418945
- ]
- ]
- ],
- [
- [
- [
- 1.356971025466919
- ]
- ]
- ],
- [
- [
- [
- 0.9092697501182556
- ]
- ]
- ],
- [
- [
- [
- 0.974674642086029
- ]
- ]
- ],
- [
- [
- [
- 1.1732672452926636
- ]
- ]
- ],
- [
- [
- [
- 1.048018455505371
- ]
- ]
- ],
- [
- [
- [
- 1.0168042182922363
- ]
- ]
- ],
- [
- [
- [
- 1.164398431777954
- ]
- ]
- ],
- [
- [
- [
- 1.1958274841308594
- ]
- ]
- ],
- [
- [
- [
- 1.0630402565002441
- ]
- ]
- ],
- [
- [
- [
- 0.9315245151519775
- ]
- ]
- ],
- [
- [
- [
- 0.9949636459350586
- ]
- ]
- ],
- [
- [
- [
- 1.2398091554641724
- ]
- ]
- ],
- [
- [
- [
- 1.1028319597244263
- ]
- ]
- ],
- [
- [
- [
- 1.0009875297546387
- ]
- ]
- ],
- [
- [
- [
- 0.8744645714759827
- ]
- ]
- ],
- [
- [
- [
- 1.1580833196640015
- ]
- ]
- ],
- [
- [
- [
- 0.8973917365074158
- ]
- ]
- ],
- [
- [
- [
- 1.0696721076965332
- ]
- ]
- ],
- [
- [
- [
- 0.8751872181892395
- ]
- ]
- ],
- [
- [
- [
- 1.0858561992645264
- ]
- ]
- ],
- [
- [
- [
- 0.956839382648468
- ]
- ]
- ],
- [
- [
- [
- 1.0391230583190918
- ]
- ]
- ],
- [
- [
- [
- 1.2111361026763916
- ]
- ]
- ],
- [
- [
- [
- 0.9947336316108704
- ]
- ]
- ],
- [
- [
- [
- 0.9011788368225098
- ]
- ]
- ],
- [
- [
- [
- 1.0902773141860962
- ]
- ]
- ],
- [
- [
- [
- 1.2022267580032349
- ]
- ]
- ],
- [
- [
- [
- 1.0447752475738525
- ]
- ]
- ],
- [
- [
- [
- 0.9791738986968994
- ]
- ]
- ],
- [
- [
- [
- 0.975117027759552
- ]
- ]
- ],
- [
- [
- [
- 1.0790438652038574
- ]
- ]
- ],
- [
- [
- [
- 1.0845134258270264
- ]
- ]
- ],
- [
- [
- [
- 0.9572739601135254
- ]
- ]
- ],
- [
- [
- [
- 1.0808404684066772
- ]
- ]
- ],
- [
- [
- [
- 1.039548397064209
- ]
- ]
- ],
- [
- [
- [
- 0.9536731243133545
- ]
- ]
- ],
- [
- [
- [
- 0.9342179298400879
- ]
- ]
- ],
- [
- [
- [
- 0.9340324997901917
- ]
- ]
- ],
- [
- [
- [
- 0.9412869811058044
- ]
- ]
- ],
- [
- [
- [
- 0.9349332451820374
- ]
- ]
- ],
- [
- [
- [
- 1.258759617805481
- ]
- ]
- ],
- [
- [
- [
- 1.3072147369384766
- ]
- ]
- ],
- [
- [
- [
- 1.3572763204574585
- ]
- ]
- ],
- [
- [
- [
- 1.007968783378601
- ]
- ]
- ],
- [
- [
- [
- 0.8810752630233765
- ]
- ]
- ],
- [
- [
- [
- 1.0278948545455933
- ]
- ]
- ],
- [
- [
- [
- 0.8891944885253906
- ]
- ]
- ],
- [
- [
- [
- 0.8978524804115295
- ]
- ]
- ],
- [
- [
- [
- 1.0035778284072876
- ]
- ]
- ],
- [
- [
- [
- 1.1754200458526611
- ]
- ]
- ],
- [
- [
- [
- 1.1995974779129028
- ]
- ]
- ],
- [
- [
- [
- 1.2424542903900146
- ]
- ]
- ],
- [
- [
- [
- 0.9533348083496094
- ]
- ]
- ],
- [
- [
- [
- 0.9028401970863342
- ]
- ]
- ],
- [
- [
- [
- 0.8905308842658997
- ]
- ]
- ],
- [
- [
- [
- 0.9136421084403992
- ]
- ]
- ],
- [
- [
- [
- 1.0208842754364014
- ]
- ]
- ],
- [
- [
- [
- 1.249997854232788
- ]
- ]
- ],
- [
- [
- [
- 0.9038533568382263
- ]
- ]
- ],
- [
- [
- [
- 1.0959959030151367
- ]
- ]
- ],
- [
- [
- [
- 1.0703538656234741
- ]
- ]
- ],
- [
- [
- [
- 0.9960085153579712
- ]
- ]
- ],
- [
- [
- [
- 1.1064180135726929
- ]
- ]
- ],
- [
- [
- [
- 1.0244805812835693
- ]
- ]
- ],
- [
- [
- [
- 1.1023123264312744
- ]
- ]
- ],
- [
- [
- [
- 1.1334660053253174
- ]
- ]
- ],
- [
- [
- [
- 1.1243915557861328
- ]
- ]
- ],
- [
- [
- [
- 1.038134217262268
- ]
- ]
- ],
- [
- [
- [
- 0.9326073527336121
- ]
- ]
- ],
- [
- [
- [
- 0.9266437888145447
- ]
- ]
- ],
- [
- [
- [
- 0.9886530637741089
- ]
- ]
- ],
- [
- [
- [
- 1.3859061002731323
- ]
- ]
- ],
- [
- [
- [
- 1.0442261695861816
- ]
- ]
- ],
- [
- [
- [
- 1.1705939769744873
- ]
- ]
- ],
- [
- [
- [
- 0.9767018556594849
- ]
- ]
- ],
- [
- [
- [
- 0.9926846623420715
- ]
- ]
- ],
- [
- [
- [
- 1.128870964050293
- ]
- ]
- ],
- [
- [
- [
- 0.9656462669372559
- ]
- ]
- ],
- [
- [
- [
- 1.0403693914413452
- ]
- ]
- ],
- [
- [
- [
- 1.192579746246338
- ]
- ]
- ],
- [
- [
- [
- 1.0518159866333008
- ]
- ]
- ],
- [
- [
- [
- 0.9633121490478516
- ]
- ]
- ],
- [
- [
- [
- 1.0014386177062988
- ]
- ]
- ],
- [
- [
- [
- 0.8739585280418396
- ]
- ]
- ],
- [
- [
- [
- 1.1564912796020508
- ]
- ]
- ],
- [
- [
- [
- 1.1049473285675049
- ]
- ]
- ],
- [
- [
- [
- 0.9471585154533386
- ]
- ]
- ],
- [
- [
- [
- 1.0494964122772217
- ]
- ]
- ],
- [
- [
- [
- 1.0051406621932983
- ]
- ]
- ],
- [
- [
- [
- 0.9241628646850586
- ]
- ]
- ],
- [
- [
- [
- 1.2139900922775269
- ]
- ]
- ],
- [
- [
- [
- 0.8791210651397705
- ]
- ]
- ],
- [
- [
- [
- 1.0671290159225464
- ]
- ]
- ],
- [
- [
- [
- 1.2966636419296265
- ]
- ]
- ],
- [
- [
- [
- 1.0498162508010864
- ]
- ]
- ],
- [
- [
- [
- 1.2444278001785278
- ]
- ]
- ],
- [
- [
- [
- 0.8769262433052063
- ]
- ]
- ],
- [
- [
- [
- 1.057062029838562
- ]
- ]
- ],
- [
- [
- [
- 1.0791765451431274
- ]
- ]
- ],
- [
- [
- [
- 0.8913027048110962
- ]
- ]
- ],
- [
- [
- [
- 1.0281563997268677
- ]
- ]
- ],
- [
- [
- [
- 1.0479307174682617
- ]
- ]
- ],
- [
- [
- [
- 1.0180803537368774
- ]
- ]
- ],
- [
- [
- [
- 1.0311634540557861
- ]
- ]
- ],
- [
- [
- [
- 0.9627006649971008
- ]
- ]
- ],
- [
- [
- [
- 1.1538949012756348
- ]
- ]
- ],
- [
- [
- [
- 1.276624083518982
- ]
- ]
- ],
- [
- [
- [
- 1.0041576623916626
- ]
- ]
- ],
- [
- [
- [
- 0.9421504735946655
- ]
- ]
- ],
- [
- [
- [
- 1.10451340675354
- ]
- ]
- ],
- [
- [
- [
- 0.9514027833938599
- ]
- ]
- ],
- [
- [
- [
- 0.8607175350189209
- ]
- ]
- ],
- [
- [
- [
- 1.0594812631607056
- ]
- ]
- ],
- [
- [
- [
- 1.1915260553359985
- ]
- ]
- ],
- [
- [
- [
- 1.2745659351348877
- ]
- ]
- ],
- [
- [
- [
- 1.3023194074630737
- ]
- ]
- ],
- [
- [
- [
- 1.1491321325302124
- ]
- ]
- ],
- [
- [
- [
- 1.1788514852523804
- ]
- ]
- ],
- [
- [
- [
- 1.041752815246582
- ]
- ]
- ],
- [
- [
- [
- 1.0274423360824585
- ]
- ]
- ],
- [
- [
- [
- 1.0060992240905762
- ]
- ]
- ],
- [
- [
- [
- 1.043733835220337
- ]
- ]
- ],
- [
- [
- [
- 1.0043559074401855
- ]
- ]
- ],
- [
- [
- [
- 1.242361307144165
- ]
- ]
- ],
- [
- [
- [
- 1.0917469263076782
- ]
- ]
- ],
- [
- [
- [
- 0.8868166208267212
- ]
- ]
- ],
- [
- [
- [
- 1.1185859441757202
- ]
- ]
- ],
- [
- [
- [
- 1.215065836906433
- ]
- ]
- ],
- [
- [
- [
- 1.1409235000610352
- ]
- ]
- ],
- [
- [
- [
- 1.3653721809387207
- ]
- ]
- ],
- [
- [
- [
- 1.0264019966125488
- ]
- ]
- ],
- [
- [
- [
- 1.0741392374038696
- ]
- ]
- ],
- [
- [
- [
- 1.0314425230026245
- ]
- ]
- ],
- [
- [
- [
- 1.0425899028778076
- ]
- ]
- ],
- [
- [
- [
- 1.2318168878555298
- ]
- ]
- ],
- [
- [
- [
- 1.0735887289047241
- ]
- ]
- ],
- [
- [
- [
- 0.9825544357299805
- ]
- ]
- ],
- [
- [
- [
- 1.2492674589157104
- ]
- ]
- ],
- [
- [
- [
- 1.0203065872192383
- ]
- ]
- ],
- [
- [
- [
- 1.081558108329773
- ]
- ]
- ],
- [
- [
- [
- 0.937170684337616
- ]
- ]
- ],
- [
- [
- [
- 0.9265850186347961
- ]
- ]
- ],
- [
- [
- [
- 1.0881130695343018
- ]
- ]
- ],
- [
- [
- [
- 0.9770416617393494
- ]
- ]
- ],
- [
- [
- [
- 1.2899556159973145
- ]
- ]
- ],
- [
- [
- [
- 0.9241189360618591
- ]
- ]
- ],
- [
- [
- [
- 1.2112699747085571
- ]
- ]
- ],
- [
- [
- [
- 0.8882724046707153
- ]
- ]
- ],
- [
- [
- [
- 1.0282716751098633
- ]
- ]
- ],
- [
- [
- [
- 0.9828348755836487
- ]
- ]
- ],
- [
- [
- [
- 1.0737230777740479
- ]
- ]
- ],
- [
- [
- [
- 0.9871606230735779
- ]
- ]
- ],
- [
- [
- [
- 0.9771016836166382
- ]
- ]
- ],
- [
- [
- [
- 0.9747909307479858
- ]
- ]
- ],
- [
- [
- [
- 1.1770833730697632
- ]
- ]
- ],
- [
- [
- [
- 0.8328016400337219
- ]
- ]
- ],
- [
- [
- [
- 1.443938970565796
- ]
- ]
- ],
- [
- [
- [
- 1.0111873149871826
- ]
- ]
- ],
- [
- [
- [
- 1.174965500831604
- ]
- ]
- ],
- [
- [
- [
- 0.9433943629264832
- ]
- ]
- ],
- [
- [
- [
- 0.9464369416236877
- ]
- ]
- ],
- [
- [
- [
- 1.1407573223114014
- ]
- ]
- ],
- [
- [
- [
- 0.9741951823234558
- ]
- ]
- ],
- [
- [
- [
- 1.0612951517105103
- ]
- ]
- ],
- [
- [
- [
- 1.1312328577041626
- ]
- ]
- ],
- [
- [
- [
- 0.9462396502494812
- ]
- ]
- ],
- [
- [
- [
- 0.8338273763656616
- ]
- ]
- ],
- [
- [
- [
- 0.9607547521591187
- ]
- ]
- ],
- [
- [
- [
- 0.9146403074264526
- ]
- ]
- ],
- [
- [
- [
- 0.9611701369285583
- ]
- ]
- ],
- [
- [
- [
- 1.1471474170684814
- ]
- ]
- ],
- [
- [
- [
- 1.1801178455352783
- ]
- ]
- ],
- [
- [
- [
- 1.1448014974594116
- ]
- ]
- ],
- [
- [
- [
- 0.9068194031715393
- ]
- ]
- ],
- [
- [
- [
- 1.0315921306610107
- ]
- ]
- ],
- [
- [
- [
- 0.9900477528572083
- ]
- ]
- ],
- [
- [
- [
- 0.9586200714111328
- ]
- ]
- ],
- [
- [
- [
- 1.0193208456039429
- ]
- ]
- ],
- [
- [
- [
- 0.9869599938392639
- ]
- ]
- ],
- [
- [
- [
- 1.0661892890930176
- ]
- ]
- ],
- [
- [
- [
- 1.1352925300598145
- ]
- ]
- ],
- [
- [
- [
- 1.2916767597198486
- ]
- ]
- ],
- [
- [
- [
- 1.1136655807495117
- ]
- ]
- ],
- [
- [
- [
- 1.2857850790023804
- ]
- ]
- ],
- [
- [
- [
- 1.0083401203155518
- ]
- ]
- ],
- [
- [
- [
- 0.9288949966430664
- ]
- ]
- ],
- [
- [
- [
- 1.1385548114776611
- ]
- ]
- ],
- [
- [
- [
- 0.8625121116638184
- ]
- ]
- ],
- [
- [
- [
- 1.2757608890533447
- ]
- ]
- ],
- [
- [
- [
- 1.0160857439041138
- ]
- ]
- ],
- [
- [
- [
- 1.072108268737793
- ]
- ]
- ],
- [
- [
- [
- 0.8454800248146057
- ]
- ]
- ],
- [
- [
- [
- 1.2928614616394043
- ]
- ]
- ],
- [
- [
- [
- 1.1194101572036743
- ]
- ]
- ],
- [
- [
- [
- 0.9775660037994385
- ]
- ]
- ],
- [
- [
- [
- 0.9476670622825623
- ]
- ]
- ],
- [
- [
- [
- 0.924085259437561
- ]
- ]
- ],
- [
- [
- [
- 0.948512852191925
- ]
- ]
- ],
- [
- [
- [
- 0.9827684760093689
- ]
- ]
- ],
- [
- [
- [
- 1.1721360683441162
- ]
- ]
- ],
- [
- [
- [
- 0.9274629950523376
- ]
- ]
- ],
- [
- [
- [
- 0.9326360821723938
- ]
- ]
- ],
- [
- [
- [
- 0.9119270443916321
- ]
- ]
- ],
- [
- [
- [
- 1.1501086950302124
- ]
- ]
- ],
- [
- [
- [
- 0.9949315190315247
- ]
- ]
- ],
- [
- [
- [
- 1.081493854522705
- ]
- ]
- ],
- [
- [
- [
- 1.0049703121185303
- ]
- ]
- ],
- [
- [
- [
- 1.0624843835830688
- ]
- ]
- ],
- [
- [
- [
- 1.1247005462646484
- ]
- ]
- ],
- [
- [
- [
- 1.0666905641555786
- ]
- ]
- ],
- [
- [
- [
- 0.9057600498199463
- ]
- ]
- ],
- [
- [
- [
- 0.9993549585342407
- ]
- ]
- ],
- [
- [
- [
- 1.0748307704925537
- ]
- ]
- ],
- [
- [
- [
- 0.8645081520080566
- ]
- ]
- ],
- [
- [
- [
- 1.0128540992736816
- ]
- ]
- ],
- [
- [
- [
- 1.1865665912628174
- ]
- ]
- ],
- [
- [
- [
- 1.0805553197860718
- ]
- ]
- ],
- [
- [
- [
- 0.9412241578102112
- ]
- ]
- ],
- [
- [
- [
- 1.0709384679794312
- ]
- ]
- ],
- [
- [
- [
- 1.074902892112732
- ]
- ]
- ],
- [
- [
- [
- 0.9770339727401733
- ]
- ]
- ],
- [
- [
- [
- 1.1531246900558472
- ]
- ]
- ],
- [
- [
- [
- 1.045769214630127
- ]
- ]
- ],
- [
- [
- [
- 0.8681127429008484
- ]
- ]
- ],
- [
- [
- [
- 1.0733221769332886
- ]
- ]
- ],
- [
- [
- [
- 1.1108791828155518
- ]
- ]
- ],
- [
- [
- [
- 1.1578302383422852
- ]
- ]
- ],
- [
- [
- [
- 1.0519989728927612
- ]
- ]
- ],
- [
- [
- [
- 1.064167857170105
- ]
- ]
- ],
- [
- [
- [
- 0.9444636106491089
- ]
- ]
- ],
- [
- [
- [
- 1.1508172750473022
- ]
- ]
- ],
- [
- [
- [
- 1.0227632522583008
- ]
- ]
- ],
- [
- [
- [
- 1.1821093559265137
- ]
- ]
- ],
- [
- [
- [
- 1.0196737051010132
- ]
- ]
- ],
- [
- [
- [
- 0.9042742252349854
- ]
- ]
- ],
- [
- [
- [
- 0.9510952234268188
- ]
- ]
- ],
- [
- [
- [
- 1.1046959161758423
- ]
- ]
- ],
- [
- [
- [
- 1.0874121189117432
- ]
- ]
- ],
- [
- [
- [
- 1.0555789470672607
- ]
- ]
- ],
- [
- [
- [
- 0.9716154932975769
- ]
- ]
- ],
- [
- [
- [
- 1.1370609998703003
- ]
- ]
- ],
- [
- [
- [
- 0.8890295624732971
- ]
- ]
- ],
- [
- [
- [
- 1.076837182044983
- ]
- ]
- ],
- [
- [
- [
- 1.2104840278625488
- ]
- ]
- ],
- [
- [
- [
- 1.001082181930542
- ]
- ]
- ],
- [
- [
- [
- 1.0418784618377686
- ]
- ]
- ],
- [
- [
- [
- 1.1214569807052612
- ]
- ]
- ],
- [
- [
- [
- 1.0205363035202026
- ]
- ]
- ],
- [
- [
- [
- 0.949020266532898
- ]
- ]
- ],
- [
- [
- [
- 0.9941352605819702
- ]
- ]
- ],
- [
- [
- [
- 1.0550471544265747
- ]
- ]
- ],
- [
- [
- [
- 1.1806210279464722
- ]
- ]
- ],
- [
- [
- [
- 1.063831090927124
- ]
- ]
- ],
- [
- [
- [
- 0.9540398716926575
- ]
- ]
- ],
- [
- [
- [
- 1.3580119609832764
- ]
- ]
- ],
- [
- [
- [
- 1.0793349742889404
- ]
- ]
- ],
- [
- [
- [
- 1.105453372001648
- ]
- ]
- ],
- [
- [
- [
- 1.153299331665039
- ]
- ]
- ],
- [
- [
- [
- 1.4000060558319092
- ]
- ]
- ],
- [
- [
- [
- 0.9018593430519104
- ]
- ]
- ],
- [
- [
- [
- 1.1524367332458496
- ]
- ]
- ],
- [
- [
- [
- 1.1427441835403442
- ]
- ]
- ],
- [
- [
- [
- 1.062362551689148
- ]
- ]
- ],
- [
- [
- [
- 1.1045435667037964
- ]
- ]
- ],
- [
- [
- [
- 1.2931828498840332
- ]
- ]
- ],
- [
- [
- [
- 0.9359686374664307
- ]
- ]
- ],
- [
- [
- [
- 0.9755357503890991
- ]
- ]
- ],
- [
- [
- [
- 0.946886420249939
- ]
- ]
- ],
- [
- [
- [
- 0.8571058511734009
- ]
- ]
- ],
- [
- [
- [
- 1.0224840641021729
- ]
- ]
- ],
- [
- [
- [
- 0.9571502804756165
- ]
- ]
- ],
- [
- [
- [
- 0.8671402335166931
- ]
- ]
- ],
- [
- [
- [
- 1.0481683015823364
- ]
- ]
- ],
- [
- [
- [
- 1.0317639112472534
- ]
- ]
- ],
- [
- [
- [
- 1.2178491353988647
- ]
- ]
- ],
- [
- [
- [
- 1.008280873298645
- ]
- ]
- ],
- [
- [
- [
- 0.9531464576721191
- ]
- ]
- ],
- [
- [
- [
- 1.0938166379928589
- ]
- ]
- ],
- [
- [
- [
- 0.8070809245109558
- ]
- ]
- ],
- [
- [
- [
- 0.8963366150856018
- ]
- ]
- ],
- [
- [
- [
- 0.9782972931861877
- ]
- ]
- ],
- [
- [
- [
- 1.207140564918518
- ]
- ]
- ],
- [
- [
- [
- 0.8975882530212402
- ]
- ]
- ],
- [
- [
- [
- 1.0835970640182495
- ]
- ]
- ],
- [
- [
- [
- 0.9120482206344604
- ]
- ]
- ],
- [
- [
- [
- 0.9942784309387207
- ]
- ]
- ],
- [
- [
- [
- 1.1974923610687256
- ]
- ]
- ],
- [
- [
- [
- 1.0429184436798096
- ]
- ]
- ],
- [
- [
- [
- 0.8633242249488831
- ]
- ]
- ],
- [
- [
- [
- 0.9132651090621948
- ]
- ]
- ],
- [
- [
- [
- 0.9730945825576782
- ]
- ]
- ],
- [
- [
- [
- 1.0051466226577759
- ]
- ]
- ],
- [
- [
- [
- 1.1378281116485596
- ]
- ]
- ],
- [
- [
- [
- 1.0244734287261963
- ]
- ]
- ],
- [
- [
- [
- 0.8485549688339233
- ]
- ]
- ],
- [
- [
- [
- 1.0585641860961914
- ]
- ]
- ],
- [
- [
- [
- 0.9116373658180237
- ]
- ]
- ],
- [
- [
- [
- 1.0814012289047241
- ]
- ]
- ],
- [
- [
- [
- 0.8764873147010803
- ]
- ]
- ],
- [
- [
- [
- 0.9200323224067688
- ]
- ]
- ],
- [
- [
- [
- 1.1397144794464111
- ]
- ]
- ],
- [
- [
- [
- 1.0758315324783325
- ]
- ]
- ],
- [
- [
- [
- 0.9473378658294678
- ]
- ]
- ],
- [
- [
- [
- 0.8864887356758118
- ]
- ]
- ],
- [
- [
- [
- 1.027967929840088
- ]
- ]
- ],
- [
- [
- [
- 1.0994118452072144
- ]
- ]
- ],
- [
- [
- [
- 1.3142101764678955
- ]
- ]
- ],
- [
- [
- [
- 0.9950578212738037
- ]
- ]
- ],
- [
- [
- [
- 0.954127311706543
- ]
- ]
- ],
- [
- [
- [
- 1.0410901308059692
- ]
- ]
- ],
- [
- [
- [
- 1.0565950870513916
- ]
- ]
- ],
- [
- [
- [
- 1.037336826324463
- ]
- ]
- ],
- [
- [
- [
- 1.0508824586868286
- ]
- ]
- ],
- [
- [
- [
- 1.0649062395095825
- ]
- ]
- ],
- [
- [
- [
- 1.2643682956695557
- ]
- ]
- ],
- [
- [
- [
- 1.1107748746871948
- ]
- ]
- ],
- [
- [
- [
- 1.126798152923584
- ]
- ]
- ],
- [
- [
- [
- 0.9122111797332764
- ]
- ]
- ],
- [
- [
- [
- 0.9524283409118652
- ]
- ]
- ],
- [
- [
- [
- 1.2405966520309448
- ]
- ]
- ],
- [
- [
- [
- 1.1679342985153198
- ]
- ]
- ],
- [
- [
- [
- 1.0392626523971558
- ]
- ]
- ],
- [
- [
- [
- 0.8760585188865662
- ]
- ]
- ],
- [
- [
- [
- 0.8741157054901123
- ]
- ]
- ],
- [
- [
- [
- 0.9548141360282898
- ]
- ]
- ],
- [
- [
- [
- 0.9706990122795105
- ]
- ]
- ],
- [
- [
- [
- 1.1455386877059937
- ]
- ]
- ],
- [
- [
- [
- 0.8311827778816223
- ]
- ]
- ],
- [
- [
- [
- 0.8358185887336731
- ]
- ]
- ],
- [
- [
- [
- 0.9647719264030457
- ]
- ]
- ],
- [
- [
- [
- 1.0174694061279297
- ]
- ]
- ],
- [
- [
- [
- 1.0811899900436401
- ]
- ]
- ],
- [
- [
- [
- 1.0228279829025269
- ]
- ]
- ],
- [
- [
- [
- 1.3363714218139648
- ]
- ]
- ],
- [
- [
- [
- 1.202298879623413
- ]
- ]
- ],
- [
- [
- [
- 0.9641047120094299
- ]
- ]
- ],
- [
- [
- [
- 1.1036877632141113
- ]
- ]
- ],
- [
- [
- [
- 1.044417381286621
- ]
- ]
- ],
- [
- [
- [
- 1.2973098754882812
- ]
- ]
- ],
- [
- [
- [
- 1.3021875619888306
- ]
- ]
- ],
- [
- [
- [
- 0.9591345191001892
- ]
- ]
- ],
- [
- [
- [
- 0.9549047946929932
- ]
- ]
- ],
- [
- [
- [
- 0.9558269381523132
- ]
- ]
- ],
- [
- [
- [
- 1.1656184196472168
- ]
- ]
- ],
- [
- [
- [
- 1.3799079656600952
- ]
- ]
- ],
- [
- [
- [
- 1.1299395561218262
- ]
- ]
- ],
- [
- [
- [
- 1.0141754150390625
- ]
- ]
- ],
- [
- [
- [
- 0.8755527138710022
- ]
- ]
- ],
- [
- [
- [
- 0.9361050128936768
- ]
- ]
- ],
- [
- [
- [
- 0.968070387840271
- ]
- ]
- ],
- [
- [
- [
- 0.9279971718788147
- ]
- ]
- ],
- [
- [
- [
- 1.1448434591293335
- ]
- ]
- ],
- [
- [
- [
- 0.858123242855072
- ]
- ]
- ],
- [
- [
- [
- 1.1218311786651611
- ]
- ]
- ],
- [
- [
- [
- 0.97364342212677
- ]
- ]
- ],
- [
- [
- [
- 1.0089670419692993
- ]
- ]
- ],
- [
- [
- [
- 1.1893596649169922
- ]
- ]
- ],
- [
- [
- [
- 1.1618074178695679
- ]
- ]
- ],
- [
- [
- [
- 1.0006062984466553
- ]
- ]
- ],
- [
- [
- [
- 1.0363999605178833
- ]
- ]
- ],
- [
- [
- [
- 1.4448304176330566
- ]
- ]
- ],
- [
- [
- [
- 0.9783505797386169
- ]
- ]
- ],
- [
- [
- [
- 1.063950538635254
- ]
- ]
- ],
- [
- [
- [
- 1.2171812057495117
- ]
- ]
- ],
- [
- [
- [
- 0.9537957906723022
- ]
- ]
- ],
- [
- [
- [
- 1.0810315608978271
- ]
- ]
- ],
- [
- [
- [
- 1.116645097732544
- ]
- ]
- ],
- [
- [
- [
- 0.9056975245475769
- ]
- ]
- ],
- [
- [
- [
- 1.2064576148986816
- ]
- ]
- ],
- [
- [
- [
- 1.0363768339157104
- ]
- ]
- ],
- [
- [
- [
- 0.8926680088043213
- ]
- ]
- ],
- [
- [
- [
- 0.988464891910553
- ]
- ]
- ],
- [
- [
- [
- 1.2780306339263916
- ]
- ]
- ],
- [
- [
- [
- 0.9857171773910522
- ]
- ]
- ],
- [
- [
- [
- 1.25666344165802
- ]
- ]
- ],
- [
- [
- [
- 0.8698002696037292
- ]
- ]
- ],
- [
- [
- [
- 0.9867891669273376
- ]
- ]
- ],
- [
- [
- [
- 0.8669582009315491
- ]
- ]
- ],
- [
- [
- [
- 0.9488417506217957
- ]
- ]
- ],
- [
- [
- [
- 0.9466429948806763
- ]
- ]
- ],
- [
- [
- [
- 0.7996994256973267
- ]
- ]
- ],
- [
- [
- [
- 0.9027645587921143
- ]
- ]
- ],
- [
- [
- [
- 0.8893091082572937
- ]
- ]
- ],
- [
- [
- [
- 0.9615079760551453
- ]
- ]
- ],
- [
- [
- [
- 0.9414946436882019
- ]
- ]
- ],
- [
- [
- [
- 1.154750108718872
- ]
- ]
- ],
- [
- [
- [
- 0.9982889294624329
- ]
- ]
- ],
- [
- [
- [
- 0.9375662803649902
- ]
- ]
- ],
- [
- [
- [
- 1.0495917797088623
- ]
- ]
- ],
- [
- [
- [
- 0.907593846321106
- ]
- ]
- ],
- [
- [
- [
- 0.9003844857215881
- ]
- ]
- ],
- [
- [
- [
- 0.8861998319625854
- ]
- ]
- ],
- [
- [
- [
- 1.1976532936096191
- ]
- ]
- ],
- [
- [
- [
- 0.962557852268219
- ]
- ]
- ],
- [
- [
- [
- 1.0082967281341553
- ]
- ]
- ],
- [
- [
- [
- 1.0035251379013062
- ]
- ]
- ],
- [
- [
- [
- 1.176417589187622
- ]
- ]
- ],
- [
- [
- [
- 1.2831366062164307
- ]
- ]
- ],
- [
- [
- [
- 0.9748857617378235
- ]
- ]
- ],
- [
- [
- [
- 1.2109774351119995
- ]
- ]
- ],
- [
- [
- [
- 1.078963279724121
- ]
- ]
- ],
- [
- [
- [
- 1.0289831161499023
- ]
- ]
- ],
- [
- [
- [
- 1.2135554552078247
- ]
- ]
- ],
- [
- [
- [
- 1.754465103149414
- ]
- ]
- ],
- [
- [
- [
- 1.090802550315857
- ]
- ]
- ],
- [
- [
- [
- 1.0062347650527954
- ]
- ]
- ],
- [
- [
- [
- 1.3429503440856934
- ]
- ]
- ],
- [
- [
- [
- 1.1255489587783813
- ]
- ]
- ],
- [
- [
- [
- 1.0317440032958984
- ]
- ]
- ],
- [
- [
- [
- 1.179051160812378
- ]
- ]
- ],
- [
- [
- [
- 0.8333987593650818
- ]
- ]
- ],
- [
- [
- [
- 0.9396768808364868
- ]
- ]
- ],
- [
- [
- [
- 1.0890417098999023
- ]
- ]
- ],
- [
- [
- [
- 0.9309419393539429
- ]
- ]
- ],
- [
- [
- [
- 1.0102843046188354
- ]
- ]
- ],
- [
- [
- [
- 0.9432196617126465
- ]
- ]
- ],
- [
- [
- [
- 1.1532131433486938
- ]
- ]
- ],
- [
- [
- [
- 1.3022540807724
- ]
- ]
- ],
- [
- [
- [
- 1.2124758958816528
- ]
- ]
- ],
- [
- [
- [
- 0.8487300276756287
- ]
- ]
- ],
- [
- [
- [
- 1.3267371654510498
- ]
- ]
- ],
- [
- [
- [
- 1.0668996572494507
- ]
- ]
- ],
- [
- [
- [
- 1.123834490776062
- ]
- ]
- ],
- [
- [
- [
- 1.0314404964447021
- ]
- ]
- ],
- [
- [
- [
- 0.8755265474319458
- ]
- ]
- ],
- [
- [
- [
- 0.9168115854263306
- ]
- ]
- ],
- [
- [
- [
- 1.068183422088623
- ]
- ]
- ],
- [
- [
- [
- 1.1002918481826782
- ]
- ]
- ],
- [
- [
- [
- 0.9287847876548767
- ]
- ]
- ],
- [
- [
- [
- 1.0686533451080322
- ]
- ]
- ],
- [
- [
- [
- 1.1428122520446777
- ]
- ]
- ],
- [
- [
- [
- 0.9422306418418884
- ]
- ]
- ],
- [
- [
- [
- 1.0455546379089355
- ]
- ]
- ],
- [
- [
- [
- 0.9890179634094238
- ]
- ]
- ],
- [
- [
- [
- 1.0845826864242554
- ]
- ]
- ],
- [
- [
- [
- 1.0206300020217896
- ]
- ]
- ],
- [
- [
- [
- 1.0744905471801758
- ]
- ]
- ],
- [
- [
- [
- 1.0404577255249023
- ]
- ]
- ],
- [
- [
- [
- 0.8507762551307678
- ]
- ]
- ],
- [
- [
- [
- 1.1101171970367432
- ]
- ]
- ],
- [
- [
- [
- 1.165541410446167
- ]
- ]
- ],
- [
- [
- [
- 1.1639692783355713
- ]
- ]
- ],
- [
- [
- [
- 1.0935155153274536
- ]
- ]
- ],
- [
- [
- [
- 0.9642266631126404
- ]
- ]
- ],
- [
- [
- [
- 1.0703414678573608
- ]
- ]
- ],
- [
- [
- [
- 1.1228464841842651
- ]
- ]
- ],
- [
- [
- [
- 1.2027513980865479
- ]
- ]
- ],
- [
- [
- [
- 0.9062309265136719
- ]
- ]
- ],
- [
- [
- [
- 1.017543911933899
- ]
- ]
- ],
- [
- [
- [
- 0.8918632864952087
- ]
- ]
- ],
- [
- [
- [
- 0.94833904504776
- ]
- ]
- ],
- [
- [
- [
- 1.1465473175048828
- ]
- ]
- ],
- [
- [
- [
- 0.9237032532691956
- ]
- ]
- ],
- [
- [
- [
- 1.3423292636871338
- ]
- ]
- ],
- [
- [
- [
- 1.110587477684021
- ]
- ]
- ],
- [
- [
- [
- 1.0027050971984863
- ]
- ]
- ],
- [
- [
- [
- 0.859287679195404
- ]
- ]
- ],
- [
- [
- [
- 1.0727876424789429
- ]
- ]
- ],
- [
- [
- [
- 1.1240602731704712
- ]
- ]
- ],
- [
- [
- [
- 1.1620910167694092
- ]
- ]
- ],
- [
- [
- [
- 0.9728571176528931
- ]
- ]
- ],
- [
- [
- [
- 1.0243632793426514
- ]
- ]
- ],
- [
- [
- [
- 1.0096006393432617
- ]
- ]
- ],
- [
- [
- [
- 0.9416310787200928
- ]
- ]
- ],
- [
- [
- [
- 1.0457837581634521
- ]
- ]
- ],
- [
- [
- [
- 0.9331189393997192
- ]
- ]
- ],
- [
- [
- [
- 0.9473450183868408
- ]
- ]
- ],
- [
- [
- [
- 0.9231617450714111
- ]
- ]
- ],
- [
- [
- [
- 0.9393772482872009
- ]
- ]
- ],
- [
- [
- [
- 0.9252429604530334
- ]
- ]
- ],
- [
- [
- [
- 1.1057758331298828
- ]
- ]
- ],
- [
- [
- [
- 1.0021097660064697
- ]
- ]
- ],
- [
- [
- [
- 0.868303656578064
- ]
- ]
- ],
- [
- [
- [
- 1.1718151569366455
- ]
- ]
- ],
- [
- [
- [
- 1.0418108701705933
- ]
- ]
- ],
- [
- [
- [
- 1.3579179048538208
- ]
- ]
- ],
- [
- [
- [
- 0.914419412612915
- ]
- ]
- ],
- [
- [
- [
- 0.9089223742485046
- ]
- ]
- ],
- [
- [
- [
- 1.0666972398757935
- ]
- ]
- ],
- [
- [
- [
- 0.9895171523094177
- ]
- ]
- ],
- [
- [
- [
- 1.1276636123657227
- ]
- ]
- ],
- [
- [
- [
- 1.0933486223220825
- ]
- ]
- ],
- [
- [
- [
- 1.0089737176895142
- ]
- ]
- ],
- [
- [
- [
- 1.0134998559951782
- ]
- ]
- ],
- [
- [
- [
- 0.9586994051933289
- ]
- ]
- ],
- [
- [
- [
- 0.9611824154853821
- ]
- ]
- ],
- [
- [
- [
- 0.9234668612480164
- ]
- ]
- ],
- [
- [
- [
- 0.9769498109817505
- ]
- ]
- ],
- [
- [
- [
- 1.0329909324645996
- ]
- ]
- ],
- [
- [
- [
- 1.109122633934021
- ]
- ]
- ],
- [
- [
- [
- 1.016844391822815
- ]
- ]
- ],
- [
- [
- [
- 1.1730237007141113
- ]
- ]
- ],
- [
- [
- [
- 0.8907853364944458
- ]
- ]
- ],
- [
- [
- [
- 1.0471842288970947
- ]
- ]
- ],
- [
- [
- [
- 0.9165148735046387
- ]
- ]
- ],
- [
- [
- [
- 1.183213472366333
- ]
- ]
- ],
- [
- [
- [
- 0.9386231303215027
- ]
- ]
- ],
- [
- [
- [
- 1.2009954452514648
- ]
- ]
- ],
- [
- [
- [
- 0.9719381332397461
- ]
- ]
- ],
- [
- [
- [
- 0.9470806121826172
- ]
- ]
- ],
- [
- [
- [
- 1.0678826570510864
- ]
- ]
- ],
- [
- [
- [
- 0.8914904594421387
- ]
- ]
- ],
- [
- [
- [
- 1.2094393968582153
- ]
- ]
- ],
- [
- [
- [
- 1.0731004476547241
- ]
- ]
- ],
- [
- [
- [
- 0.9327958822250366
- ]
- ]
- ],
- [
- [
- [
- 1.1446822881698608
- ]
- ]
- ],
- [
- [
- [
- 0.8550580739974976
- ]
- ]
- ],
- [
- [
- [
- 0.9099161624908447
- ]
- ]
- ],
- [
- [
- [
- 0.8784576654434204
- ]
- ]
- ],
- [
- [
- [
- 1.0977330207824707
- ]
- ]
- ],
- [
- [
- [
- 1.131624460220337
- ]
- ]
- ],
- [
- [
- [
- 1.0359814167022705
- ]
- ]
- ],
- [
- [
- [
- 1.1548970937728882
- ]
- ]
- ],
- [
- [
- [
- 1.0996190309524536
- ]
- ]
- ],
- [
- [
- [
- 1.1651257276535034
- ]
- ]
- ],
- [
- [
- [
- 1.0054795742034912
- ]
- ]
- ],
- [
- [
- [
- 1.081498622894287
- ]
- ]
- ],
- [
- [
- [
- 1.1673420667648315
- ]
- ]
- ],
- [
- [
- [
- 1.0609326362609863
- ]
- ]
- ],
- [
- [
- [
- 1.1646230220794678
- ]
- ]
- ],
- [
- [
- [
- 1.2004386186599731
- ]
- ]
- ],
- [
- [
- [
- 1.2459582090377808
- ]
- ]
- ],
- [
- [
- [
- 0.9282576441764832
- ]
- ]
- ],
- [
- [
- [
- 0.9680273532867432
- ]
- ]
- ],
- [
- [
- [
- 1.0662275552749634
- ]
- ]
- ],
- [
- [
- [
- 0.9931215047836304
- ]
- ]
- ],
- [
- [
- [
- 0.9181368947029114
- ]
- ]
- ],
- [
- [
- [
- 1.0280262231826782
- ]
- ]
- ],
- [
- [
- [
- 1.0315675735473633
- ]
- ]
- ],
- [
- [
- [
- 1.211349368095398
- ]
- ]
- ],
- [
- [
- [
- 0.9511834383010864
- ]
- ]
- ],
- [
- [
- [
- 0.9717198610305786
- ]
- ]
- ],
- [
- [
- [
- 1.0667681694030762
- ]
- ]
- ],
- [
- [
- [
- 1.0382022857666016
- ]
- ]
- ],
- [
- [
- [
- 0.9334288239479065
- ]
- ]
- ],
- [
- [
- [
- 1.0301597118377686
- ]
- ]
- ],
- [
- [
- [
- 0.967439591884613
- ]
- ]
- ],
- [
- [
- [
- 1.0981744527816772
- ]
- ]
- ],
- [
- [
- [
- 1.0317530632019043
- ]
- ]
- ],
- [
- [
- [
- 0.9220200181007385
- ]
- ]
- ],
- [
- [
- [
- 1.0175871849060059
- ]
- ]
- ],
- [
- [
- [
- 1.11359703540802
- ]
- ]
- ],
- [
- [
- [
- 1.1702944040298462
- ]
- ]
- ],
- [
- [
- [
- 1.1477751731872559
- ]
- ]
- ],
- [
- [
- [
- 0.9981474280357361
- ]
- ]
- ],
- [
- [
- [
- 0.9660216569900513
- ]
- ]
- ],
- [
- [
- [
- 1.0632623434066772
- ]
- ]
- ],
- [
- [
- [
- 1.0619792938232422
- ]
- ]
- ],
- [
- [
- [
- 0.9663714170455933
- ]
- ]
- ],
- [
- [
- [
- 1.037628173828125
- ]
- ]
- ],
- [
- [
- [
- 1.0056796073913574
- ]
- ]
- ],
- [
- [
- [
- 1.065121054649353
- ]
- ]
- ],
- [
- [
- [
- 1.0345733165740967
- ]
- ]
- ],
- [
- [
- [
- 0.9505118727684021
- ]
- ]
- ],
- [
- [
- [
- 0.897445559501648
- ]
- ]
- ],
- [
- [
- [
- 1.0598386526107788
- ]
- ]
- ],
- [
- [
- [
- 1.2676388025283813
- ]
- ]
- ],
- [
- [
- [
- 0.9511508941650391
- ]
- ]
- ],
- [
- [
- [
- 0.928439736366272
- ]
- ]
- ],
- [
- [
- [
- 1.2194916009902954
- ]
- ]
- ],
- [
- [
- [
- 1.0169765949249268
- ]
- ]
- ],
- [
- [
- [
- 0.9326657652854919
- ]
- ]
- ],
- [
- [
- [
- 0.9493452906608582
- ]
- ]
- ],
- [
- [
- [
- 0.9033411145210266
- ]
- ]
- ],
- [
- [
- [
- 1.1802440881729126
- ]
- ]
- ],
- [
- [
- [
- 1.347385048866272
- ]
- ]
- ],
- [
- [
- [
- 1.034165382385254
- ]
- ]
- ],
- [
- [
- [
- 1.0334899425506592
- ]
- ]
- ],
- [
- [
- [
- 0.9876420497894287
- ]
- ]
- ],
- [
- [
- [
- 1.1072570085525513
- ]
- ]
- ],
- [
- [
- [
- 0.9952456951141357
- ]
- ]
- ],
- [
- [
- [
- 1.2574394941329956
- ]
- ]
- ],
- [
- [
- [
- 0.8689859509468079
- ]
- ]
- ],
- [
- [
- [
- 1.2661182880401611
- ]
- ]
- ],
- [
- [
- [
- 1.03981614112854
- ]
- ]
- ],
- [
- [
- [
- 0.8809809684753418
- ]
- ]
- ],
- [
- [
- [
- 1.0084947347640991
- ]
- ]
- ],
- [
- [
- [
- 1.2330219745635986
- ]
- ]
- ],
- [
- [
- [
- 1.1273365020751953
- ]
- ]
- ],
- [
- [
- [
- 0.9146544933319092
- ]
- ]
- ],
- [
- [
- [
- 1.0193747282028198
- ]
- ]
- ],
- [
- [
- [
- 1.2053042650222778
- ]
- ]
- ],
- [
- [
- [
- 1.0879497528076172
- ]
- ]
- ],
- [
- [
- [
- 1.0110937356948853
- ]
- ]
- ],
- [
- [
- [
- 1.0061726570129395
- ]
- ]
- ],
- [
- [
- [
- 1.235247254371643
- ]
- ]
- ],
- [
- [
- [
- 0.8393933176994324
- ]
- ]
- ],
- [
- [
- [
- 0.824079692363739
- ]
- ]
- ],
- [
- [
- [
- 0.9523329734802246
- ]
- ]
- ],
- [
- [
- [
- 1.0180377960205078
- ]
- ]
- ],
- [
- [
- [
- 1.0148016214370728
- ]
- ]
- ],
- [
- [
- [
- 1.0527592897415161
- ]
- ]
- ],
- [
- [
- [
- 0.8780673742294312
- ]
- ]
- ],
- [
- [
- [
- 0.9197720885276794
- ]
- ]
- ],
- [
- [
- [
- 1.0121686458587646
- ]
- ]
- ],
- [
- [
- [
- 1.149194359779358
- ]
- ]
- ],
- [
- [
- [
- 0.9815737009048462
- ]
- ]
- ],
- [
- [
- [
- 0.9915777444839478
- ]
- ]
- ],
- [
- [
- [
- 1.1064143180847168
- ]
- ]
- ],
- [
- [
- [
- 0.9680820107460022
- ]
- ]
- ],
- [
- [
- [
- 0.9682905077934265
- ]
- ]
- ],
- [
- [
- [
- 0.9024412631988525
- ]
- ]
- ],
- [
- [
- [
- 0.8982731103897095
- ]
- ]
- ],
- [
- [
- [
- 1.1594024896621704
- ]
- ]
- ],
- [
- [
- [
- 0.9761938452720642
- ]
- ]
- ],
- [
- [
- [
- 0.9572800993919373
- ]
- ]
- ],
- [
- [
- [
- 1.1908619403839111
- ]
- ]
- ],
- [
- [
- [
- 0.8362125754356384
- ]
- ]
- ],
- [
- [
- [
- 1.0266835689544678
- ]
- ]
- ],
- [
- [
- [
- 0.9952780604362488
- ]
- ]
- ],
- [
- [
- [
- 0.9968683123588562
- ]
- ]
- ],
- [
- [
- [
- 0.9154673218727112
- ]
- ]
- ],
- [
- [
- [
- 1.0375815629959106
- ]
- ]
- ],
- [
- [
- [
- 1.0971142053604126
- ]
- ]
- ],
- [
- [
- [
- 1.1723730564117432
- ]
- ]
- ],
- [
- [
- [
- 1.1669483184814453
- ]
- ]
- ],
- [
- [
- [
- 0.8638350963592529
- ]
- ]
- ],
- [
- [
- [
- 1.0306495428085327
- ]
- ]
- ],
- [
- [
- [
- 0.7914523482322693
- ]
- ]
- ],
- [
- [
- [
- 0.9465627670288086
- ]
- ]
- ],
- [
- [
- [
- 0.9358009099960327
- ]
- ]
- ],
- [
- [
- [
- 1.1162915229797363
- ]
- ]
- ],
- [
- [
- [
- 1.282200574874878
- ]
- ]
- ],
- [
- [
- [
- 1.1835085153579712
- ]
- ]
- ],
- [
- [
- [
- 1.0965139865875244
- ]
- ]
- ],
- [
- [
- [
- 1.022279143333435
- ]
- ]
- ],
- [
- [
- [
- 0.969238817691803
- ]
- ]
- ],
- [
- [
- [
- 1.0312553644180298
- ]
- ]
- ],
- [
- [
- [
- 0.9301641583442688
- ]
- ]
- ],
- [
- [
- [
- 1.0422611236572266
- ]
- ]
- ],
- [
- [
- [
- 0.8957532644271851
- ]
- ]
- ],
- [
- [
- [
- 1.263972520828247
- ]
- ]
- ],
- [
- [
- [
- 1.0146368741989136
- ]
- ]
- ],
- [
- [
- [
- 1.162316083908081
- ]
- ]
- ],
- [
- [
- [
- 1.1180760860443115
- ]
- ]
- ],
- [
- [
- [
- 0.8681666851043701
- ]
- ]
- ],
- [
- [
- [
- 1.1394109725952148
- ]
- ]
- ],
- [
- [
- [
- 1.1682298183441162
- ]
- ]
- ],
- [
- [
- [
- 1.1062583923339844
- ]
- ]
- ],
- [
- [
- [
- 1.0097405910491943
- ]
- ]
- ],
- [
- [
- [
- 1.0653554201126099
- ]
- ]
- ],
- [
- [
- [
- 1.316703200340271
- ]
- ]
- ],
- [
- [
- [
- 1.0931909084320068
- ]
- ]
- ],
- [
- [
- [
- 1.0288337469100952
- ]
- ]
- ],
- [
- [
- [
- 1.3324306011199951
- ]
- ]
- ],
- [
- [
- [
- 1.1035162210464478
- ]
- ]
- ],
- [
- [
- [
- 0.9111860990524292
- ]
- ]
- ],
- [
- [
- [
- 1.2000322341918945
- ]
- ]
- ],
- [
- [
- [
- 0.9042758941650391
- ]
- ]
- ],
- [
- [
- [
- 1.3390562534332275
- ]
- ]
- ],
- [
- [
- [
- 0.9674554467201233
- ]
- ]
- ],
- [
- [
- [
- 0.8713670372962952
- ]
- ]
- ],
- [
- [
- [
- 1.0164679288864136
- ]
- ]
- ],
- [
- [
- [
- 1.1765505075454712
- ]
- ]
- ],
- [
- [
- [
- 0.9445337057113647
- ]
- ]
- ],
- [
- [
- [
- 1.2038474082946777
- ]
- ]
- ],
- [
- [
- [
- 0.8512529730796814
- ]
- ]
- ],
- [
- [
- [
- 1.0011693239212036
- ]
- ]
- ],
- [
- [
- [
- 0.9551778435707092
- ]
- ]
- ],
- [
- [
- [
- 1.135277509689331
- ]
- ]
- ],
- [
- [
- [
- 1.133786678314209
- ]
- ]
- ],
- [
- [
- [
- 1.1718844175338745
- ]
- ]
- ],
- [
- [
- [
- 1.0246680974960327
- ]
- ]
- ],
- [
- [
- [
- 0.870772123336792
- ]
- ]
- ],
- [
- [
- [
- 0.7498603463172913
- ]
- ]
- ],
- [
- [
- [
- 1.1122853755950928
- ]
- ]
- ],
- [
- [
- [
- 1.117050290107727
- ]
- ]
- ],
- [
- [
- [
- 0.988623857498169
- ]
- ]
- ],
- [
- [
- [
- 1.0564159154891968
- ]
- ]
- ],
- [
- [
- [
- 1.0248101949691772
- ]
- ]
- ],
- [
- [
- [
- 1.0442086458206177
- ]
- ]
- ],
- [
- [
- [
- 1.069042444229126
- ]
- ]
- ],
- [
- [
- [
- 0.9790357351303101
- ]
- ]
- ],
- [
- [
- [
- 1.0303306579589844
- ]
- ]
- ],
- [
- [
- [
- 0.9958706498146057
- ]
- ]
- ],
- [
- [
- [
- 1.0475794076919556
- ]
- ]
- ],
- [
- [
- [
- 0.9423568248748779
- ]
- ]
- ],
- [
- [
- [
- 0.873300313949585
- ]
- ]
- ],
- [
- [
- [
- 1.0221199989318848
- ]
- ]
- ],
- [
- [
- [
- 0.9581412076950073
- ]
- ]
- ],
- [
- [
- [
- 1.0221160650253296
- ]
- ]
- ],
- [
- [
- [
- 0.9930990934371948
- ]
- ]
- ],
- [
- [
- [
- 0.9908562302589417
- ]
- ]
- ],
- [
- [
- [
- 0.9575285911560059
- ]
- ]
- ],
- [
- [
- [
- 0.9035313725471497
- ]
- ]
- ],
- [
- [
- [
- 1.096128225326538
- ]
- ]
- ],
- [
- [
- [
- 0.973421037197113
- ]
- ]
- ],
- [
- [
- [
- 0.9911546111106873
- ]
- ]
- ],
- [
- [
- [
- 0.8282685279846191
- ]
- ]
- ],
- [
- [
- [
- 1.1275051832199097
- ]
- ]
- ],
- [
- [
- [
- 1.0053731203079224
- ]
- ]
- ],
- [
- [
- [
- 0.989039957523346
- ]
- ]
- ],
- [
- [
- [
- 0.9180200695991516
- ]
- ]
- ],
- [
- [
- [
- 1.2811906337738037
- ]
- ]
- ],
- [
- [
- [
- 0.9537343978881836
- ]
- ]
- ],
- [
- [
- [
- 1.1475861072540283
- ]
- ]
- ],
- [
- [
- [
- 0.8917347192764282
- ]
- ]
- ],
- [
- [
- [
- 1.1562293767929077
- ]
- ]
- ],
- [
- [
- [
- 0.9123382568359375
- ]
- ]
- ],
- [
- [
- [
- 0.9741218090057373
- ]
- ]
- ],
- [
- [
- [
- 0.8686437010765076
- ]
- ]
- ],
- [
- [
- [
- 1.4131979942321777
- ]
- ]
- ],
- [
- [
- [
- 1.1079826354980469
- ]
- ]
- ],
- [
- [
- [
- 1.6747843027114868
- ]
- ]
- ],
- [
- [
- [
- 1.2411466836929321
- ]
- ]
- ],
- [
- [
- [
- 0.8981740474700928
- ]
- ]
- ],
- [
- [
- [
- 1.1654136180877686
- ]
- ]
- ],
- [
- [
- [
- 1.1303224563598633
- ]
- ]
- ],
- [
- [
- [
- 1.1889028549194336
- ]
- ]
- ],
- [
- [
- [
- 1.498738408088684
- ]
- ]
- ],
- [
- [
- [
- 1.1379988193511963
- ]
- ]
- ],
- [
- [
- [
- 0.9130008220672607
- ]
- ]
- ],
- [
- [
- [
- 1.1763774156570435
- ]
- ]
- ],
- [
- [
- [
- 1.1547441482543945
- ]
- ]
- ],
- [
- [
- [
- 0.9631338715553284
- ]
- ]
- ],
- [
- [
- [
- 1.151780366897583
- ]
- ]
- ],
- [
- [
- [
- 0.8802265524864197
- ]
- ]
- ],
- [
- [
- [
- 1.339415192604065
- ]
- ]
- ],
- [
- [
- [
- 0.801267147064209
- ]
- ]
- ],
- [
- [
- [
- 1.0882829427719116
- ]
- ]
- ],
- [
- [
- [
- 0.8202828764915466
- ]
- ]
- ],
- [
- [
- [
- 1.0587948560714722
- ]
- ]
- ],
- [
- [
- [
- 1.019809603691101
- ]
- ]
- ],
- [
- [
- [
- 1.0160835981369019
- ]
- ]
- ],
- [
- [
- [
- 0.9160484671592712
- ]
- ]
- ],
- [
- [
- [
- 0.9097926616668701
- ]
- ]
- ],
- [
- [
- [
- 1.0216456651687622
- ]
- ]
- ],
- [
- [
- [
- 1.0127605199813843
- ]
- ]
- ],
- [
- [
- [
- 0.9762558341026306
- ]
- ]
- ],
- [
- [
- [
- 0.9927420020103455
- ]
- ]
- ],
- [
- [
- [
- 0.812792956829071
- ]
- ]
- ],
- [
- [
- [
- 0.8704925775527954
- ]
- ]
- ],
- [
- [
- [
- 1.0351486206054688
- ]
- ]
- ],
- [
- [
- [
- 0.8864662647247314
- ]
- ]
- ],
- [
- [
- [
- 1.0826646089553833
- ]
- ]
- ],
- [
- [
- [
- 1.0816775560379028
- ]
- ]
- ],
- [
- [
- [
- 1.0368469953536987
- ]
- ]
- ],
- [
- [
- [
- 1.0713915824890137
- ]
- ]
- ],
- [
- [
- [
- 1.4123166799545288
- ]
- ]
- ],
- [
- [
- [
- 1.2359747886657715
- ]
- ]
- ],
- [
- [
- [
- 0.9495987892150879
- ]
- ]
- ],
- [
- [
- [
- 0.9151511788368225
- ]
- ]
- ],
- [
- [
- [
- 1.3006463050842285
- ]
- ]
- ],
- [
- [
- [
- 1.2935155630111694
- ]
- ]
- ],
- [
- [
- [
- 0.9979597330093384
- ]
- ]
- ],
- [
- [
- [
- 1.0068566799163818
- ]
- ]
- ],
- [
- [
- [
- 0.8601046204566956
- ]
- ]
- ],
- [
- [
- [
- 1.0795971155166626
- ]
- ]
- ],
- [
- [
- [
- 1.0950769186019897
- ]
- ]
- ],
- [
- [
- [
- 1.1820591688156128
- ]
- ]
- ],
- [
- [
- [
- 1.0445736646652222
- ]
- ]
- ],
- [
- [
- [
- 1.0767415761947632
- ]
- ]
- ],
- [
- [
- [
- 1.0770986080169678
- ]
- ]
- ],
- [
- [
- [
- 1.0848673582077026
- ]
- ]
- ],
- [
- [
- [
- 1.4953398704528809
- ]
- ]
- ],
- [
- [
- [
- 0.9231826663017273
- ]
- ]
- ],
- [
- [
- [
- 1.0823657512664795
- ]
- ]
- ],
- [
- [
- [
- 1.267652153968811
- ]
- ]
- ],
- [
- [
- [
- 0.9659174084663391
- ]
- ]
- ],
- [
- [
- [
- 0.9186413288116455
- ]
- ]
- ],
- [
- [
- [
- 0.9566716551780701
- ]
- ]
- ],
- [
- [
- [
- 1.0898019075393677
- ]
- ]
- ],
- [
- [
- [
- 0.9646103978157043
- ]
- ]
- ],
- [
- [
- [
- 1.0629745721817017
- ]
- ]
- ],
- [
- [
- [
- 0.9967606067657471
- ]
- ]
- ],
- [
- [
- [
- 0.9250516891479492
- ]
- ]
- ],
- [
- [
- [
- 0.9671849012374878
- ]
- ]
- ],
- [
- [
- [
- 1.146730899810791
- ]
- ]
- ],
- [
- [
- [
- 0.9242576956748962
- ]
- ]
- ],
- [
- [
- [
- 1.0041362047195435
- ]
- ]
- ],
- [
- [
- [
- 1.0695887804031372
- ]
- ]
- ],
- [
- [
- [
- 0.9826728701591492
- ]
- ]
- ],
- [
- [
- [
- 1.1424812078475952
- ]
- ]
- ],
- [
- [
- [
- 0.8917030692100525
- ]
- ]
- ],
- [
- [
- [
- 0.9630059003829956
- ]
- ]
- ],
- [
- [
- [
- 0.9132561683654785
- ]
- ]
- ],
- [
- [
- [
- 1.1274898052215576
- ]
- ]
- ],
- [
- [
- [
- 1.0315172672271729
- ]
- ]
- ],
- [
- [
- [
- 1.1761420965194702
- ]
- ]
- ],
- [
- [
- [
- 1.0530563592910767
- ]
- ]
- ],
- [
- [
- [
- 1.0070565938949585
- ]
- ]
- ],
- [
- [
- [
- 0.9258015155792236
- ]
- ]
- ],
- [
- [
- [
- 1.19841468334198
- ]
- ]
- ],
- [
- [
- [
- 1.0243979692459106
- ]
- ]
- ],
- [
- [
- [
- 0.8900928497314453
- ]
- ]
- ],
- [
- [
- [
- 1.0273610353469849
- ]
- ]
- ],
- [
- [
- [
- 0.8598757982254028
- ]
- ]
- ],
- [
- [
- [
- 0.946030855178833
- ]
- ]
- ],
- [
- [
- [
- 0.9448181390762329
- ]
- ]
- ],
- [
- [
- [
- 1.0143765211105347
- ]
- ]
- ],
- [
- [
- [
- 0.9872357249259949
- ]
- ]
- ],
- [
- [
- [
- 1.4276585578918457
- ]
- ]
- ],
- [
- [
- [
- 0.92050701379776
- ]
- ]
- ],
- [
- [
- [
- 1.073231816291809
- ]
- ]
- ],
- [
- [
- [
- 1.0232280492782593
- ]
- ]
- ],
- [
- [
- [
- 0.9219456911087036
- ]
- ]
- ],
- [
- [
- [
- 1.0473815202713013
- ]
- ]
- ],
- [
- [
- [
- 0.9583578109741211
- ]
- ]
- ],
- [
- [
- [
- 1.158691644668579
- ]
- ]
- ],
- [
- [
- [
- 1.190244436264038
- ]
- ]
- ],
- [
- [
- [
- 0.9650874733924866
- ]
- ]
- ],
- [
- [
- [
- 0.9343444108963013
- ]
- ]
- ],
- [
- [
- [
- 1.034268856048584
- ]
- ]
- ],
- [
- [
- [
- 1.1957803964614868
- ]
- ]
- ],
- [
- [
- [
- 0.9994576573371887
- ]
- ]
- ],
- [
- [
- [
- 1.01644766330719
- ]
- ]
- ],
- [
- [
- [
- 1.006485939025879
- ]
- ]
- ],
- [
- [
- [
- 1.050088882446289
- ]
- ]
- ],
- [
- [
- [
- 1.2327247858047485
- ]
- ]
- ],
- [
- [
- [
- 0.9164046049118042
- ]
- ]
- ],
- [
- [
- [
- 1.0635392665863037
- ]
- ]
- ],
- [
- [
- [
- 1.198624849319458
- ]
- ]
- ],
- [
- [
- [
- 1.033980369567871
- ]
- ]
- ],
- [
- [
- [
- 0.9468284845352173
- ]
- ]
- ],
- [
- [
- [
- 1.1643176078796387
- ]
- ]
- ],
- [
- [
- [
- 1.3685736656188965
- ]
- ]
- ],
- [
- [
- [
- 0.9036381840705872
- ]
- ]
- ],
- [
- [
- [
- 1.1483911275863647
- ]
- ]
- ],
- [
- [
- [
- 1.087874174118042
- ]
- ]
- ],
- [
- [
- [
- 1.0929338932037354
- ]
- ]
- ],
- [
- [
- [
- 0.9920712113380432
- ]
- ]
- ],
- [
- [
- [
- 1.160004734992981
- ]
- ]
- ],
- [
- [
- [
- 1.1754090785980225
- ]
- ]
- ],
- [
- [
- [
- 0.9312402606010437
- ]
- ]
- ],
- [
- [
- [
- 1.0538824796676636
- ]
- ]
- ],
- [
- [
- [
- 1.195144534111023
- ]
- ]
- ],
- [
- [
- [
- 0.9637614488601685
- ]
- ]
- ],
- [
- [
- [
- 1.122320294380188
- ]
- ]
- ],
- [
- [
- [
- 1.0226802825927734
- ]
- ]
- ],
- [
- [
- [
- 1.2232252359390259
- ]
- ]
- ],
- [
- [
- [
- 1.0013254880905151
- ]
- ]
- ],
- [
- [
- [
- 1.0539494752883911
- ]
- ]
- ],
- [
- [
- [
- 1.0873000621795654
- ]
- ]
- ],
- [
- [
- [
- 0.9148683547973633
- ]
- ]
- ],
- [
- [
- [
- 0.9341676235198975
- ]
- ]
- ],
- [
- [
- [
- 1.0425392389297485
- ]
- ]
- ],
- [
- [
- [
- 1.0417110919952393
- ]
- ]
- ],
- [
- [
- [
- 1.2196671962738037
- ]
- ]
- ],
- [
- [
- [
- 1.4334861040115356
- ]
- ]
- ],
- [
- [
- [
- 1.1152645349502563
- ]
- ]
- ],
- [
- [
- [
- 1.2558820247650146
- ]
- ]
- ],
- [
- [
- [
- 0.8673494458198547
- ]
- ]
- ],
- [
- [
- [
- 1.6053882837295532
- ]
- ]
- ],
- [
- [
- [
- 1.2437046766281128
- ]
- ]
- ],
- [
- [
- [
- 1.025049090385437
- ]
- ]
- ],
- [
- [
- [
- 1.1366007328033447
- ]
- ]
- ],
- [
- [
- [
- 1.0822099447250366
- ]
- ]
- ],
- [
- [
- [
- 1.1041475534439087
- ]
- ]
- ],
- [
- [
- [
- 0.9215682148933411
- ]
- ]
- ],
- [
- [
- [
- 1.2372361421585083
- ]
- ]
- ],
- [
- [
- [
- 1.0263289213180542
- ]
- ]
- ],
- [
- [
- [
- 1.331955075263977
- ]
- ]
- ],
- [
- [
- [
- 0.9262051582336426
- ]
- ]
- ],
- [
- [
- [
- 0.8875250816345215
- ]
- ]
- ],
- [
- [
- [
- 1.0618343353271484
- ]
- ]
- ],
- [
- [
- [
- 1.0563658475875854
- ]
- ]
- ],
- [
- [
- [
- 1.2385578155517578
- ]
- ]
- ],
- [
- [
- [
- 0.9614799618721008
- ]
- ]
- ],
- [
- [
- [
- 0.968964695930481
- ]
- ]
- ],
- [
- [
- [
- 0.9935006499290466
- ]
- ]
- ],
- [
- [
- [
- 1.1900731325149536
- ]
- ]
- ],
- [
- [
- [
- 1.0714223384857178
- ]
- ]
- ],
- [
- [
- [
- 1.0552107095718384
- ]
- ]
- ],
- [
- [
- [
- 1.08120596408844
- ]
- ]
- ],
- [
- [
- [
- 0.9579365253448486
- ]
- ]
- ],
- [
- [
- [
- 1.1733412742614746
- ]
- ]
- ],
- [
- [
- [
- 1.4753390550613403
- ]
- ]
- ],
- [
- [
- [
- 1.0601569414138794
- ]
- ]
- ],
- [
- [
- [
- 1.0317269563674927
- ]
- ]
- ],
- [
- [
- [
- 0.98548424243927
- ]
- ]
- ],
- [
- [
- [
- 1.1392360925674438
- ]
- ]
- ],
- [
- [
- [
- 1.154281497001648
- ]
- ]
- ],
- [
- [
- [
- 1.0393935441970825
- ]
- ]
- ],
- [
- [
- [
- 0.9594317674636841
- ]
- ]
- ],
- [
- [
- [
- 0.8906742334365845
- ]
- ]
- ],
- [
- [
- [
- 1.0964202880859375
- ]
- ]
- ],
- [
- [
- [
- 1.0778019428253174
- ]
- ]
- ],
- [
- [
- [
- 0.9638389945030212
- ]
- ]
- ],
- [
- [
- [
- 0.9502721428871155
- ]
- ]
- ],
- [
- [
- [
- 1.2740446329116821
- ]
- ]
- ],
- [
- [
- [
- 1.026613473892212
- ]
- ]
- ],
- [
- [
- [
- 1.0728224515914917
- ]
- ]
- ],
- [
- [
- [
- 1.136831283569336
- ]
- ]
- ],
- [
- [
- [
- 1.0910557508468628
- ]
- ]
- ],
- [
- [
- [
- 0.8803440928459167
- ]
- ]
- ],
- [
- [
- [
- 1.0493167638778687
- ]
- ]
- ],
- [
- [
- [
- 0.8760088086128235
- ]
- ]
- ],
- [
- [
- [
- 0.8282005190849304
- ]
- ]
- ],
- [
- [
- [
- 0.9414563179016113
- ]
- ]
- ],
- [
- [
- [
- 0.9254025816917419
- ]
- ]
- ],
- [
- [
- [
- 0.9233563542366028
- ]
- ]
- ],
- [
- [
- [
- 1.1296831369400024
- ]
- ]
- ],
- [
- [
- [
- 1.044033169746399
- ]
- ]
- ],
- [
- [
- [
- 1.0141501426696777
- ]
- ]
- ],
- [
- [
- [
- 0.9893689751625061
- ]
- ]
- ],
- [
- [
- [
- 1.3385313749313354
- ]
- ]
- ],
- [
- [
- [
- 1.0532974004745483
- ]
- ]
- ],
- [
- [
- [
- 0.9132193326950073
- ]
- ]
- ],
- [
- [
- [
- 0.8977677822113037
- ]
- ]
- ],
- [
- [
- [
- 0.9809406399726868
- ]
- ]
- ],
- [
- [
- [
- 0.9672472476959229
- ]
- ]
- ],
- [
- [
- [
- 1.2133967876434326
- ]
- ]
- ],
- [
- [
- [
- 0.8907191753387451
- ]
- ]
- ],
- [
- [
- [
- 1.1266659498214722
- ]
- ]
- ],
- [
- [
- [
- 0.9290457367897034
- ]
- ]
- ],
- [
- [
- [
- 0.9387751817703247
- ]
- ]
- ],
- [
- [
- [
- 1.039330244064331
- ]
- ]
- ],
- [
- [
- [
- 1.1366225481033325
- ]
- ]
- ],
- [
- [
- [
- 1.3512424230575562
- ]
- ]
- ],
- [
- [
- [
- 1.0292646884918213
- ]
- ]
- ],
- [
- [
- [
- 0.969363272190094
- ]
- ]
- ],
- [
- [
- [
- 1.0838828086853027
- ]
- ]
- ],
- [
- [
- [
- 0.8946046233177185
- ]
- ]
- ],
- [
- [
- [
- 0.9409071803092957
- ]
- ]
- ],
- [
- [
- [
- 1.0113590955734253
- ]
- ]
- ],
- [
- [
- [
- 1.14974045753479
- ]
- ]
- ],
- [
- [
- [
- 1.0293505191802979
- ]
- ]
- ],
- [
- [
- [
- 1.0862846374511719
- ]
- ]
- ],
- [
- [
- [
- 0.9694017171859741
- ]
- ]
- ],
- [
- [
- [
- 0.9677215814590454
- ]
- ]
- ],
- [
- [
- [
- 0.939729630947113
- ]
- ]
- ],
- [
- [
- [
- 1.0437185764312744
- ]
- ]
- ],
- [
- [
- [
- 1.006166934967041
- ]
- ]
- ],
- [
- [
- [
- 0.9743891358375549
- ]
- ]
- ],
- [
- [
- [
- 1.1442912817001343
- ]
- ]
- ],
- [
- [
- [
- 1.1824060678482056
- ]
- ]
- ],
- [
- [
- [
- 1.1274503469467163
- ]
- ]
- ],
- [
- [
- [
- 0.8865083456039429
- ]
- ]
- ],
- [
- [
- [
- 1.0748287439346313
- ]
- ]
- ],
- [
- [
- [
- 0.8866617679595947
- ]
- ]
- ],
- [
- [
- [
- 1.1383073329925537
- ]
- ]
- ],
- [
- [
- [
- 1.2039122581481934
- ]
- ]
- ],
- [
- [
- [
- 1.0320487022399902
- ]
- ]
- ],
- [
- [
- [
- 1.014757752418518
- ]
- ]
- ],
- [
- [
- [
- 0.9832412004470825
- ]
- ]
- ],
- [
- [
- [
- 1.034433364868164
- ]
- ]
- ],
- [
- [
- [
- 1.0604592561721802
- ]
- ]
- ],
- [
- [
- [
- 1.0199542045593262
- ]
- ]
- ],
- [
- [
- [
- 0.9525006413459778
- ]
- ]
- ],
- [
- [
- [
- 1.0461488962173462
- ]
- ]
- ],
- [
- [
- [
- 1.0134856700897217
- ]
- ]
- ],
- [
- [
- [
- 1.0897252559661865
- ]
- ]
- ],
- [
- [
- [
- 1.1297426223754883
- ]
- ]
- ],
- [
- [
- [
- 1.0999870300292969
- ]
- ]
- ],
- [
- [
- [
- 1.0331299304962158
- ]
- ]
- ],
- [
- [
- [
- 0.9930763840675354
- ]
- ]
- ],
- [
- [
- [
- 0.9544077515602112
- ]
- ]
- ],
- [
- [
- [
- 0.970114529132843
- ]
- ]
- ],
- [
- [
- [
- 1.2985087633132935
- ]
- ]
- ],
- [
- [
- [
- 1.0040926933288574
- ]
- ]
- ],
- [
- [
- [
- 1.1276699304580688
- ]
- ]
- ],
- [
- [
- [
- 1.0992940664291382
- ]
- ]
- ],
- [
- [
- [
- 1.0134931802749634
- ]
- ]
- ],
- [
- [
- [
- 1.0181903839111328
- ]
- ]
- ],
- [
- [
- [
- 1.2153596878051758
- ]
- ]
- ],
- [
- [
- [
- 1.0986175537109375
- ]
- ]
- ],
- [
- [
- [
- 0.8209522366523743
- ]
- ]
- ],
- [
- [
- [
- 0.8855798244476318
- ]
- ]
- ],
- [
- [
- [
- 0.9683364629745483
- ]
- ]
- ],
- [
- [
- [
- 0.9707607626914978
- ]
- ]
- ],
- [
- [
- [
- 0.865387499332428
- ]
- ]
- ],
- [
- [
- [
- 0.9642270803451538
- ]
- ]
- ],
- [
- [
- [
- 0.8924148082733154
- ]
- ]
- ],
- [
- [
- [
- 0.9769684672355652
- ]
- ]
- ],
- [
- [
- [
- 1.1303585767745972
- ]
- ]
- ],
- [
- [
- [
- 0.973569393157959
- ]
- ]
- ],
- [
- [
- [
- 0.9845264554023743
- ]
- ]
- ],
- [
- [
- [
- 0.8775923848152161
- ]
- ]
- ],
- [
- [
- [
- 1.0446174144744873
- ]
- ]
- ],
- [
- [
- [
- 1.06755793094635
- ]
- ]
- ],
- [
- [
- [
- 0.9677262902259827
- ]
- ]
- ],
- [
- [
- [
- 0.8944038152694702
- ]
- ]
- ],
- [
- [
- [
- 0.9117789268493652
- ]
- ]
- ],
- [
- [
- [
- 1.3298097848892212
- ]
- ]
- ],
- [
- [
- [
- 0.9277745485305786
- ]
- ]
- ],
- [
- [
- [
- 1.1351077556610107
- ]
- ]
- ],
- [
- [
- [
- 0.9505661129951477
- ]
- ]
- ],
- [
- [
- [
- 0.9157877564430237
- ]
- ]
- ],
- [
- [
- [
- 0.8652980327606201
- ]
- ]
- ],
- [
- [
- [
- 1.4441709518432617
- ]
- ]
- ],
- [
- [
- [
- 0.9310252070426941
- ]
- ]
- ],
- [
- [
- [
- 1.101375699043274
- ]
- ]
- ],
- [
- [
- [
- 0.8490892648696899
- ]
- ]
- ],
- [
- [
- [
- 1.0252288579940796
- ]
- ]
- ],
- [
- [
- [
- 0.9815975427627563
- ]
- ]
- ],
- [
- [
- [
- 0.9024218916893005
- ]
- ]
- ],
- [
- [
- [
- 0.9733182191848755
- ]
- ]
- ],
- [
- [
- [
- 1.3083481788635254
- ]
- ]
- ],
- [
- [
- [
- 0.9134640693664551
- ]
- ]
- ],
- [
- [
- [
- 1.0094417333602905
- ]
- ]
- ],
- [
- [
- [
- 1.0689857006072998
- ]
- ]
- ],
- [
- [
- [
- 1.4842339754104614
- ]
- ]
- ],
- [
- [
- [
- 0.8851192593574524
- ]
- ]
- ],
- [
- [
- [
- 1.0576046705245972
- ]
- ]
- ],
- [
- [
- [
- 1.072542667388916
- ]
- ]
- ],
- [
- [
- [
- 0.9997857809066772
- ]
- ]
- ],
- [
- [
- [
- 0.9685620665550232
- ]
- ]
- ],
- [
- [
- [
- 0.8968682289123535
- ]
- ]
- ],
- [
- [
- [
- 0.9818838834762573
- ]
- ]
- ],
- [
- [
- [
- 0.9587700963020325
- ]
- ]
- ],
- [
- [
- [
- 0.9785784482955933
- ]
- ]
- ],
- [
- [
- [
- 1.115765929222107
- ]
- ]
- ],
- [
- [
- [
- 1.2617428302764893
- ]
- ]
- ],
- [
- [
- [
- 0.9551870822906494
- ]
- ]
- ],
- [
- [
- [
- 1.0487961769104004
- ]
- ]
- ],
- [
- [
- [
- 1.2335795164108276
- ]
- ]
- ],
- [
- [
- [
- 1.0376629829406738
- ]
- ]
- ],
- [
- [
- [
- 1.2391270399093628
- ]
- ]
- ],
- [
- [
- [
- 1.0144726037979126
- ]
- ]
- ],
- [
- [
- [
- 1.068605899810791
- ]
- ]
- ],
- [
- [
- [
- 1.1246964931488037
- ]
- ]
- ],
- [
- [
- [
- 0.8251024484634399
- ]
- ]
- ],
- [
- [
- [
- 1.131123661994934
- ]
- ]
- ],
- [
- [
- [
- 0.9032446146011353
- ]
- ]
- ],
- [
- [
- [
- 0.8750292658805847
- ]
- ]
- ],
- [
- [
- [
- 1.1389330625534058
- ]
- ]
- ],
- [
- [
- [
- 1.0585908889770508
- ]
- ]
- ],
- [
- [
- [
- 1.111668348312378
- ]
- ]
- ],
- [
- [
- [
- 0.8796474933624268
- ]
- ]
- ],
- [
- [
- [
- 1.367453932762146
- ]
- ]
- ],
- [
- [
- [
- 1.0127404928207397
- ]
- ]
- ],
- [
- [
- [
- 0.9792473912239075
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.9333563446998596
- ]
- ]
- ],
- [
- [
- [
- -0.8634206056594849
- ]
- ]
- ],
- [
- [
- [
- -1.3679049015045166
- ]
- ]
- ],
- [
- [
- [
- -0.921192467212677
- ]
- ]
- ],
- [
- [
- [
- -1.074693202972412
- ]
- ]
- ],
- [
- [
- [
- -0.9710022807121277
- ]
- ]
- ],
- [
- [
- [
- -0.937746524810791
- ]
- ]
- ],
- [
- [
- [
- -0.8183114528656006
- ]
- ]
- ],
- [
- [
- [
- -0.9902278184890747
- ]
- ]
- ],
- [
- [
- [
- -1.0752556324005127
- ]
- ]
- ],
- [
- [
- [
- -1.2409653663635254
- ]
- ]
- ],
- [
- [
- [
- -1.1727107763290405
- ]
- ]
- ],
- [
- [
- [
- -1.094907283782959
- ]
- ]
- ],
- [
- [
- [
- -1.0488450527191162
- ]
- ]
- ],
- [
- [
- [
- -0.9464437961578369
- ]
- ]
- ],
- [
- [
- [
- -0.8778498768806458
- ]
- ]
- ],
- [
- [
- [
- -0.9288340210914612
- ]
- ]
- ],
- [
- [
- [
- -1.169562578201294
- ]
- ]
- ],
- [
- [
- [
- -1.0479663610458374
- ]
- ]
- ],
- [
- [
- [
- -1.0154087543487549
- ]
- ]
- ],
- [
- [
- [
- -1.0552308559417725
- ]
- ]
- ],
- [
- [
- [
- -1.0735704898834229
- ]
- ]
- ],
- [
- [
- [
- -1.2206473350524902
- ]
- ]
- ],
- [
- [
- [
- -0.8820775747299194
- ]
- ]
- ],
- [
- [
- [
- -0.985245406627655
- ]
- ]
- ],
- [
- [
- [
- -0.9965498447418213
- ]
- ]
- ],
- [
- [
- [
- -1.097084879875183
- ]
- ]
- ],
- [
- [
- [
- -0.9789084196090698
- ]
- ]
- ],
- [
- [
- [
- -0.9565417170524597
- ]
- ]
- ],
- [
- [
- [
- -0.9204089641571045
- ]
- ]
- ],
- [
- [
- [
- -1.1081256866455078
- ]
- ]
- ],
- [
- [
- [
- -0.9363775849342346
- ]
- ]
- ],
- [
- [
- [
- -1.1928625106811523
- ]
- ]
- ],
- [
- [
- [
- -0.8435102701187134
- ]
- ]
- ],
- [
- [
- [
- -1.0255998373031616
- ]
- ]
- ],
- [
- [
- [
- -0.9146135449409485
- ]
- ]
- ],
- [
- [
- [
- -1.0180649757385254
- ]
- ]
- ],
- [
- [
- [
- -1.0512093305587769
- ]
- ]
- ],
- [
- [
- [
- -1.1696480512619019
- ]
- ]
- ],
- [
- [
- [
- -1.1852375268936157
- ]
- ]
- ],
- [
- [
- [
- -1.0058954954147339
- ]
- ]
- ],
- [
- [
- [
- -1.1105128526687622
- ]
- ]
- ],
- [
- [
- [
- -0.9131753444671631
- ]
- ]
- ],
- [
- [
- [
- -0.9425309896469116
- ]
- ]
- ],
- [
- [
- [
- -0.9901024103164673
- ]
- ]
- ],
- [
- [
- [
- -1.2012548446655273
- ]
- ]
- ],
- [
- [
- [
- -1.1605666875839233
- ]
- ]
- ],
- [
- [
- [
- -1.139669418334961
- ]
- ]
- ],
- [
- [
- [
- -1.0456866025924683
- ]
- ]
- ],
- [
- [
- [
- -1.1513564586639404
- ]
- ]
- ],
- [
- [
- [
- -1.3330177068710327
- ]
- ]
- ],
- [
- [
- [
- -0.9522570371627808
- ]
- ]
- ],
- [
- [
- [
- -0.9786536693572998
- ]
- ]
- ],
- [
- [
- [
- -1.0071555376052856
- ]
- ]
- ],
- [
- [
- [
- -0.9622791409492493
- ]
- ]
- ],
- [
- [
- [
- -0.9655205607414246
- ]
- ]
- ],
- [
- [
- [
- -1.1577054262161255
- ]
- ]
- ],
- [
- [
- [
- -0.9871496558189392
- ]
- ]
- ],
- [
- [
- [
- -0.916568398475647
- ]
- ]
- ],
- [
- [
- [
- -1.080419659614563
- ]
- ]
- ],
- [
- [
- [
- -1.240788221359253
- ]
- ]
- ],
- [
- [
- [
- -1.007234811782837
- ]
- ]
- ],
- [
- [
- [
- -1.2301338911056519
- ]
- ]
- ],
- [
- [
- [
- -1.0749702453613281
- ]
- ]
- ],
- [
- [
- [
- -0.8941547274589539
- ]
- ]
- ],
- [
- [
- [
- -1.3026576042175293
- ]
- ]
- ],
- [
- [
- [
- -0.9793345928192139
- ]
- ]
- ],
- [
- [
- [
- -1.553097128868103
- ]
- ]
- ],
- [
- [
- [
- -0.9606373906135559
- ]
- ]
- ],
- [
- [
- [
- -0.9629589319229126
- ]
- ]
- ],
- [
- [
- [
- -1.0442421436309814
- ]
- ]
- ],
- [
- [
- [
- -0.9142823219299316
- ]
- ]
- ],
- [
- [
- [
- -0.9564029574394226
- ]
- ]
- ],
- [
- [
- [
- -0.9296230673789978
- ]
- ]
- ],
- [
- [
- [
- -1.0089994668960571
- ]
- ]
- ],
- [
- [
- [
- -1.0354018211364746
- ]
- ]
- ],
- [
- [
- [
- -1.2310198545455933
- ]
- ]
- ],
- [
- [
- [
- -1.090272068977356
- ]
- ]
- ],
- [
- [
- [
- -1.07002592086792
- ]
- ]
- ],
- [
- [
- [
- -1.1138919591903687
- ]
- ]
- ],
- [
- [
- [
- -1.084550142288208
- ]
- ]
- ],
- [
- [
- [
- -1.1057924032211304
- ]
- ]
- ],
- [
- [
- [
- -1.2235233783721924
- ]
- ]
- ],
- [
- [
- [
- -1.0582817792892456
- ]
- ]
- ],
- [
- [
- [
- -0.9743874669075012
- ]
- ]
- ],
- [
- [
- [
- -0.9303461909294128
- ]
- ]
- ],
- [
- [
- [
- -1.0827430486679077
- ]
- ]
- ],
- [
- [
- [
- -1.0619254112243652
- ]
- ]
- ],
- [
- [
- [
- -0.8887662887573242
- ]
- ]
- ],
- [
- [
- [
- -1.075006365776062
- ]
- ]
- ],
- [
- [
- [
- -1.2990859746932983
- ]
- ]
- ],
- [
- [
- [
- -1.1231625080108643
- ]
- ]
- ],
- [
- [
- [
- -0.9791327714920044
- ]
- ]
- ],
- [
- [
- [
- -0.9313610196113586
- ]
- ]
- ],
- [
- [
- [
- -1.0811262130737305
- ]
- ]
- ],
- [
- [
- [
- -0.9537045359611511
- ]
- ]
- ],
- [
- [
- [
- -1.1036652326583862
- ]
- ]
- ],
- [
- [
- [
- -1.035569429397583
- ]
- ]
- ],
- [
- [
- [
- -1.209285020828247
- ]
- ]
- ],
- [
- [
- [
- -0.9597774744033813
- ]
- ]
- ],
- [
- [
- [
- -0.989969789981842
- ]
- ]
- ],
- [
- [
- [
- -1.1306732892990112
- ]
- ]
- ],
- [
- [
- [
- -0.9206469655036926
- ]
- ]
- ],
- [
- [
- [
- -1.0266563892364502
- ]
- ]
- ],
- [
- [
- [
- -1.1178147792816162
- ]
- ]
- ],
- [
- [
- [
- -1.266143798828125
- ]
- ]
- ],
- [
- [
- [
- -1.1960279941558838
- ]
- ]
- ],
- [
- [
- [
- -0.9617884755134583
- ]
- ]
- ],
- [
- [
- [
- -0.9933983087539673
- ]
- ]
- ],
- [
- [
- [
- -1.0695656538009644
- ]
- ]
- ],
- [
- [
- [
- -1.1198887825012207
- ]
- ]
- ],
- [
- [
- [
- -1.3172880411148071
- ]
- ]
- ],
- [
- [
- [
- -1.2068411111831665
- ]
- ]
- ],
- [
- [
- [
- -0.9493498206138611
- ]
- ]
- ],
- [
- [
- [
- -1.1716622114181519
- ]
- ]
- ],
- [
- [
- [
- -1.0408910512924194
- ]
- ]
- ],
- [
- [
- [
- -1.0437089204788208
- ]
- ]
- ],
- [
- [
- [
- -1.3508024215698242
- ]
- ]
- ],
- [
- [
- [
- -0.9652036428451538
- ]
- ]
- ],
- [
- [
- [
- -1.221362829208374
- ]
- ]
- ],
- [
- [
- [
- -0.9645214676856995
- ]
- ]
- ],
- [
- [
- [
- -1.1308947801589966
- ]
- ]
- ],
- [
- [
- [
- -1.1852948665618896
- ]
- ]
- ],
- [
- [
- [
- -1.1971423625946045
- ]
- ]
- ],
- [
- [
- [
- -1.118455410003662
- ]
- ]
- ],
- [
- [
- [
- -1.0853466987609863
- ]
- ]
- ],
- [
- [
- [
- -1.040671944618225
- ]
- ]
- ],
- [
- [
- [
- -0.9294936656951904
- ]
- ]
- ],
- [
- [
- [
- -0.9489459991455078
- ]
- ]
- ],
- [
- [
- [
- -1.0066914558410645
- ]
- ]
- ],
- [
- [
- [
- -1.1474987268447876
- ]
- ]
- ],
- [
- [
- [
- -0.9631145596504211
- ]
- ]
- ],
- [
- [
- [
- -0.9549851417541504
- ]
- ]
- ],
- [
- [
- [
- -0.9759792685508728
- ]
- ]
- ],
- [
- [
- [
- -0.8484014272689819
- ]
- ]
- ],
- [
- [
- [
- -1.2572873830795288
- ]
- ]
- ],
- [
- [
- [
- -1.101784348487854
- ]
- ]
- ],
- [
- [
- [
- -0.946007251739502
- ]
- ]
- ],
- [
- [
- [
- -1.023027777671814
- ]
- ]
- ],
- [
- [
- [
- -0.985552191734314
- ]
- ]
- ],
- [
- [
- [
- -1.0553869009017944
- ]
- ]
- ],
- [
- [
- [
- -1.2880066633224487
- ]
- ]
- ],
- [
- [
- [
- -0.9363034963607788
- ]
- ]
- ],
- [
- [
- [
- -0.8398956656455994
- ]
- ]
- ],
- [
- [
- [
- -1.0739140510559082
- ]
- ]
- ],
- [
- [
- [
- -1.0675075054168701
- ]
- ]
- ],
- [
- [
- [
- -0.9242190718650818
- ]
- ]
- ],
- [
- [
- [
- -1.1382657289505005
- ]
- ]
- ],
- [
- [
- [
- -1.0403072834014893
- ]
- ]
- ],
- [
- [
- [
- -1.1370315551757812
- ]
- ]
- ],
- [
- [
- [
- -0.9231918454170227
- ]
- ]
- ],
- [
- [
- [
- -1.1595697402954102
- ]
- ]
- ],
- [
- [
- [
- -1.2384108304977417
- ]
- ]
- ],
- [
- [
- [
- -1.1984539031982422
- ]
- ]
- ],
- [
- [
- [
- -0.9855936765670776
- ]
- ]
- ],
- [
- [
- [
- -0.8974236845970154
- ]
- ]
- ],
- [
- [
- [
- -0.9669147729873657
- ]
- ]
- ],
- [
- [
- [
- -0.9588724374771118
- ]
- ]
- ],
- [
- [
- [
- -1.0779979228973389
- ]
- ]
- ],
- [
- [
- [
- -1.5036675930023193
- ]
- ]
- ],
- [
- [
- [
- -1.085407018661499
- ]
- ]
- ],
- [
- [
- [
- -0.9511837959289551
- ]
- ]
- ],
- [
- [
- [
- -1.1415632963180542
- ]
- ]
- ],
- [
- [
- [
- -0.995284914970398
- ]
- ]
- ],
- [
- [
- [
- -1.0743579864501953
- ]
- ]
- ],
- [
- [
- [
- -1.1048157215118408
- ]
- ]
- ],
- [
- [
- [
- -0.8877156972885132
- ]
- ]
- ],
- [
- [
- [
- -1.061960220336914
- ]
- ]
- ],
- [
- [
- [
- -0.8511340618133545
- ]
- ]
- ],
- [
- [
- [
- -0.9933391213417053
- ]
- ]
- ],
- [
- [
- [
- -1.0546026229858398
- ]
- ]
- ],
- [
- [
- [
- -1.1471015214920044
- ]
- ]
- ],
- [
- [
- [
- -1.0036520957946777
- ]
- ]
- ],
- [
- [
- [
- -1.0422816276550293
- ]
- ]
- ],
- [
- [
- [
- -0.9623719453811646
- ]
- ]
- ],
- [
- [
- [
- -1.0570905208587646
- ]
- ]
- ],
- [
- [
- [
- -0.9814915657043457
- ]
- ]
- ],
- [
- [
- [
- -1.0998843908309937
- ]
- ]
- ],
- [
- [
- [
- -1.0130168199539185
- ]
- ]
- ],
- [
- [
- [
- -1.1490646600723267
- ]
- ]
- ],
- [
- [
- [
- -1.2486684322357178
- ]
- ]
- ],
- [
- [
- [
- -1.28632390499115
- ]
- ]
- ],
- [
- [
- [
- -0.9732431173324585
- ]
- ]
- ],
- [
- [
- [
- -1.090385913848877
- ]
- ]
- ],
- [
- [
- [
- -1.0271539688110352
- ]
- ]
- ],
- [
- [
- [
- -1.175118088722229
- ]
- ]
- ],
- [
- [
- [
- -1.0271024703979492
- ]
- ]
- ],
- [
- [
- [
- -1.0429068803787231
- ]
- ]
- ],
- [
- [
- [
- -1.3355507850646973
- ]
- ]
- ],
- [
- [
- [
- -1.0986449718475342
- ]
- ]
- ],
- [
- [
- [
- -0.9025618433952332
- ]
- ]
- ],
- [
- [
- [
- -0.9742262363433838
- ]
- ]
- ],
- [
- [
- [
- -1.079102873802185
- ]
- ]
- ],
- [
- [
- [
- -1.0656567811965942
- ]
- ]
- ],
- [
- [
- [
- -0.8870715498924255
- ]
- ]
- ],
- [
- [
- [
- -1.180302619934082
- ]
- ]
- ],
- [
- [
- [
- -1.0591682195663452
- ]
- ]
- ],
- [
- [
- [
- -1.3211504220962524
- ]
- ]
- ],
- [
- [
- [
- -1.2522222995758057
- ]
- ]
- ],
- [
- [
- [
- -0.9193216562271118
- ]
- ]
- ],
- [
- [
- [
- -0.9008913636207581
- ]
- ]
- ],
- [
- [
- [
- -1.2300808429718018
- ]
- ]
- ],
- [
- [
- [
- -1.063359260559082
- ]
- ]
- ],
- [
- [
- [
- -1.6895217895507812
- ]
- ]
- ],
- [
- [
- [
- -0.8930205702781677
- ]
- ]
- ],
- [
- [
- [
- -0.9828954935073853
- ]
- ]
- ],
- [
- [
- [
- -0.9596538543701172
- ]
- ]
- ],
- [
- [
- [
- -1.2376537322998047
- ]
- ]
- ],
- [
- [
- [
- -1.0304819345474243
- ]
- ]
- ],
- [
- [
- [
- -1.133754014968872
- ]
- ]
- ],
- [
- [
- [
- -1.1909630298614502
- ]
- ]
- ],
- [
- [
- [
- -1.1091370582580566
- ]
- ]
- ],
- [
- [
- [
- -1.1710139513015747
- ]
- ]
- ],
- [
- [
- [
- -1.2166528701782227
- ]
- ]
- ],
- [
- [
- [
- -1.1042399406433105
- ]
- ]
- ],
- [
- [
- [
- -0.9472065567970276
- ]
- ]
- ],
- [
- [
- [
- -0.9535732269287109
- ]
- ]
- ],
- [
- [
- [
- -1.4094656705856323
- ]
- ]
- ],
- [
- [
- [
- -0.9438491463661194
- ]
- ]
- ],
- [
- [
- [
- -0.9314394593238831
- ]
- ]
- ],
- [
- [
- [
- -1.2167338132858276
- ]
- ]
- ],
- [
- [
- [
- -1.084581971168518
- ]
- ]
- ],
- [
- [
- [
- -0.9906135201454163
- ]
- ]
- ],
- [
- [
- [
- -1.109767198562622
- ]
- ]
- ],
- [
- [
- [
- -1.1694353818893433
- ]
- ]
- ],
- [
- [
- [
- -0.9967679977416992
- ]
- ]
- ],
- [
- [
- [
- -0.9304764866828918
- ]
- ]
- ],
- [
- [
- [
- -1.2569602727890015
- ]
- ]
- ],
- [
- [
- [
- -1.4095278978347778
- ]
- ]
- ],
- [
- [
- [
- -1.1177442073822021
- ]
- ]
- ],
- [
- [
- [
- -1.1069436073303223
- ]
- ]
- ],
- [
- [
- [
- -1.4498186111450195
- ]
- ]
- ],
- [
- [
- [
- -1.1434459686279297
- ]
- ]
- ],
- [
- [
- [
- -1.0918574333190918
- ]
- ]
- ],
- [
- [
- [
- -1.0191292762756348
- ]
- ]
- ],
- [
- [
- [
- -1.0982662439346313
- ]
- ]
- ],
- [
- [
- [
- -1.1418126821517944
- ]
- ]
- ],
- [
- [
- [
- -0.9569193124771118
- ]
- ]
- ],
- [
- [
- [
- -0.9890464544296265
- ]
- ]
- ],
- [
- [
- [
- -0.9381627440452576
- ]
- ]
- ],
- [
- [
- [
- -1.0574634075164795
- ]
- ]
- ],
- [
- [
- [
- -1.0875447988510132
- ]
- ]
- ],
- [
- [
- [
- -1.070379376411438
- ]
- ]
- ],
- [
- [
- [
- -0.9775957465171814
- ]
- ]
- ],
- [
- [
- [
- -1.0251274108886719
- ]
- ]
- ],
- [
- [
- [
- -1.1181633472442627
- ]
- ]
- ],
- [
- [
- [
- -1.0554866790771484
- ]
- ]
- ],
- [
- [
- [
- -0.8782362341880798
- ]
- ]
- ],
- [
- [
- [
- -1.081396222114563
- ]
- ]
- ],
- [
- [
- [
- -0.999630868434906
- ]
- ]
- ],
- [
- [
- [
- -1.0213637351989746
- ]
- ]
- ],
- [
- [
- [
- -1.0546178817749023
- ]
- ]
- ],
- [
- [
- [
- -0.9052988886833191
- ]
- ]
- ],
- [
- [
- [
- -1.1843880414962769
- ]
- ]
- ],
- [
- [
- [
- -1.0908010005950928
- ]
- ]
- ],
- [
- [
- [
- -0.8818742036819458
- ]
- ]
- ],
- [
- [
- [
- -0.9863035678863525
- ]
- ]
- ],
- [
- [
- [
- -1.0003252029418945
- ]
- ]
- ],
- [
- [
- [
- -1.356971025466919
- ]
- ]
- ],
- [
- [
- [
- -0.9092697501182556
- ]
- ]
- ],
- [
- [
- [
- -0.974674642086029
- ]
- ]
- ],
- [
- [
- [
- -1.1732672452926636
- ]
- ]
- ],
- [
- [
- [
- -1.048018455505371
- ]
- ]
- ],
- [
- [
- [
- -1.0168042182922363
- ]
- ]
- ],
- [
- [
- [
- -1.164398431777954
- ]
- ]
- ],
- [
- [
- [
- -1.1958274841308594
- ]
- ]
- ],
- [
- [
- [
- -1.0630402565002441
- ]
- ]
- ],
- [
- [
- [
- -0.9315245151519775
- ]
- ]
- ],
- [
- [
- [
- -0.9949636459350586
- ]
- ]
- ],
- [
- [
- [
- -1.2398091554641724
- ]
- ]
- ],
- [
- [
- [
- -1.1028319597244263
- ]
- ]
- ],
- [
- [
- [
- -1.0009875297546387
- ]
- ]
- ],
- [
- [
- [
- -0.8744645714759827
- ]
- ]
- ],
- [
- [
- [
- -1.1580833196640015
- ]
- ]
- ],
- [
- [
- [
- -0.8973917365074158
- ]
- ]
- ],
- [
- [
- [
- -1.0696721076965332
- ]
- ]
- ],
- [
- [
- [
- -0.8751872181892395
- ]
- ]
- ],
- [
- [
- [
- -1.0858561992645264
- ]
- ]
- ],
- [
- [
- [
- -0.956839382648468
- ]
- ]
- ],
- [
- [
- [
- -1.0391230583190918
- ]
- ]
- ],
- [
- [
- [
- -1.2111361026763916
- ]
- ]
- ],
- [
- [
- [
- -0.9947336316108704
- ]
- ]
- ],
- [
- [
- [
- -0.9011788368225098
- ]
- ]
- ],
- [
- [
- [
- -1.0902773141860962
- ]
- ]
- ],
- [
- [
- [
- -1.2022267580032349
- ]
- ]
- ],
- [
- [
- [
- -1.0447752475738525
- ]
- ]
- ],
- [
- [
- [
- -0.9791738986968994
- ]
- ]
- ],
- [
- [
- [
- -0.975117027759552
- ]
- ]
- ],
- [
- [
- [
- -1.0790438652038574
- ]
- ]
- ],
- [
- [
- [
- -1.0845134258270264
- ]
- ]
- ],
- [
- [
- [
- -0.9572739601135254
- ]
- ]
- ],
- [
- [
- [
- -1.0808404684066772
- ]
- ]
- ],
- [
- [
- [
- -1.039548397064209
- ]
- ]
- ],
- [
- [
- [
- -0.9536731243133545
- ]
- ]
- ],
- [
- [
- [
- -0.9342179298400879
- ]
- ]
- ],
- [
- [
- [
- -0.9340324997901917
- ]
- ]
- ],
- [
- [
- [
- -0.9412869811058044
- ]
- ]
- ],
- [
- [
- [
- -0.9349332451820374
- ]
- ]
- ],
- [
- [
- [
- -1.258759617805481
- ]
- ]
- ],
- [
- [
- [
- -1.3072147369384766
- ]
- ]
- ],
- [
- [
- [
- -1.3572763204574585
- ]
- ]
- ],
- [
- [
- [
- -1.007968783378601
- ]
- ]
- ],
- [
- [
- [
- -0.8810752630233765
- ]
- ]
- ],
- [
- [
- [
- -1.0278948545455933
- ]
- ]
- ],
- [
- [
- [
- -0.8891944885253906
- ]
- ]
- ],
- [
- [
- [
- -0.8978524804115295
- ]
- ]
- ],
- [
- [
- [
- -1.0035778284072876
- ]
- ]
- ],
- [
- [
- [
- -1.1754200458526611
- ]
- ]
- ],
- [
- [
- [
- -1.1995974779129028
- ]
- ]
- ],
- [
- [
- [
- -1.2424542903900146
- ]
- ]
- ],
- [
- [
- [
- -0.9533348083496094
- ]
- ]
- ],
- [
- [
- [
- -0.9028401970863342
- ]
- ]
- ],
- [
- [
- [
- -0.8905308842658997
- ]
- ]
- ],
- [
- [
- [
- -0.9136421084403992
- ]
- ]
- ],
- [
- [
- [
- -1.0208842754364014
- ]
- ]
- ],
- [
- [
- [
- -1.249997854232788
- ]
- ]
- ],
- [
- [
- [
- -0.9038533568382263
- ]
- ]
- ],
- [
- [
- [
- -1.0959959030151367
- ]
- ]
- ],
- [
- [
- [
- -1.0703538656234741
- ]
- ]
- ],
- [
- [
- [
- -0.9960085153579712
- ]
- ]
- ],
- [
- [
- [
- -1.1064180135726929
- ]
- ]
- ],
- [
- [
- [
- -1.0244805812835693
- ]
- ]
- ],
- [
- [
- [
- -1.1023123264312744
- ]
- ]
- ],
- [
- [
- [
- -1.1334660053253174
- ]
- ]
- ],
- [
- [
- [
- -1.1243915557861328
- ]
- ]
- ],
- [
- [
- [
- -1.038134217262268
- ]
- ]
- ],
- [
- [
- [
- -0.9326073527336121
- ]
- ]
- ],
- [
- [
- [
- -0.9266437888145447
- ]
- ]
- ],
- [
- [
- [
- -0.9886530637741089
- ]
- ]
- ],
- [
- [
- [
- -1.3859061002731323
- ]
- ]
- ],
- [
- [
- [
- -1.0442261695861816
- ]
- ]
- ],
- [
- [
- [
- -1.1705939769744873
- ]
- ]
- ],
- [
- [
- [
- -0.9767018556594849
- ]
- ]
- ],
- [
- [
- [
- -0.9926846623420715
- ]
- ]
- ],
- [
- [
- [
- -1.128870964050293
- ]
- ]
- ],
- [
- [
- [
- -0.9656462669372559
- ]
- ]
- ],
- [
- [
- [
- -1.0403693914413452
- ]
- ]
- ],
- [
- [
- [
- -1.192579746246338
- ]
- ]
- ],
- [
- [
- [
- -1.0518159866333008
- ]
- ]
- ],
- [
- [
- [
- -0.9633121490478516
- ]
- ]
- ],
- [
- [
- [
- -1.0014386177062988
- ]
- ]
- ],
- [
- [
- [
- -0.8739585280418396
- ]
- ]
- ],
- [
- [
- [
- -1.1564912796020508
- ]
- ]
- ],
- [
- [
- [
- -1.1049473285675049
- ]
- ]
- ],
- [
- [
- [
- -0.9471585154533386
- ]
- ]
- ],
- [
- [
- [
- -1.0494964122772217
- ]
- ]
- ],
- [
- [
- [
- -1.0051406621932983
- ]
- ]
- ],
- [
- [
- [
- -0.9241628646850586
- ]
- ]
- ],
- [
- [
- [
- -1.2139900922775269
- ]
- ]
- ],
- [
- [
- [
- -0.8791210651397705
- ]
- ]
- ],
- [
- [
- [
- -1.0671290159225464
- ]
- ]
- ],
- [
- [
- [
- -1.2966636419296265
- ]
- ]
- ],
- [
- [
- [
- -1.0498162508010864
- ]
- ]
- ],
- [
- [
- [
- -1.2444278001785278
- ]
- ]
- ],
- [
- [
- [
- -0.8769262433052063
- ]
- ]
- ],
- [
- [
- [
- -1.057062029838562
- ]
- ]
- ],
- [
- [
- [
- -1.0791765451431274
- ]
- ]
- ],
- [
- [
- [
- -0.8913027048110962
- ]
- ]
- ],
- [
- [
- [
- -1.0281563997268677
- ]
- ]
- ],
- [
- [
- [
- -1.0479307174682617
- ]
- ]
- ],
- [
- [
- [
- -1.0180803537368774
- ]
- ]
- ],
- [
- [
- [
- -1.0311634540557861
- ]
- ]
- ],
- [
- [
- [
- -0.9627006649971008
- ]
- ]
- ],
- [
- [
- [
- -1.1538949012756348
- ]
- ]
- ],
- [
- [
- [
- -1.276624083518982
- ]
- ]
- ],
- [
- [
- [
- -1.0041576623916626
- ]
- ]
- ],
- [
- [
- [
- -0.9421504735946655
- ]
- ]
- ],
- [
- [
- [
- -1.10451340675354
- ]
- ]
- ],
- [
- [
- [
- -0.9514027833938599
- ]
- ]
- ],
- [
- [
- [
- -0.8607175350189209
- ]
- ]
- ],
- [
- [
- [
- -1.0594812631607056
- ]
- ]
- ],
- [
- [
- [
- -1.1915260553359985
- ]
- ]
- ],
- [
- [
- [
- -1.2745659351348877
- ]
- ]
- ],
- [
- [
- [
- -1.3023194074630737
- ]
- ]
- ],
- [
- [
- [
- -1.1491321325302124
- ]
- ]
- ],
- [
- [
- [
- -1.1788514852523804
- ]
- ]
- ],
- [
- [
- [
- -1.041752815246582
- ]
- ]
- ],
- [
- [
- [
- -1.0274423360824585
- ]
- ]
- ],
- [
- [
- [
- -1.0060992240905762
- ]
- ]
- ],
- [
- [
- [
- -1.043733835220337
- ]
- ]
- ],
- [
- [
- [
- -1.0043559074401855
- ]
- ]
- ],
- [
- [
- [
- -1.242361307144165
- ]
- ]
- ],
- [
- [
- [
- -1.0917469263076782
- ]
- ]
- ],
- [
- [
- [
- -0.8868166208267212
- ]
- ]
- ],
- [
- [
- [
- -1.1185859441757202
- ]
- ]
- ],
- [
- [
- [
- -1.215065836906433
- ]
- ]
- ],
- [
- [
- [
- -1.1409235000610352
- ]
- ]
- ],
- [
- [
- [
- -1.3653721809387207
- ]
- ]
- ],
- [
- [
- [
- -1.0264019966125488
- ]
- ]
- ],
- [
- [
- [
- -1.0741392374038696
- ]
- ]
- ],
- [
- [
- [
- -1.0314425230026245
- ]
- ]
- ],
- [
- [
- [
- -1.0425899028778076
- ]
- ]
- ],
- [
- [
- [
- -1.2318168878555298
- ]
- ]
- ],
- [
- [
- [
- -1.0735887289047241
- ]
- ]
- ],
- [
- [
- [
- -0.9825544357299805
- ]
- ]
- ],
- [
- [
- [
- -1.2492674589157104
- ]
- ]
- ],
- [
- [
- [
- -1.0203065872192383
- ]
- ]
- ],
- [
- [
- [
- -1.081558108329773
- ]
- ]
- ],
- [
- [
- [
- -0.937170684337616
- ]
- ]
- ],
- [
- [
- [
- -0.9265850186347961
- ]
- ]
- ],
- [
- [
- [
- -1.0881130695343018
- ]
- ]
- ],
- [
- [
- [
- -0.9770416617393494
- ]
- ]
- ],
- [
- [
- [
- -1.2899556159973145
- ]
- ]
- ],
- [
- [
- [
- -0.9241189360618591
- ]
- ]
- ],
- [
- [
- [
- -1.2112699747085571
- ]
- ]
- ],
- [
- [
- [
- -0.8882724046707153
- ]
- ]
- ],
- [
- [
- [
- -1.0282716751098633
- ]
- ]
- ],
- [
- [
- [
- -0.9828348755836487
- ]
- ]
- ],
- [
- [
- [
- -1.0737230777740479
- ]
- ]
- ],
- [
- [
- [
- -0.9871606230735779
- ]
- ]
- ],
- [
- [
- [
- -0.9771016836166382
- ]
- ]
- ],
- [
- [
- [
- -0.9747909307479858
- ]
- ]
- ],
- [
- [
- [
- -1.1770833730697632
- ]
- ]
- ],
- [
- [
- [
- -0.8328016400337219
- ]
- ]
- ],
- [
- [
- [
- -1.443938970565796
- ]
- ]
- ],
- [
- [
- [
- -1.0111873149871826
- ]
- ]
- ],
- [
- [
- [
- -1.174965500831604
- ]
- ]
- ],
- [
- [
- [
- -0.9433943629264832
- ]
- ]
- ],
- [
- [
- [
- -0.9464369416236877
- ]
- ]
- ],
- [
- [
- [
- -1.1407573223114014
- ]
- ]
- ],
- [
- [
- [
- -0.9741951823234558
- ]
- ]
- ],
- [
- [
- [
- -1.0612951517105103
- ]
- ]
- ],
- [
- [
- [
- -1.1312328577041626
- ]
- ]
- ],
- [
- [
- [
- -0.9462396502494812
- ]
- ]
- ],
- [
- [
- [
- -0.8338273763656616
- ]
- ]
- ],
- [
- [
- [
- -0.9607547521591187
- ]
- ]
- ],
- [
- [
- [
- -0.9146403074264526
- ]
- ]
- ],
- [
- [
- [
- -0.9611701369285583
- ]
- ]
- ],
- [
- [
- [
- -1.1471474170684814
- ]
- ]
- ],
- [
- [
- [
- -1.1801178455352783
- ]
- ]
- ],
- [
- [
- [
- -1.1448014974594116
- ]
- ]
- ],
- [
- [
- [
- -0.9068194031715393
- ]
- ]
- ],
- [
- [
- [
- -1.0315921306610107
- ]
- ]
- ],
- [
- [
- [
- -0.9900477528572083
- ]
- ]
- ],
- [
- [
- [
- -0.9586200714111328
- ]
- ]
- ],
- [
- [
- [
- -1.0193208456039429
- ]
- ]
- ],
- [
- [
- [
- -0.9869599938392639
- ]
- ]
- ],
- [
- [
- [
- -1.0661892890930176
- ]
- ]
- ],
- [
- [
- [
- -1.1352925300598145
- ]
- ]
- ],
- [
- [
- [
- -1.2916767597198486
- ]
- ]
- ],
- [
- [
- [
- -1.1136655807495117
- ]
- ]
- ],
- [
- [
- [
- -1.2857850790023804
- ]
- ]
- ],
- [
- [
- [
- -1.0083401203155518
- ]
- ]
- ],
- [
- [
- [
- -0.9288949966430664
- ]
- ]
- ],
- [
- [
- [
- -1.1385548114776611
- ]
- ]
- ],
- [
- [
- [
- -0.8625121116638184
- ]
- ]
- ],
- [
- [
- [
- -1.2757608890533447
- ]
- ]
- ],
- [
- [
- [
- -1.0160857439041138
- ]
- ]
- ],
- [
- [
- [
- -1.072108268737793
- ]
- ]
- ],
- [
- [
- [
- -0.8454800248146057
- ]
- ]
- ],
- [
- [
- [
- -1.2928614616394043
- ]
- ]
- ],
- [
- [
- [
- -1.1194101572036743
- ]
- ]
- ],
- [
- [
- [
- -0.9775660037994385
- ]
- ]
- ],
- [
- [
- [
- -0.9476670622825623
- ]
- ]
- ],
- [
- [
- [
- -0.924085259437561
- ]
- ]
- ],
- [
- [
- [
- -0.948512852191925
- ]
- ]
- ],
- [
- [
- [
- -0.9827684760093689
- ]
- ]
- ],
- [
- [
- [
- -1.1721360683441162
- ]
- ]
- ],
- [
- [
- [
- -0.9274629950523376
- ]
- ]
- ],
- [
- [
- [
- -0.9326360821723938
- ]
- ]
- ],
- [
- [
- [
- -0.9119270443916321
- ]
- ]
- ],
- [
- [
- [
- -1.1501086950302124
- ]
- ]
- ],
- [
- [
- [
- -0.9949315190315247
- ]
- ]
- ],
- [
- [
- [
- -1.081493854522705
- ]
- ]
- ],
- [
- [
- [
- -1.0049703121185303
- ]
- ]
- ],
- [
- [
- [
- -1.0624843835830688
- ]
- ]
- ],
- [
- [
- [
- -1.1247005462646484
- ]
- ]
- ],
- [
- [
- [
- -1.0666905641555786
- ]
- ]
- ],
- [
- [
- [
- -0.9057600498199463
- ]
- ]
- ],
- [
- [
- [
- -0.9993549585342407
- ]
- ]
- ],
- [
- [
- [
- -1.0748307704925537
- ]
- ]
- ],
- [
- [
- [
- -0.8645081520080566
- ]
- ]
- ],
- [
- [
- [
- -1.0128540992736816
- ]
- ]
- ],
- [
- [
- [
- -1.1865665912628174
- ]
- ]
- ],
- [
- [
- [
- -1.0805553197860718
- ]
- ]
- ],
- [
- [
- [
- -0.9412241578102112
- ]
- ]
- ],
- [
- [
- [
- -1.0709384679794312
- ]
- ]
- ],
- [
- [
- [
- -1.074902892112732
- ]
- ]
- ],
- [
- [
- [
- -0.9770339727401733
- ]
- ]
- ],
- [
- [
- [
- -1.1531246900558472
- ]
- ]
- ],
- [
- [
- [
- -1.045769214630127
- ]
- ]
- ],
- [
- [
- [
- -0.8681127429008484
- ]
- ]
- ],
- [
- [
- [
- -1.0733221769332886
- ]
- ]
- ],
- [
- [
- [
- -1.1108791828155518
- ]
- ]
- ],
- [
- [
- [
- -1.1578302383422852
- ]
- ]
- ],
- [
- [
- [
- -1.0519989728927612
- ]
- ]
- ],
- [
- [
- [
- -1.064167857170105
- ]
- ]
- ],
- [
- [
- [
- -0.9444636106491089
- ]
- ]
- ],
- [
- [
- [
- -1.1508172750473022
- ]
- ]
- ],
- [
- [
- [
- -1.0227632522583008
- ]
- ]
- ],
- [
- [
- [
- -1.1821093559265137
- ]
- ]
- ],
- [
- [
- [
- -1.0196737051010132
- ]
- ]
- ],
- [
- [
- [
- -0.9042742252349854
- ]
- ]
- ],
- [
- [
- [
- -0.9510952234268188
- ]
- ]
- ],
- [
- [
- [
- -1.1046959161758423
- ]
- ]
- ],
- [
- [
- [
- -1.0874121189117432
- ]
- ]
- ],
- [
- [
- [
- -1.0555789470672607
- ]
- ]
- ],
- [
- [
- [
- -0.9716154932975769
- ]
- ]
- ],
- [
- [
- [
- -1.1370609998703003
- ]
- ]
- ],
- [
- [
- [
- -0.8890295624732971
- ]
- ]
- ],
- [
- [
- [
- -1.076837182044983
- ]
- ]
- ],
- [
- [
- [
- -1.2104840278625488
- ]
- ]
- ],
- [
- [
- [
- -1.001082181930542
- ]
- ]
- ],
- [
- [
- [
- -1.0418784618377686
- ]
- ]
- ],
- [
- [
- [
- -1.1214569807052612
- ]
- ]
- ],
- [
- [
- [
- -1.0205363035202026
- ]
- ]
- ],
- [
- [
- [
- -0.949020266532898
- ]
- ]
- ],
- [
- [
- [
- -0.9941352605819702
- ]
- ]
- ],
- [
- [
- [
- -1.0550471544265747
- ]
- ]
- ],
- [
- [
- [
- -1.1806210279464722
- ]
- ]
- ],
- [
- [
- [
- -1.063831090927124
- ]
- ]
- ],
- [
- [
- [
- -0.9540398716926575
- ]
- ]
- ],
- [
- [
- [
- -1.3580119609832764
- ]
- ]
- ],
- [
- [
- [
- -1.0793349742889404
- ]
- ]
- ],
- [
- [
- [
- -1.105453372001648
- ]
- ]
- ],
- [
- [
- [
- -1.153299331665039
- ]
- ]
- ],
- [
- [
- [
- -1.4000060558319092
- ]
- ]
- ],
- [
- [
- [
- -0.9018593430519104
- ]
- ]
- ],
- [
- [
- [
- -1.1524367332458496
- ]
- ]
- ],
- [
- [
- [
- -1.1427441835403442
- ]
- ]
- ],
- [
- [
- [
- -1.062362551689148
- ]
- ]
- ],
- [
- [
- [
- -1.1045435667037964
- ]
- ]
- ],
- [
- [
- [
- -1.2931828498840332
- ]
- ]
- ],
- [
- [
- [
- -0.9359686374664307
- ]
- ]
- ],
- [
- [
- [
- -0.9755357503890991
- ]
- ]
- ],
- [
- [
- [
- -0.946886420249939
- ]
- ]
- ],
- [
- [
- [
- -0.8571058511734009
- ]
- ]
- ],
- [
- [
- [
- -1.0224840641021729
- ]
- ]
- ],
- [
- [
- [
- -0.9571502804756165
- ]
- ]
- ],
- [
- [
- [
- -0.8671402335166931
- ]
- ]
- ],
- [
- [
- [
- -1.0481683015823364
- ]
- ]
- ],
- [
- [
- [
- -1.0317639112472534
- ]
- ]
- ],
- [
- [
- [
- -1.2178491353988647
- ]
- ]
- ],
- [
- [
- [
- -1.008280873298645
- ]
- ]
- ],
- [
- [
- [
- -0.9531464576721191
- ]
- ]
- ],
- [
- [
- [
- -1.0938166379928589
- ]
- ]
- ],
- [
- [
- [
- -0.8070809245109558
- ]
- ]
- ],
- [
- [
- [
- -0.8963366150856018
- ]
- ]
- ],
- [
- [
- [
- -0.9782972931861877
- ]
- ]
- ],
- [
- [
- [
- -1.207140564918518
- ]
- ]
- ],
- [
- [
- [
- -0.8975882530212402
- ]
- ]
- ],
- [
- [
- [
- -1.0835970640182495
- ]
- ]
- ],
- [
- [
- [
- -0.9120482206344604
- ]
- ]
- ],
- [
- [
- [
- -0.9942784309387207
- ]
- ]
- ],
- [
- [
- [
- -1.1974923610687256
- ]
- ]
- ],
- [
- [
- [
- -1.0429184436798096
- ]
- ]
- ],
- [
- [
- [
- -0.8633242249488831
- ]
- ]
- ],
- [
- [
- [
- -0.9132651090621948
- ]
- ]
- ],
- [
- [
- [
- -0.9730945825576782
- ]
- ]
- ],
- [
- [
- [
- -1.0051466226577759
- ]
- ]
- ],
- [
- [
- [
- -1.1378281116485596
- ]
- ]
- ],
- [
- [
- [
- -1.0244734287261963
- ]
- ]
- ],
- [
- [
- [
- -0.8485549688339233
- ]
- ]
- ],
- [
- [
- [
- -1.0585641860961914
- ]
- ]
- ],
- [
- [
- [
- -0.9116373658180237
- ]
- ]
- ],
- [
- [
- [
- -1.0814012289047241
- ]
- ]
- ],
- [
- [
- [
- -0.8764873147010803
- ]
- ]
- ],
- [
- [
- [
- -0.9200323224067688
- ]
- ]
- ],
- [
- [
- [
- -1.1397144794464111
- ]
- ]
- ],
- [
- [
- [
- -1.0758315324783325
- ]
- ]
- ],
- [
- [
- [
- -0.9473378658294678
- ]
- ]
- ],
- [
- [
- [
- -0.8864887356758118
- ]
- ]
- ],
- [
- [
- [
- -1.027967929840088
- ]
- ]
- ],
- [
- [
- [
- -1.0994118452072144
- ]
- ]
- ],
- [
- [
- [
- -1.3142101764678955
- ]
- ]
- ],
- [
- [
- [
- -0.9950578212738037
- ]
- ]
- ],
- [
- [
- [
- -0.954127311706543
- ]
- ]
- ],
- [
- [
- [
- -1.0410901308059692
- ]
- ]
- ],
- [
- [
- [
- -1.0565950870513916
- ]
- ]
- ],
- [
- [
- [
- -1.037336826324463
- ]
- ]
- ],
- [
- [
- [
- -1.0508824586868286
- ]
- ]
- ],
- [
- [
- [
- -1.0649062395095825
- ]
- ]
- ],
- [
- [
- [
- -1.2643682956695557
- ]
- ]
- ],
- [
- [
- [
- -1.1107748746871948
- ]
- ]
- ],
- [
- [
- [
- -1.126798152923584
- ]
- ]
- ],
- [
- [
- [
- -0.9122111797332764
- ]
- ]
- ],
- [
- [
- [
- -0.9524283409118652
- ]
- ]
- ],
- [
- [
- [
- -1.2405966520309448
- ]
- ]
- ],
- [
- [
- [
- -1.1679342985153198
- ]
- ]
- ],
- [
- [
- [
- -1.0392626523971558
- ]
- ]
- ],
- [
- [
- [
- -0.8760585188865662
- ]
- ]
- ],
- [
- [
- [
- -0.8741157054901123
- ]
- ]
- ],
- [
- [
- [
- -0.9548141360282898
- ]
- ]
- ],
- [
- [
- [
- -0.9706990122795105
- ]
- ]
- ],
- [
- [
- [
- -1.1455386877059937
- ]
- ]
- ],
- [
- [
- [
- -0.8311827778816223
- ]
- ]
- ],
- [
- [
- [
- -0.8358185887336731
- ]
- ]
- ],
- [
- [
- [
- -0.9647719264030457
- ]
- ]
- ],
- [
- [
- [
- -1.0174694061279297
- ]
- ]
- ],
- [
- [
- [
- -1.0811899900436401
- ]
- ]
- ],
- [
- [
- [
- -1.0228279829025269
- ]
- ]
- ],
- [
- [
- [
- -1.3363714218139648
- ]
- ]
- ],
- [
- [
- [
- -1.202298879623413
- ]
- ]
- ],
- [
- [
- [
- -0.9641047120094299
- ]
- ]
- ],
- [
- [
- [
- -1.1036877632141113
- ]
- ]
- ],
- [
- [
- [
- -1.044417381286621
- ]
- ]
- ],
- [
- [
- [
- -1.2973098754882812
- ]
- ]
- ],
- [
- [
- [
- -1.3021875619888306
- ]
- ]
- ],
- [
- [
- [
- -0.9591345191001892
- ]
- ]
- ],
- [
- [
- [
- -0.9549047946929932
- ]
- ]
- ],
- [
- [
- [
- -0.9558269381523132
- ]
- ]
- ],
- [
- [
- [
- -1.1656184196472168
- ]
- ]
- ],
- [
- [
- [
- -1.3799079656600952
- ]
- ]
- ],
- [
- [
- [
- -1.1299395561218262
- ]
- ]
- ],
- [
- [
- [
- -1.0141754150390625
- ]
- ]
- ],
- [
- [
- [
- -0.8755527138710022
- ]
- ]
- ],
- [
- [
- [
- -0.9361050128936768
- ]
- ]
- ],
- [
- [
- [
- -0.968070387840271
- ]
- ]
- ],
- [
- [
- [
- -0.9279971718788147
- ]
- ]
- ],
- [
- [
- [
- -1.1448434591293335
- ]
- ]
- ],
- [
- [
- [
- -0.858123242855072
- ]
- ]
- ],
- [
- [
- [
- -1.1218311786651611
- ]
- ]
- ],
- [
- [
- [
- -0.97364342212677
- ]
- ]
- ],
- [
- [
- [
- -1.0089670419692993
- ]
- ]
- ],
- [
- [
- [
- -1.1893596649169922
- ]
- ]
- ],
- [
- [
- [
- -1.1618074178695679
- ]
- ]
- ],
- [
- [
- [
- -1.0006062984466553
- ]
- ]
- ],
- [
- [
- [
- -1.0363999605178833
- ]
- ]
- ],
- [
- [
- [
- -1.4448304176330566
- ]
- ]
- ],
- [
- [
- [
- -0.9783505797386169
- ]
- ]
- ],
- [
- [
- [
- -1.063950538635254
- ]
- ]
- ],
- [
- [
- [
- -1.2171812057495117
- ]
- ]
- ],
- [
- [
- [
- -0.9537957906723022
- ]
- ]
- ],
- [
- [
- [
- -1.0810315608978271
- ]
- ]
- ],
- [
- [
- [
- -1.116645097732544
- ]
- ]
- ],
- [
- [
- [
- -0.9056975245475769
- ]
- ]
- ],
- [
- [
- [
- -1.2064576148986816
- ]
- ]
- ],
- [
- [
- [
- -1.0363768339157104
- ]
- ]
- ],
- [
- [
- [
- -0.8926680088043213
- ]
- ]
- ],
- [
- [
- [
- -0.988464891910553
- ]
- ]
- ],
- [
- [
- [
- -1.2780306339263916
- ]
- ]
- ],
- [
- [
- [
- -0.9857171773910522
- ]
- ]
- ],
- [
- [
- [
- -1.25666344165802
- ]
- ]
- ],
- [
- [
- [
- -0.8698002696037292
- ]
- ]
- ],
- [
- [
- [
- -0.9867891669273376
- ]
- ]
- ],
- [
- [
- [
- -0.8669582009315491
- ]
- ]
- ],
- [
- [
- [
- -0.9488417506217957
- ]
- ]
- ],
- [
- [
- [
- -0.9466429948806763
- ]
- ]
- ],
- [
- [
- [
- -0.7996994256973267
- ]
- ]
- ],
- [
- [
- [
- -0.9027645587921143
- ]
- ]
- ],
- [
- [
- [
- -0.8893091082572937
- ]
- ]
- ],
- [
- [
- [
- -0.9615079760551453
- ]
- ]
- ],
- [
- [
- [
- -0.9414946436882019
- ]
- ]
- ],
- [
- [
- [
- -1.154750108718872
- ]
- ]
- ],
- [
- [
- [
- -0.9982889294624329
- ]
- ]
- ],
- [
- [
- [
- -0.9375662803649902
- ]
- ]
- ],
- [
- [
- [
- -1.0495917797088623
- ]
- ]
- ],
- [
- [
- [
- -0.907593846321106
- ]
- ]
- ],
- [
- [
- [
- -0.9003844857215881
- ]
- ]
- ],
- [
- [
- [
- -0.8861998319625854
- ]
- ]
- ],
- [
- [
- [
- -1.1976532936096191
- ]
- ]
- ],
- [
- [
- [
- -0.962557852268219
- ]
- ]
- ],
- [
- [
- [
- -1.0082967281341553
- ]
- ]
- ],
- [
- [
- [
- -1.0035251379013062
- ]
- ]
- ],
- [
- [
- [
- -1.176417589187622
- ]
- ]
- ],
- [
- [
- [
- -1.2831366062164307
- ]
- ]
- ],
- [
- [
- [
- -0.9748857617378235
- ]
- ]
- ],
- [
- [
- [
- -1.2109774351119995
- ]
- ]
- ],
- [
- [
- [
- -1.078963279724121
- ]
- ]
- ],
- [
- [
- [
- -1.0289831161499023
- ]
- ]
- ],
- [
- [
- [
- -1.2135554552078247
- ]
- ]
- ],
- [
- [
- [
- -1.754465103149414
- ]
- ]
- ],
- [
- [
- [
- -1.090802550315857
- ]
- ]
- ],
- [
- [
- [
- -1.0062347650527954
- ]
- ]
- ],
- [
- [
- [
- -1.3429503440856934
- ]
- ]
- ],
- [
- [
- [
- -1.1255489587783813
- ]
- ]
- ],
- [
- [
- [
- -1.0317440032958984
- ]
- ]
- ],
- [
- [
- [
- -1.179051160812378
- ]
- ]
- ],
- [
- [
- [
- -0.8333987593650818
- ]
- ]
- ],
- [
- [
- [
- -0.9396768808364868
- ]
- ]
- ],
- [
- [
- [
- -1.0890417098999023
- ]
- ]
- ],
- [
- [
- [
- -0.9309419393539429
- ]
- ]
- ],
- [
- [
- [
- -1.0102843046188354
- ]
- ]
- ],
- [
- [
- [
- -0.9432196617126465
- ]
- ]
- ],
- [
- [
- [
- -1.1532131433486938
- ]
- ]
- ],
- [
- [
- [
- -1.3022540807724
- ]
- ]
- ],
- [
- [
- [
- -1.2124758958816528
- ]
- ]
- ],
- [
- [
- [
- -0.8487300276756287
- ]
- ]
- ],
- [
- [
- [
- -1.3267371654510498
- ]
- ]
- ],
- [
- [
- [
- -1.0668996572494507
- ]
- ]
- ],
- [
- [
- [
- -1.123834490776062
- ]
- ]
- ],
- [
- [
- [
- -1.0314404964447021
- ]
- ]
- ],
- [
- [
- [
- -0.8755265474319458
- ]
- ]
- ],
- [
- [
- [
- -0.9168115854263306
- ]
- ]
- ],
- [
- [
- [
- -1.068183422088623
- ]
- ]
- ],
- [
- [
- [
- -1.1002918481826782
- ]
- ]
- ],
- [
- [
- [
- -0.9287847876548767
- ]
- ]
- ],
- [
- [
- [
- -1.0686533451080322
- ]
- ]
- ],
- [
- [
- [
- -1.1428122520446777
- ]
- ]
- ],
- [
- [
- [
- -0.9422306418418884
- ]
- ]
- ],
- [
- [
- [
- -1.0455546379089355
- ]
- ]
- ],
- [
- [
- [
- -0.9890179634094238
- ]
- ]
- ],
- [
- [
- [
- -1.0845826864242554
- ]
- ]
- ],
- [
- [
- [
- -1.0206300020217896
- ]
- ]
- ],
- [
- [
- [
- -1.0744905471801758
- ]
- ]
- ],
- [
- [
- [
- -1.0404577255249023
- ]
- ]
- ],
- [
- [
- [
- -0.8507762551307678
- ]
- ]
- ],
- [
- [
- [
- -1.1101171970367432
- ]
- ]
- ],
- [
- [
- [
- -1.165541410446167
- ]
- ]
- ],
- [
- [
- [
- -1.1639692783355713
- ]
- ]
- ],
- [
- [
- [
- -1.0935155153274536
- ]
- ]
- ],
- [
- [
- [
- -0.9642266631126404
- ]
- ]
- ],
- [
- [
- [
- -1.0703414678573608
- ]
- ]
- ],
- [
- [
- [
- -1.1228464841842651
- ]
- ]
- ],
- [
- [
- [
- -1.2027513980865479
- ]
- ]
- ],
- [
- [
- [
- -0.9062309265136719
- ]
- ]
- ],
- [
- [
- [
- -1.017543911933899
- ]
- ]
- ],
- [
- [
- [
- -0.8918632864952087
- ]
- ]
- ],
- [
- [
- [
- -0.94833904504776
- ]
- ]
- ],
- [
- [
- [
- -1.1465473175048828
- ]
- ]
- ],
- [
- [
- [
- -0.9237032532691956
- ]
- ]
- ],
- [
- [
- [
- -1.3423292636871338
- ]
- ]
- ],
- [
- [
- [
- -1.110587477684021
- ]
- ]
- ],
- [
- [
- [
- -1.0027050971984863
- ]
- ]
- ],
- [
- [
- [
- -0.859287679195404
- ]
- ]
- ],
- [
- [
- [
- -1.0727876424789429
- ]
- ]
- ],
- [
- [
- [
- -1.1240602731704712
- ]
- ]
- ],
- [
- [
- [
- -1.1620910167694092
- ]
- ]
- ],
- [
- [
- [
- -0.9728571176528931
- ]
- ]
- ],
- [
- [
- [
- -1.0243632793426514
- ]
- ]
- ],
- [
- [
- [
- -1.0096006393432617
- ]
- ]
- ],
- [
- [
- [
- -0.9416310787200928
- ]
- ]
- ],
- [
- [
- [
- -1.0457837581634521
- ]
- ]
- ],
- [
- [
- [
- -0.9331189393997192
- ]
- ]
- ],
- [
- [
- [
- -0.9473450183868408
- ]
- ]
- ],
- [
- [
- [
- -0.9231617450714111
- ]
- ]
- ],
- [
- [
- [
- -0.9393772482872009
- ]
- ]
- ],
- [
- [
- [
- -0.9252429604530334
- ]
- ]
- ],
- [
- [
- [
- -1.1057758331298828
- ]
- ]
- ],
- [
- [
- [
- -1.0021097660064697
- ]
- ]
- ],
- [
- [
- [
- -0.868303656578064
- ]
- ]
- ],
- [
- [
- [
- -1.1718151569366455
- ]
- ]
- ],
- [
- [
- [
- -1.0418108701705933
- ]
- ]
- ],
- [
- [
- [
- -1.3579179048538208
- ]
- ]
- ],
- [
- [
- [
- -0.914419412612915
- ]
- ]
- ],
- [
- [
- [
- -0.9089223742485046
- ]
- ]
- ],
- [
- [
- [
- -1.0666972398757935
- ]
- ]
- ],
- [
- [
- [
- -0.9895171523094177
- ]
- ]
- ],
- [
- [
- [
- -1.1276636123657227
- ]
- ]
- ],
- [
- [
- [
- -1.0933486223220825
- ]
- ]
- ],
- [
- [
- [
- -1.0089737176895142
- ]
- ]
- ],
- [
- [
- [
- -1.0134998559951782
- ]
- ]
- ],
- [
- [
- [
- -0.9586994051933289
- ]
- ]
- ],
- [
- [
- [
- -0.9611824154853821
- ]
- ]
- ],
- [
- [
- [
- -0.9234668612480164
- ]
- ]
- ],
- [
- [
- [
- -0.9769498109817505
- ]
- ]
- ],
- [
- [
- [
- -1.0329909324645996
- ]
- ]
- ],
- [
- [
- [
- -1.109122633934021
- ]
- ]
- ],
- [
- [
- [
- -1.016844391822815
- ]
- ]
- ],
- [
- [
- [
- -1.1730237007141113
- ]
- ]
- ],
- [
- [
- [
- -0.8907853364944458
- ]
- ]
- ],
- [
- [
- [
- -1.0471842288970947
- ]
- ]
- ],
- [
- [
- [
- -0.9165148735046387
- ]
- ]
- ],
- [
- [
- [
- -1.183213472366333
- ]
- ]
- ],
- [
- [
- [
- -0.9386231303215027
- ]
- ]
- ],
- [
- [
- [
- -1.2009954452514648
- ]
- ]
- ],
- [
- [
- [
- -0.9719381332397461
- ]
- ]
- ],
- [
- [
- [
- -0.9470806121826172
- ]
- ]
- ],
- [
- [
- [
- -1.0678826570510864
- ]
- ]
- ],
- [
- [
- [
- -0.8914904594421387
- ]
- ]
- ],
- [
- [
- [
- -1.2094393968582153
- ]
- ]
- ],
- [
- [
- [
- -1.0731004476547241
- ]
- ]
- ],
- [
- [
- [
- -0.9327958822250366
- ]
- ]
- ],
- [
- [
- [
- -1.1446822881698608
- ]
- ]
- ],
- [
- [
- [
- -0.8550580739974976
- ]
- ]
- ],
- [
- [
- [
- -0.9099161624908447
- ]
- ]
- ],
- [
- [
- [
- -0.8784576654434204
- ]
- ]
- ],
- [
- [
- [
- -1.0977330207824707
- ]
- ]
- ],
- [
- [
- [
- -1.131624460220337
- ]
- ]
- ],
- [
- [
- [
- -1.0359814167022705
- ]
- ]
- ],
- [
- [
- [
- -1.1548970937728882
- ]
- ]
- ],
- [
- [
- [
- -1.0996190309524536
- ]
- ]
- ],
- [
- [
- [
- -1.1651257276535034
- ]
- ]
- ],
- [
- [
- [
- -1.0054795742034912
- ]
- ]
- ],
- [
- [
- [
- -1.081498622894287
- ]
- ]
- ],
- [
- [
- [
- -1.1673420667648315
- ]
- ]
- ],
- [
- [
- [
- -1.0609326362609863
- ]
- ]
- ],
- [
- [
- [
- -1.1646230220794678
- ]
- ]
- ],
- [
- [
- [
- -1.2004386186599731
- ]
- ]
- ],
- [
- [
- [
- -1.2459582090377808
- ]
- ]
- ],
- [
- [
- [
- -0.9282576441764832
- ]
- ]
- ],
- [
- [
- [
- -0.9680273532867432
- ]
- ]
- ],
- [
- [
- [
- -1.0662275552749634
- ]
- ]
- ],
- [
- [
- [
- -0.9931215047836304
- ]
- ]
- ],
- [
- [
- [
- -0.9181368947029114
- ]
- ]
- ],
- [
- [
- [
- -1.0280262231826782
- ]
- ]
- ],
- [
- [
- [
- -1.0315675735473633
- ]
- ]
- ],
- [
- [
- [
- -1.211349368095398
- ]
- ]
- ],
- [
- [
- [
- -0.9511834383010864
- ]
- ]
- ],
- [
- [
- [
- -0.9717198610305786
- ]
- ]
- ],
- [
- [
- [
- -1.0667681694030762
- ]
- ]
- ],
- [
- [
- [
- -1.0382022857666016
- ]
- ]
- ],
- [
- [
- [
- -0.9334288239479065
- ]
- ]
- ],
- [
- [
- [
- -1.0301597118377686
- ]
- ]
- ],
- [
- [
- [
- -0.967439591884613
- ]
- ]
- ],
- [
- [
- [
- -1.0981744527816772
- ]
- ]
- ],
- [
- [
- [
- -1.0317530632019043
- ]
- ]
- ],
- [
- [
- [
- -0.9220200181007385
- ]
- ]
- ],
- [
- [
- [
- -1.0175871849060059
- ]
- ]
- ],
- [
- [
- [
- -1.11359703540802
- ]
- ]
- ],
- [
- [
- [
- -1.1702944040298462
- ]
- ]
- ],
- [
- [
- [
- -1.1477751731872559
- ]
- ]
- ],
- [
- [
- [
- -0.9981474280357361
- ]
- ]
- ],
- [
- [
- [
- -0.9660216569900513
- ]
- ]
- ],
- [
- [
- [
- -1.0632623434066772
- ]
- ]
- ],
- [
- [
- [
- -1.0619792938232422
- ]
- ]
- ],
- [
- [
- [
- -0.9663714170455933
- ]
- ]
- ],
- [
- [
- [
- -1.037628173828125
- ]
- ]
- ],
- [
- [
- [
- -1.0056796073913574
- ]
- ]
- ],
- [
- [
- [
- -1.065121054649353
- ]
- ]
- ],
- [
- [
- [
- -1.0345733165740967
- ]
- ]
- ],
- [
- [
- [
- -0.9505118727684021
- ]
- ]
- ],
- [
- [
- [
- -0.897445559501648
- ]
- ]
- ],
- [
- [
- [
- -1.0598386526107788
- ]
- ]
- ],
- [
- [
- [
- -1.2676388025283813
- ]
- ]
- ],
- [
- [
- [
- -0.9511508941650391
- ]
- ]
- ],
- [
- [
- [
- -0.928439736366272
- ]
- ]
- ],
- [
- [
- [
- -1.2194916009902954
- ]
- ]
- ],
- [
- [
- [
- -1.0169765949249268
- ]
- ]
- ],
- [
- [
- [
- -0.9326657652854919
- ]
- ]
- ],
- [
- [
- [
- -0.9493452906608582
- ]
- ]
- ],
- [
- [
- [
- -0.9033411145210266
- ]
- ]
- ],
- [
- [
- [
- -1.1802440881729126
- ]
- ]
- ],
- [
- [
- [
- -1.347385048866272
- ]
- ]
- ],
- [
- [
- [
- -1.034165382385254
- ]
- ]
- ],
- [
- [
- [
- -1.0334899425506592
- ]
- ]
- ],
- [
- [
- [
- -0.9876420497894287
- ]
- ]
- ],
- [
- [
- [
- -1.1072570085525513
- ]
- ]
- ],
- [
- [
- [
- -0.9952456951141357
- ]
- ]
- ],
- [
- [
- [
- -1.2574394941329956
- ]
- ]
- ],
- [
- [
- [
- -0.8689859509468079
- ]
- ]
- ],
- [
- [
- [
- -1.2661182880401611
- ]
- ]
- ],
- [
- [
- [
- -1.03981614112854
- ]
- ]
- ],
- [
- [
- [
- -0.8809809684753418
- ]
- ]
- ],
- [
- [
- [
- -1.0084947347640991
- ]
- ]
- ],
- [
- [
- [
- -1.2330219745635986
- ]
- ]
- ],
- [
- [
- [
- -1.1273365020751953
- ]
- ]
- ],
- [
- [
- [
- -0.9146544933319092
- ]
- ]
- ],
- [
- [
- [
- -1.0193747282028198
- ]
- ]
- ],
- [
- [
- [
- -1.2053042650222778
- ]
- ]
- ],
- [
- [
- [
- -1.0879497528076172
- ]
- ]
- ],
- [
- [
- [
- -1.0110937356948853
- ]
- ]
- ],
- [
- [
- [
- -1.0061726570129395
- ]
- ]
- ],
- [
- [
- [
- -1.235247254371643
- ]
- ]
- ],
- [
- [
- [
- -0.8393933176994324
- ]
- ]
- ],
- [
- [
- [
- -0.824079692363739
- ]
- ]
- ],
- [
- [
- [
- -0.9523329734802246
- ]
- ]
- ],
- [
- [
- [
- -1.0180377960205078
- ]
- ]
- ],
- [
- [
- [
- -1.0148016214370728
- ]
- ]
- ],
- [
- [
- [
- -1.0527592897415161
- ]
- ]
- ],
- [
- [
- [
- -0.8780673742294312
- ]
- ]
- ],
- [
- [
- [
- -0.9197720885276794
- ]
- ]
- ],
- [
- [
- [
- -1.0121686458587646
- ]
- ]
- ],
- [
- [
- [
- -1.149194359779358
- ]
- ]
- ],
- [
- [
- [
- -0.9815737009048462
- ]
- ]
- ],
- [
- [
- [
- -0.9915777444839478
- ]
- ]
- ],
- [
- [
- [
- -1.1064143180847168
- ]
- ]
- ],
- [
- [
- [
- -0.9680820107460022
- ]
- ]
- ],
- [
- [
- [
- -0.9682905077934265
- ]
- ]
- ],
- [
- [
- [
- -0.9024412631988525
- ]
- ]
- ],
- [
- [
- [
- -0.8982731103897095
- ]
- ]
- ],
- [
- [
- [
- -1.1594024896621704
- ]
- ]
- ],
- [
- [
- [
- -0.9761938452720642
- ]
- ]
- ],
- [
- [
- [
- -0.9572800993919373
- ]
- ]
- ],
- [
- [
- [
- -1.1908619403839111
- ]
- ]
- ],
- [
- [
- [
- -0.8362125754356384
- ]
- ]
- ],
- [
- [
- [
- -1.0266835689544678
- ]
- ]
- ],
- [
- [
- [
- -0.9952780604362488
- ]
- ]
- ],
- [
- [
- [
- -0.9968683123588562
- ]
- ]
- ],
- [
- [
- [
- -0.9154673218727112
- ]
- ]
- ],
- [
- [
- [
- -1.0375815629959106
- ]
- ]
- ],
- [
- [
- [
- -1.0971142053604126
- ]
- ]
- ],
- [
- [
- [
- -1.1723730564117432
- ]
- ]
- ],
- [
- [
- [
- -1.1669483184814453
- ]
- ]
- ],
- [
- [
- [
- -0.8638350963592529
- ]
- ]
- ],
- [
- [
- [
- -1.0306495428085327
- ]
- ]
- ],
- [
- [
- [
- -0.7914523482322693
- ]
- ]
- ],
- [
- [
- [
- -0.9465627670288086
- ]
- ]
- ],
- [
- [
- [
- -0.9358009099960327
- ]
- ]
- ],
- [
- [
- [
- -1.1162915229797363
- ]
- ]
- ],
- [
- [
- [
- -1.282200574874878
- ]
- ]
- ],
- [
- [
- [
- -1.1835085153579712
- ]
- ]
- ],
- [
- [
- [
- -1.0965139865875244
- ]
- ]
- ],
- [
- [
- [
- -1.022279143333435
- ]
- ]
- ],
- [
- [
- [
- -0.969238817691803
- ]
- ]
- ],
- [
- [
- [
- -1.0312553644180298
- ]
- ]
- ],
- [
- [
- [
- -0.9301641583442688
- ]
- ]
- ],
- [
- [
- [
- -1.0422611236572266
- ]
- ]
- ],
- [
- [
- [
- -0.8957532644271851
- ]
- ]
- ],
- [
- [
- [
- -1.263972520828247
- ]
- ]
- ],
- [
- [
- [
- -1.0146368741989136
- ]
- ]
- ],
- [
- [
- [
- -1.162316083908081
- ]
- ]
- ],
- [
- [
- [
- -1.1180760860443115
- ]
- ]
- ],
- [
- [
- [
- -0.8681666851043701
- ]
- ]
- ],
- [
- [
- [
- -1.1394109725952148
- ]
- ]
- ],
- [
- [
- [
- -1.1682298183441162
- ]
- ]
- ],
- [
- [
- [
- -1.1062583923339844
- ]
- ]
- ],
- [
- [
- [
- -1.0097405910491943
- ]
- ]
- ],
- [
- [
- [
- -1.0653554201126099
- ]
- ]
- ],
- [
- [
- [
- -1.316703200340271
- ]
- ]
- ],
- [
- [
- [
- -1.0931909084320068
- ]
- ]
- ],
- [
- [
- [
- -1.0288337469100952
- ]
- ]
- ],
- [
- [
- [
- -1.3324306011199951
- ]
- ]
- ],
- [
- [
- [
- -1.1035162210464478
- ]
- ]
- ],
- [
- [
- [
- -0.9111860990524292
- ]
- ]
- ],
- [
- [
- [
- -1.2000322341918945
- ]
- ]
- ],
- [
- [
- [
- -0.9042758941650391
- ]
- ]
- ],
- [
- [
- [
- -1.3390562534332275
- ]
- ]
- ],
- [
- [
- [
- -0.9674554467201233
- ]
- ]
- ],
- [
- [
- [
- -0.8713670372962952
- ]
- ]
- ],
- [
- [
- [
- -1.0164679288864136
- ]
- ]
- ],
- [
- [
- [
- -1.1765505075454712
- ]
- ]
- ],
- [
- [
- [
- -0.9445337057113647
- ]
- ]
- ],
- [
- [
- [
- -1.2038474082946777
- ]
- ]
- ],
- [
- [
- [
- -0.8512529730796814
- ]
- ]
- ],
- [
- [
- [
- -1.0011693239212036
- ]
- ]
- ],
- [
- [
- [
- -0.9551778435707092
- ]
- ]
- ],
- [
- [
- [
- -1.135277509689331
- ]
- ]
- ],
- [
- [
- [
- -1.133786678314209
- ]
- ]
- ],
- [
- [
- [
- -1.1718844175338745
- ]
- ]
- ],
- [
- [
- [
- -1.0246680974960327
- ]
- ]
- ],
- [
- [
- [
- -0.870772123336792
- ]
- ]
- ],
- [
- [
- [
- -0.7498603463172913
- ]
- ]
- ],
- [
- [
- [
- -1.1122853755950928
- ]
- ]
- ],
- [
- [
- [
- -1.117050290107727
- ]
- ]
- ],
- [
- [
- [
- -0.988623857498169
- ]
- ]
- ],
- [
- [
- [
- -1.0564159154891968
- ]
- ]
- ],
- [
- [
- [
- -1.0248101949691772
- ]
- ]
- ],
- [
- [
- [
- -1.0442086458206177
- ]
- ]
- ],
- [
- [
- [
- -1.069042444229126
- ]
- ]
- ],
- [
- [
- [
- -0.9790357351303101
- ]
- ]
- ],
- [
- [
- [
- -1.0303306579589844
- ]
- ]
- ],
- [
- [
- [
- -0.9958706498146057
- ]
- ]
- ],
- [
- [
- [
- -1.0475794076919556
- ]
- ]
- ],
- [
- [
- [
- -0.9423568248748779
- ]
- ]
- ],
- [
- [
- [
- -0.873300313949585
- ]
- ]
- ],
- [
- [
- [
- -1.0221199989318848
- ]
- ]
- ],
- [
- [
- [
- -0.9581412076950073
- ]
- ]
- ],
- [
- [
- [
- -1.0221160650253296
- ]
- ]
- ],
- [
- [
- [
- -0.9930990934371948
- ]
- ]
- ],
- [
- [
- [
- -0.9908562302589417
- ]
- ]
- ],
- [
- [
- [
- -0.9575285911560059
- ]
- ]
- ],
- [
- [
- [
- -0.9035313725471497
- ]
- ]
- ],
- [
- [
- [
- -1.096128225326538
- ]
- ]
- ],
- [
- [
- [
- -0.973421037197113
- ]
- ]
- ],
- [
- [
- [
- -0.9911546111106873
- ]
- ]
- ],
- [
- [
- [
- -0.8282685279846191
- ]
- ]
- ],
- [
- [
- [
- -1.1275051832199097
- ]
- ]
- ],
- [
- [
- [
- -1.0053731203079224
- ]
- ]
- ],
- [
- [
- [
- -0.989039957523346
- ]
- ]
- ],
- [
- [
- [
- -0.9180200695991516
- ]
- ]
- ],
- [
- [
- [
- -1.2811906337738037
- ]
- ]
- ],
- [
- [
- [
- -0.9537343978881836
- ]
- ]
- ],
- [
- [
- [
- -1.1475861072540283
- ]
- ]
- ],
- [
- [
- [
- -0.8917347192764282
- ]
- ]
- ],
- [
- [
- [
- -1.1562293767929077
- ]
- ]
- ],
- [
- [
- [
- -0.9123382568359375
- ]
- ]
- ],
- [
- [
- [
- -0.9741218090057373
- ]
- ]
- ],
- [
- [
- [
- -0.8686437010765076
- ]
- ]
- ],
- [
- [
- [
- -1.4131979942321777
- ]
- ]
- ],
- [
- [
- [
- -1.1079826354980469
- ]
- ]
- ],
- [
- [
- [
- -1.6747843027114868
- ]
- ]
- ],
- [
- [
- [
- -1.2411466836929321
- ]
- ]
- ],
- [
- [
- [
- -0.8981740474700928
- ]
- ]
- ],
- [
- [
- [
- -1.1654136180877686
- ]
- ]
- ],
- [
- [
- [
- -1.1303224563598633
- ]
- ]
- ],
- [
- [
- [
- -1.1889028549194336
- ]
- ]
- ],
- [
- [
- [
- -1.498738408088684
- ]
- ]
- ],
- [
- [
- [
- -1.1379988193511963
- ]
- ]
- ],
- [
- [
- [
- -0.9130008220672607
- ]
- ]
- ],
- [
- [
- [
- -1.1763774156570435
- ]
- ]
- ],
- [
- [
- [
- -1.1547441482543945
- ]
- ]
- ],
- [
- [
- [
- -0.9631338715553284
- ]
- ]
- ],
- [
- [
- [
- -1.151780366897583
- ]
- ]
- ],
- [
- [
- [
- -0.8802265524864197
- ]
- ]
- ],
- [
- [
- [
- -1.339415192604065
- ]
- ]
- ],
- [
- [
- [
- -0.801267147064209
- ]
- ]
- ],
- [
- [
- [
- -1.0882829427719116
- ]
- ]
- ],
- [
- [
- [
- -0.8202828764915466
- ]
- ]
- ],
- [
- [
- [
- -1.0587948560714722
- ]
- ]
- ],
- [
- [
- [
- -1.019809603691101
- ]
- ]
- ],
- [
- [
- [
- -1.0160835981369019
- ]
- ]
- ],
- [
- [
- [
- -0.9160484671592712
- ]
- ]
- ],
- [
- [
- [
- -0.9097926616668701
- ]
- ]
- ],
- [
- [
- [
- -1.0216456651687622
- ]
- ]
- ],
- [
- [
- [
- -1.0127605199813843
- ]
- ]
- ],
- [
- [
- [
- -0.9762558341026306
- ]
- ]
- ],
- [
- [
- [
- -0.9927420020103455
- ]
- ]
- ],
- [
- [
- [
- -0.812792956829071
- ]
- ]
- ],
- [
- [
- [
- -0.8704925775527954
- ]
- ]
- ],
- [
- [
- [
- -1.0351486206054688
- ]
- ]
- ],
- [
- [
- [
- -0.8864662647247314
- ]
- ]
- ],
- [
- [
- [
- -1.0826646089553833
- ]
- ]
- ],
- [
- [
- [
- -1.0816775560379028
- ]
- ]
- ],
- [
- [
- [
- -1.0368469953536987
- ]
- ]
- ],
- [
- [
- [
- -1.0713915824890137
- ]
- ]
- ],
- [
- [
- [
- -1.4123166799545288
- ]
- ]
- ],
- [
- [
- [
- -1.2359747886657715
- ]
- ]
- ],
- [
- [
- [
- -0.9495987892150879
- ]
- ]
- ],
- [
- [
- [
- -0.9151511788368225
- ]
- ]
- ],
- [
- [
- [
- -1.3006463050842285
- ]
- ]
- ],
- [
- [
- [
- -1.2935155630111694
- ]
- ]
- ],
- [
- [
- [
- -0.9979597330093384
- ]
- ]
- ],
- [
- [
- [
- -1.0068566799163818
- ]
- ]
- ],
- [
- [
- [
- -0.8601046204566956
- ]
- ]
- ],
- [
- [
- [
- -1.0795971155166626
- ]
- ]
- ],
- [
- [
- [
- -1.0950769186019897
- ]
- ]
- ],
- [
- [
- [
- -1.1820591688156128
- ]
- ]
- ],
- [
- [
- [
- -1.0445736646652222
- ]
- ]
- ],
- [
- [
- [
- -1.0767415761947632
- ]
- ]
- ],
- [
- [
- [
- -1.0770986080169678
- ]
- ]
- ],
- [
- [
- [
- -1.0848673582077026
- ]
- ]
- ],
- [
- [
- [
- -1.4953398704528809
- ]
- ]
- ],
- [
- [
- [
- -0.9231826663017273
- ]
- ]
- ],
- [
- [
- [
- -1.0823657512664795
- ]
- ]
- ],
- [
- [
- [
- -1.267652153968811
- ]
- ]
- ],
- [
- [
- [
- -0.9659174084663391
- ]
- ]
- ],
- [
- [
- [
- -0.9186413288116455
- ]
- ]
- ],
- [
- [
- [
- -0.9566716551780701
- ]
- ]
- ],
- [
- [
- [
- -1.0898019075393677
- ]
- ]
- ],
- [
- [
- [
- -0.9646103978157043
- ]
- ]
- ],
- [
- [
- [
- -1.0629745721817017
- ]
- ]
- ],
- [
- [
- [
- -0.9967606067657471
- ]
- ]
- ],
- [
- [
- [
- -0.9250516891479492
- ]
- ]
- ],
- [
- [
- [
- -0.9671849012374878
- ]
- ]
- ],
- [
- [
- [
- -1.146730899810791
- ]
- ]
- ],
- [
- [
- [
- -0.9242576956748962
- ]
- ]
- ],
- [
- [
- [
- -1.0041362047195435
- ]
- ]
- ],
- [
- [
- [
- -1.0695887804031372
- ]
- ]
- ],
- [
- [
- [
- -0.9826728701591492
- ]
- ]
- ],
- [
- [
- [
- -1.1424812078475952
- ]
- ]
- ],
- [
- [
- [
- -0.8917030692100525
- ]
- ]
- ],
- [
- [
- [
- -0.9630059003829956
- ]
- ]
- ],
- [
- [
- [
- -0.9132561683654785
- ]
- ]
- ],
- [
- [
- [
- -1.1274898052215576
- ]
- ]
- ],
- [
- [
- [
- -1.0315172672271729
- ]
- ]
- ],
- [
- [
- [
- -1.1761420965194702
- ]
- ]
- ],
- [
- [
- [
- -1.0530563592910767
- ]
- ]
- ],
- [
- [
- [
- -1.0070565938949585
- ]
- ]
- ],
- [
- [
- [
- -0.9258015155792236
- ]
- ]
- ],
- [
- [
- [
- -1.19841468334198
- ]
- ]
- ],
- [
- [
- [
- -1.0243979692459106
- ]
- ]
- ],
- [
- [
- [
- -0.8900928497314453
- ]
- ]
- ],
- [
- [
- [
- -1.0273610353469849
- ]
- ]
- ],
- [
- [
- [
- -0.8598757982254028
- ]
- ]
- ],
- [
- [
- [
- -0.946030855178833
- ]
- ]
- ],
- [
- [
- [
- -0.9448181390762329
- ]
- ]
- ],
- [
- [
- [
- -1.0143765211105347
- ]
- ]
- ],
- [
- [
- [
- -0.9872357249259949
- ]
- ]
- ],
- [
- [
- [
- -1.4276585578918457
- ]
- ]
- ],
- [
- [
- [
- -0.92050701379776
- ]
- ]
- ],
- [
- [
- [
- -1.073231816291809
- ]
- ]
- ],
- [
- [
- [
- -1.0232280492782593
- ]
- ]
- ],
- [
- [
- [
- -0.9219456911087036
- ]
- ]
- ],
- [
- [
- [
- -1.0473815202713013
- ]
- ]
- ],
- [
- [
- [
- -0.9583578109741211
- ]
- ]
- ],
- [
- [
- [
- -1.158691644668579
- ]
- ]
- ],
- [
- [
- [
- -1.190244436264038
- ]
- ]
- ],
- [
- [
- [
- -0.9650874733924866
- ]
- ]
- ],
- [
- [
- [
- -0.9343444108963013
- ]
- ]
- ],
- [
- [
- [
- -1.034268856048584
- ]
- ]
- ],
- [
- [
- [
- -1.1957803964614868
- ]
- ]
- ],
- [
- [
- [
- -0.9994576573371887
- ]
- ]
- ],
- [
- [
- [
- -1.01644766330719
- ]
- ]
- ],
- [
- [
- [
- -1.006485939025879
- ]
- ]
- ],
- [
- [
- [
- -1.050088882446289
- ]
- ]
- ],
- [
- [
- [
- -1.2327247858047485
- ]
- ]
- ],
- [
- [
- [
- -0.9164046049118042
- ]
- ]
- ],
- [
- [
- [
- -1.0635392665863037
- ]
- ]
- ],
- [
- [
- [
- -1.198624849319458
- ]
- ]
- ],
- [
- [
- [
- -1.033980369567871
- ]
- ]
- ],
- [
- [
- [
- -0.9468284845352173
- ]
- ]
- ],
- [
- [
- [
- -1.1643176078796387
- ]
- ]
- ],
- [
- [
- [
- -1.3685736656188965
- ]
- ]
- ],
- [
- [
- [
- -0.9036381840705872
- ]
- ]
- ],
- [
- [
- [
- -1.1483911275863647
- ]
- ]
- ],
- [
- [
- [
- -1.087874174118042
- ]
- ]
- ],
- [
- [
- [
- -1.0929338932037354
- ]
- ]
- ],
- [
- [
- [
- -0.9920712113380432
- ]
- ]
- ],
- [
- [
- [
- -1.160004734992981
- ]
- ]
- ],
- [
- [
- [
- -1.1754090785980225
- ]
- ]
- ],
- [
- [
- [
- -0.9312402606010437
- ]
- ]
- ],
- [
- [
- [
- -1.0538824796676636
- ]
- ]
- ],
- [
- [
- [
- -1.195144534111023
- ]
- ]
- ],
- [
- [
- [
- -0.9637614488601685
- ]
- ]
- ],
- [
- [
- [
- -1.122320294380188
- ]
- ]
- ],
- [
- [
- [
- -1.0226802825927734
- ]
- ]
- ],
- [
- [
- [
- -1.2232252359390259
- ]
- ]
- ],
- [
- [
- [
- -1.0013254880905151
- ]
- ]
- ],
- [
- [
- [
- -1.0539494752883911
- ]
- ]
- ],
- [
- [
- [
- -1.0873000621795654
- ]
- ]
- ],
- [
- [
- [
- -0.9148683547973633
- ]
- ]
- ],
- [
- [
- [
- -0.9341676235198975
- ]
- ]
- ],
- [
- [
- [
- -1.0425392389297485
- ]
- ]
- ],
- [
- [
- [
- -1.0417110919952393
- ]
- ]
- ],
- [
- [
- [
- -1.2196671962738037
- ]
- ]
- ],
- [
- [
- [
- -1.4334861040115356
- ]
- ]
- ],
- [
- [
- [
- -1.1152645349502563
- ]
- ]
- ],
- [
- [
- [
- -1.2558820247650146
- ]
- ]
- ],
- [
- [
- [
- -0.8673494458198547
- ]
- ]
- ],
- [
- [
- [
- -1.6053882837295532
- ]
- ]
- ],
- [
- [
- [
- -1.2437046766281128
- ]
- ]
- ],
- [
- [
- [
- -1.025049090385437
- ]
- ]
- ],
- [
- [
- [
- -1.1366007328033447
- ]
- ]
- ],
- [
- [
- [
- -1.0822099447250366
- ]
- ]
- ],
- [
- [
- [
- -1.1041475534439087
- ]
- ]
- ],
- [
- [
- [
- -0.9215682148933411
- ]
- ]
- ],
- [
- [
- [
- -1.2372361421585083
- ]
- ]
- ],
- [
- [
- [
- -1.0263289213180542
- ]
- ]
- ],
- [
- [
- [
- -1.331955075263977
- ]
- ]
- ],
- [
- [
- [
- -0.9262051582336426
- ]
- ]
- ],
- [
- [
- [
- -0.8875250816345215
- ]
- ]
- ],
- [
- [
- [
- -1.0618343353271484
- ]
- ]
- ],
- [
- [
- [
- -1.0563658475875854
- ]
- ]
- ],
- [
- [
- [
- -1.2385578155517578
- ]
- ]
- ],
- [
- [
- [
- -0.9614799618721008
- ]
- ]
- ],
- [
- [
- [
- -0.968964695930481
- ]
- ]
- ],
- [
- [
- [
- -0.9935006499290466
- ]
- ]
- ],
- [
- [
- [
- -1.1900731325149536
- ]
- ]
- ],
- [
- [
- [
- -1.0714223384857178
- ]
- ]
- ],
- [
- [
- [
- -1.0552107095718384
- ]
- ]
- ],
- [
- [
- [
- -1.08120596408844
- ]
- ]
- ],
- [
- [
- [
- -0.9579365253448486
- ]
- ]
- ],
- [
- [
- [
- -1.1733412742614746
- ]
- ]
- ],
- [
- [
- [
- -1.4753390550613403
- ]
- ]
- ],
- [
- [
- [
- -1.0601569414138794
- ]
- ]
- ],
- [
- [
- [
- -1.0317269563674927
- ]
- ]
- ],
- [
- [
- [
- -0.98548424243927
- ]
- ]
- ],
- [
- [
- [
- -1.1392360925674438
- ]
- ]
- ],
- [
- [
- [
- -1.154281497001648
- ]
- ]
- ],
- [
- [
- [
- -1.0393935441970825
- ]
- ]
- ],
- [
- [
- [
- -0.9594317674636841
- ]
- ]
- ],
- [
- [
- [
- -0.8906742334365845
- ]
- ]
- ],
- [
- [
- [
- -1.0964202880859375
- ]
- ]
- ],
- [
- [
- [
- -1.0778019428253174
- ]
- ]
- ],
- [
- [
- [
- -0.9638389945030212
- ]
- ]
- ],
- [
- [
- [
- -0.9502721428871155
- ]
- ]
- ],
- [
- [
- [
- -1.2740446329116821
- ]
- ]
- ],
- [
- [
- [
- -1.026613473892212
- ]
- ]
- ],
- [
- [
- [
- -1.0728224515914917
- ]
- ]
- ],
- [
- [
- [
- -1.136831283569336
- ]
- ]
- ],
- [
- [
- [
- -1.0910557508468628
- ]
- ]
- ],
- [
- [
- [
- -0.8803440928459167
- ]
- ]
- ],
- [
- [
- [
- -1.0493167638778687
- ]
- ]
- ],
- [
- [
- [
- -0.8760088086128235
- ]
- ]
- ],
- [
- [
- [
- -0.8282005190849304
- ]
- ]
- ],
- [
- [
- [
- -0.9414563179016113
- ]
- ]
- ],
- [
- [
- [
- -0.9254025816917419
- ]
- ]
- ],
- [
- [
- [
- -0.9233563542366028
- ]
- ]
- ],
- [
- [
- [
- -1.1296831369400024
- ]
- ]
- ],
- [
- [
- [
- -1.044033169746399
- ]
- ]
- ],
- [
- [
- [
- -1.0141501426696777
- ]
- ]
- ],
- [
- [
- [
- -0.9893689751625061
- ]
- ]
- ],
- [
- [
- [
- -1.3385313749313354
- ]
- ]
- ],
- [
- [
- [
- -1.0532974004745483
- ]
- ]
- ],
- [
- [
- [
- -0.9132193326950073
- ]
- ]
- ],
- [
- [
- [
- -0.8977677822113037
- ]
- ]
- ],
- [
- [
- [
- -0.9809406399726868
- ]
- ]
- ],
- [
- [
- [
- -0.9672472476959229
- ]
- ]
- ],
- [
- [
- [
- -1.2133967876434326
- ]
- ]
- ],
- [
- [
- [
- -0.8907191753387451
- ]
- ]
- ],
- [
- [
- [
- -1.1266659498214722
- ]
- ]
- ],
- [
- [
- [
- -0.9290457367897034
- ]
- ]
- ],
- [
- [
- [
- -0.9387751817703247
- ]
- ]
- ],
- [
- [
- [
- -1.039330244064331
- ]
- ]
- ],
- [
- [
- [
- -1.1366225481033325
- ]
- ]
- ],
- [
- [
- [
- -1.3512424230575562
- ]
- ]
- ],
- [
- [
- [
- -1.0292646884918213
- ]
- ]
- ],
- [
- [
- [
- -0.969363272190094
- ]
- ]
- ],
- [
- [
- [
- -1.0838828086853027
- ]
- ]
- ],
- [
- [
- [
- -0.8946046233177185
- ]
- ]
- ],
- [
- [
- [
- -0.9409071803092957
- ]
- ]
- ],
- [
- [
- [
- -1.0113590955734253
- ]
- ]
- ],
- [
- [
- [
- -1.14974045753479
- ]
- ]
- ],
- [
- [
- [
- -1.0293505191802979
- ]
- ]
- ],
- [
- [
- [
- -1.0862846374511719
- ]
- ]
- ],
- [
- [
- [
- -0.9694017171859741
- ]
- ]
- ],
- [
- [
- [
- -0.9677215814590454
- ]
- ]
- ],
- [
- [
- [
- -0.939729630947113
- ]
- ]
- ],
- [
- [
- [
- -1.0437185764312744
- ]
- ]
- ],
- [
- [
- [
- -1.006166934967041
- ]
- ]
- ],
- [
- [
- [
- -0.9743891358375549
- ]
- ]
- ],
- [
- [
- [
- -1.1442912817001343
- ]
- ]
- ],
- [
- [
- [
- -1.1824060678482056
- ]
- ]
- ],
- [
- [
- [
- -1.1274503469467163
- ]
- ]
- ],
- [
- [
- [
- -0.8865083456039429
- ]
- ]
- ],
- [
- [
- [
- -1.0748287439346313
- ]
- ]
- ],
- [
- [
- [
- -0.8866617679595947
- ]
- ]
- ],
- [
- [
- [
- -1.1383073329925537
- ]
- ]
- ],
- [
- [
- [
- -1.2039122581481934
- ]
- ]
- ],
- [
- [
- [
- -1.0320487022399902
- ]
- ]
- ],
- [
- [
- [
- -1.014757752418518
- ]
- ]
- ],
- [
- [
- [
- -0.9832412004470825
- ]
- ]
- ],
- [
- [
- [
- -1.034433364868164
- ]
- ]
- ],
- [
- [
- [
- -1.0604592561721802
- ]
- ]
- ],
- [
- [
- [
- -1.0199542045593262
- ]
- ]
- ],
- [
- [
- [
- -0.9525006413459778
- ]
- ]
- ],
- [
- [
- [
- -1.0461488962173462
- ]
- ]
- ],
- [
- [
- [
- -1.0134856700897217
- ]
- ]
- ],
- [
- [
- [
- -1.0897252559661865
- ]
- ]
- ],
- [
- [
- [
- -1.1297426223754883
- ]
- ]
- ],
- [
- [
- [
- -1.0999870300292969
- ]
- ]
- ],
- [
- [
- [
- -1.0331299304962158
- ]
- ]
- ],
- [
- [
- [
- -0.9930763840675354
- ]
- ]
- ],
- [
- [
- [
- -0.9544077515602112
- ]
- ]
- ],
- [
- [
- [
- -0.970114529132843
- ]
- ]
- ],
- [
- [
- [
- -1.2985087633132935
- ]
- ]
- ],
- [
- [
- [
- -1.0040926933288574
- ]
- ]
- ],
- [
- [
- [
- -1.1276699304580688
- ]
- ]
- ],
- [
- [
- [
- -1.0992940664291382
- ]
- ]
- ],
- [
- [
- [
- -1.0134931802749634
- ]
- ]
- ],
- [
- [
- [
- -1.0181903839111328
- ]
- ]
- ],
- [
- [
- [
- -1.2153596878051758
- ]
- ]
- ],
- [
- [
- [
- -1.0986175537109375
- ]
- ]
- ],
- [
- [
- [
- -0.8209522366523743
- ]
- ]
- ],
- [
- [
- [
- -0.8855798244476318
- ]
- ]
- ],
- [
- [
- [
- -0.9683364629745483
- ]
- ]
- ],
- [
- [
- [
- -0.9707607626914978
- ]
- ]
- ],
- [
- [
- [
- -0.865387499332428
- ]
- ]
- ],
- [
- [
- [
- -0.9642270803451538
- ]
- ]
- ],
- [
- [
- [
- -0.8924148082733154
- ]
- ]
- ],
- [
- [
- [
- -0.9769684672355652
- ]
- ]
- ],
- [
- [
- [
- -1.1303585767745972
- ]
- ]
- ],
- [
- [
- [
- -0.973569393157959
- ]
- ]
- ],
- [
- [
- [
- -0.9845264554023743
- ]
- ]
- ],
- [
- [
- [
- -0.8775923848152161
- ]
- ]
- ],
- [
- [
- [
- -1.0446174144744873
- ]
- ]
- ],
- [
- [
- [
- -1.06755793094635
- ]
- ]
- ],
- [
- [
- [
- -0.9677262902259827
- ]
- ]
- ],
- [
- [
- [
- -0.8944038152694702
- ]
- ]
- ],
- [
- [
- [
- -0.9117789268493652
- ]
- ]
- ],
- [
- [
- [
- -1.3298097848892212
- ]
- ]
- ],
- [
- [
- [
- -0.9277745485305786
- ]
- ]
- ],
- [
- [
- [
- -1.1351077556610107
- ]
- ]
- ],
- [
- [
- [
- -0.9505661129951477
- ]
- ]
- ],
- [
- [
- [
- -0.9157877564430237
- ]
- ]
- ],
- [
- [
- [
- -0.8652980327606201
- ]
- ]
- ],
- [
- [
- [
- -1.4441709518432617
- ]
- ]
- ],
- [
- [
- [
- -0.9310252070426941
- ]
- ]
- ],
- [
- [
- [
- -1.101375699043274
- ]
- ]
- ],
- [
- [
- [
- -0.8490892648696899
- ]
- ]
- ],
- [
- [
- [
- -1.0252288579940796
- ]
- ]
- ],
- [
- [
- [
- -0.9815975427627563
- ]
- ]
- ],
- [
- [
- [
- -0.9024218916893005
- ]
- ]
- ],
- [
- [
- [
- -0.9733182191848755
- ]
- ]
- ],
- [
- [
- [
- -1.3083481788635254
- ]
- ]
- ],
- [
- [
- [
- -0.9134640693664551
- ]
- ]
- ],
- [
- [
- [
- -1.0094417333602905
- ]
- ]
- ],
- [
- [
- [
- -1.0689857006072998
- ]
- ]
- ],
- [
- [
- [
- -1.4842339754104614
- ]
- ]
- ],
- [
- [
- [
- -0.8851192593574524
- ]
- ]
- ],
- [
- [
- [
- -1.0576046705245972
- ]
- ]
- ],
- [
- [
- [
- -1.072542667388916
- ]
- ]
- ],
- [
- [
- [
- -0.9997857809066772
- ]
- ]
- ],
- [
- [
- [
- -0.9685620665550232
- ]
- ]
- ],
- [
- [
- [
- -0.8968682289123535
- ]
- ]
- ],
- [
- [
- [
- -0.9818838834762573
- ]
- ]
- ],
- [
- [
- [
- -0.9587700963020325
- ]
- ]
- ],
- [
- [
- [
- -0.9785784482955933
- ]
- ]
- ],
- [
- [
- [
- -1.115765929222107
- ]
- ]
- ],
- [
- [
- [
- -1.2617428302764893
- ]
- ]
- ],
- [
- [
- [
- -0.9551870822906494
- ]
- ]
- ],
- [
- [
- [
- -1.0487961769104004
- ]
- ]
- ],
- [
- [
- [
- -1.2335795164108276
- ]
- ]
- ],
- [
- [
- [
- -1.0376629829406738
- ]
- ]
- ],
- [
- [
- [
- -1.2391270399093628
- ]
- ]
- ],
- [
- [
- [
- -1.0144726037979126
- ]
- ]
- ],
- [
- [
- [
- -1.068605899810791
- ]
- ]
- ],
- [
- [
- [
- -1.1246964931488037
- ]
- ]
- ],
- [
- [
- [
- -0.8251024484634399
- ]
- ]
- ],
- [
- [
- [
- -1.131123661994934
- ]
- ]
- ],
- [
- [
- [
- -0.9032446146011353
- ]
- ]
- ],
- [
- [
- [
- -0.8750292658805847
- ]
- ]
- ],
- [
- [
- [
- -1.1389330625534058
- ]
- ]
- ],
- [
- [
- [
- -1.0585908889770508
- ]
- ]
- ],
- [
- [
- [
- -1.111668348312378
- ]
- ]
- ],
- [
- [
- [
- -0.8796474933624268
- ]
- ]
- ],
- [
- [
- [
- -1.367453932762146
- ]
- ]
- ],
- [
- [
- [
- -1.0127404928207397
- ]
- ]
- ],
- [
- [
- [
- -0.9792473912239075
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.9333563446998596
- ]
- ]
- ],
- [
- [
- [
- 0.8634206056594849
- ]
- ]
- ],
- [
- [
- [
- 1.3679049015045166
- ]
- ]
- ],
- [
- [
- [
- 0.921192467212677
- ]
- ]
- ],
- [
- [
- [
- 1.074693202972412
- ]
- ]
- ],
- [
- [
- [
- 0.9710022807121277
- ]
- ]
- ],
- [
- [
- [
- 0.937746524810791
- ]
- ]
- ],
- [
- [
- [
- 0.8183114528656006
- ]
- ]
- ],
- [
- [
- [
- 0.9902278184890747
- ]
- ]
- ],
- [
- [
- [
- 1.0752556324005127
- ]
- ]
- ],
- [
- [
- [
- 1.2409653663635254
- ]
- ]
- ],
- [
- [
- [
- 1.1727107763290405
- ]
- ]
- ],
- [
- [
- [
- 1.094907283782959
- ]
- ]
- ],
- [
- [
- [
- 1.0488450527191162
- ]
- ]
- ],
- [
- [
- [
- 0.9464437961578369
- ]
- ]
- ],
- [
- [
- [
- 0.8778498768806458
- ]
- ]
- ],
- [
- [
- [
- 0.9288340210914612
- ]
- ]
- ],
- [
- [
- [
- 1.169562578201294
- ]
- ]
- ],
- [
- [
- [
- 1.0479663610458374
- ]
- ]
- ],
- [
- [
- [
- 1.0154087543487549
- ]
- ]
- ],
- [
- [
- [
- 1.0552308559417725
- ]
- ]
- ],
- [
- [
- [
- 1.0735704898834229
- ]
- ]
- ],
- [
- [
- [
- 1.2206473350524902
- ]
- ]
- ],
- [
- [
- [
- 0.8820775747299194
- ]
- ]
- ],
- [
- [
- [
- 0.985245406627655
- ]
- ]
- ],
- [
- [
- [
- 0.9965498447418213
- ]
- ]
- ],
- [
- [
- [
- 1.097084879875183
- ]
- ]
- ],
- [
- [
- [
- 0.9789084196090698
- ]
- ]
- ],
- [
- [
- [
- 0.9565417170524597
- ]
- ]
- ],
- [
- [
- [
- 0.9204089641571045
- ]
- ]
- ],
- [
- [
- [
- 1.1081256866455078
- ]
- ]
- ],
- [
- [
- [
- 0.9363775849342346
- ]
- ]
- ],
- [
- [
- [
- 1.1928625106811523
- ]
- ]
- ],
- [
- [
- [
- 0.8435102701187134
- ]
- ]
- ],
- [
- [
- [
- 1.0255998373031616
- ]
- ]
- ],
- [
- [
- [
- 0.9146135449409485
- ]
- ]
- ],
- [
- [
- [
- 1.0180649757385254
- ]
- ]
- ],
- [
- [
- [
- 1.0512093305587769
- ]
- ]
- ],
- [
- [
- [
- 1.1696480512619019
- ]
- ]
- ],
- [
- [
- [
- 1.1852375268936157
- ]
- ]
- ],
- [
- [
- [
- 1.0058954954147339
- ]
- ]
- ],
- [
- [
- [
- 1.1105128526687622
- ]
- ]
- ],
- [
- [
- [
- 0.9131753444671631
- ]
- ]
- ],
- [
- [
- [
- 0.9425309896469116
- ]
- ]
- ],
- [
- [
- [
- 0.9901024103164673
- ]
- ]
- ],
- [
- [
- [
- 1.2012548446655273
- ]
- ]
- ],
- [
- [
- [
- 1.1605666875839233
- ]
- ]
- ],
- [
- [
- [
- 1.139669418334961
- ]
- ]
- ],
- [
- [
- [
- 1.0456866025924683
- ]
- ]
- ],
- [
- [
- [
- 1.1513564586639404
- ]
- ]
- ],
- [
- [
- [
- 1.3330177068710327
- ]
- ]
- ],
- [
- [
- [
- 0.9522570371627808
- ]
- ]
- ],
- [
- [
- [
- 0.9786536693572998
- ]
- ]
- ],
- [
- [
- [
- 1.0071555376052856
- ]
- ]
- ],
- [
- [
- [
- 0.9622791409492493
- ]
- ]
- ],
- [
- [
- [
- 0.9655205607414246
- ]
- ]
- ],
- [
- [
- [
- 1.1577054262161255
- ]
- ]
- ],
- [
- [
- [
- 0.9871496558189392
- ]
- ]
- ],
- [
- [
- [
- 0.916568398475647
- ]
- ]
- ],
- [
- [
- [
- 1.080419659614563
- ]
- ]
- ],
- [
- [
- [
- 1.240788221359253
- ]
- ]
- ],
- [
- [
- [
- 1.007234811782837
- ]
- ]
- ],
- [
- [
- [
- 1.2301338911056519
- ]
- ]
- ],
- [
- [
- [
- 1.0749702453613281
- ]
- ]
- ],
- [
- [
- [
- 0.8941547274589539
- ]
- ]
- ],
- [
- [
- [
- 1.3026576042175293
- ]
- ]
- ],
- [
- [
- [
- 0.9793345928192139
- ]
- ]
- ],
- [
- [
- [
- 1.553097128868103
- ]
- ]
- ],
- [
- [
- [
- 0.9606373906135559
- ]
- ]
- ],
- [
- [
- [
- 0.9629589319229126
- ]
- ]
- ],
- [
- [
- [
- 1.0442421436309814
- ]
- ]
- ],
- [
- [
- [
- 0.9142823219299316
- ]
- ]
- ],
- [
- [
- [
- 0.9564029574394226
- ]
- ]
- ],
- [
- [
- [
- 0.9296230673789978
- ]
- ]
- ],
- [
- [
- [
- 1.0089994668960571
- ]
- ]
- ],
- [
- [
- [
- 1.0354018211364746
- ]
- ]
- ],
- [
- [
- [
- 1.2310198545455933
- ]
- ]
- ],
- [
- [
- [
- 1.090272068977356
- ]
- ]
- ],
- [
- [
- [
- 1.07002592086792
- ]
- ]
- ],
- [
- [
- [
- 1.1138919591903687
- ]
- ]
- ],
- [
- [
- [
- 1.084550142288208
- ]
- ]
- ],
- [
- [
- [
- 1.1057924032211304
- ]
- ]
- ],
- [
- [
- [
- 1.2235233783721924
- ]
- ]
- ],
- [
- [
- [
- 1.0582817792892456
- ]
- ]
- ],
- [
- [
- [
- 0.9743874669075012
- ]
- ]
- ],
- [
- [
- [
- 0.9303461909294128
- ]
- ]
- ],
- [
- [
- [
- 1.0827430486679077
- ]
- ]
- ],
- [
- [
- [
- 1.0619254112243652
- ]
- ]
- ],
- [
- [
- [
- 0.8887662887573242
- ]
- ]
- ],
- [
- [
- [
- 1.075006365776062
- ]
- ]
- ],
- [
- [
- [
- 1.2990859746932983
- ]
- ]
- ],
- [
- [
- [
- 1.1231625080108643
- ]
- ]
- ],
- [
- [
- [
- 0.9791327714920044
- ]
- ]
- ],
- [
- [
- [
- 0.9313610196113586
- ]
- ]
- ],
- [
- [
- [
- 1.0811262130737305
- ]
- ]
- ],
- [
- [
- [
- 0.9537045359611511
- ]
- ]
- ],
- [
- [
- [
- 1.1036652326583862
- ]
- ]
- ],
- [
- [
- [
- 1.035569429397583
- ]
- ]
- ],
- [
- [
- [
- 1.209285020828247
- ]
- ]
- ],
- [
- [
- [
- 0.9597774744033813
- ]
- ]
- ],
- [
- [
- [
- 0.989969789981842
- ]
- ]
- ],
- [
- [
- [
- 1.1306732892990112
- ]
- ]
- ],
- [
- [
- [
- 0.9206469655036926
- ]
- ]
- ],
- [
- [
- [
- 1.0266563892364502
- ]
- ]
- ],
- [
- [
- [
- 1.1178147792816162
- ]
- ]
- ],
- [
- [
- [
- 1.266143798828125
- ]
- ]
- ],
- [
- [
- [
- 1.1960279941558838
- ]
- ]
- ],
- [
- [
- [
- 0.9617884755134583
- ]
- ]
- ],
- [
- [
- [
- 0.9933983087539673
- ]
- ]
- ],
- [
- [
- [
- 1.0695656538009644
- ]
- ]
- ],
- [
- [
- [
- 1.1198887825012207
- ]
- ]
- ],
- [
- [
- [
- 1.3172880411148071
- ]
- ]
- ],
- [
- [
- [
- 1.2068411111831665
- ]
- ]
- ],
- [
- [
- [
- 0.9493498206138611
- ]
- ]
- ],
- [
- [
- [
- 1.1716622114181519
- ]
- ]
- ],
- [
- [
- [
- 1.0408910512924194
- ]
- ]
- ],
- [
- [
- [
- 1.0437089204788208
- ]
- ]
- ],
- [
- [
- [
- 1.3508024215698242
- ]
- ]
- ],
- [
- [
- [
- 0.9652036428451538
- ]
- ]
- ],
- [
- [
- [
- 1.221362829208374
- ]
- ]
- ],
- [
- [
- [
- 0.9645214676856995
- ]
- ]
- ],
- [
- [
- [
- 1.1308947801589966
- ]
- ]
- ],
- [
- [
- [
- 1.1852948665618896
- ]
- ]
- ],
- [
- [
- [
- 1.1971423625946045
- ]
- ]
- ],
- [
- [
- [
- 1.118455410003662
- ]
- ]
- ],
- [
- [
- [
- 1.0853466987609863
- ]
- ]
- ],
- [
- [
- [
- 1.040671944618225
- ]
- ]
- ],
- [
- [
- [
- 0.9294936656951904
- ]
- ]
- ],
- [
- [
- [
- 0.9489459991455078
- ]
- ]
- ],
- [
- [
- [
- 1.0066914558410645
- ]
- ]
- ],
- [
- [
- [
- 1.1474987268447876
- ]
- ]
- ],
- [
- [
- [
- 0.9631145596504211
- ]
- ]
- ],
- [
- [
- [
- 0.9549851417541504
- ]
- ]
- ],
- [
- [
- [
- 0.9759792685508728
- ]
- ]
- ],
- [
- [
- [
- 0.8484014272689819
- ]
- ]
- ],
- [
- [
- [
- 1.2572873830795288
- ]
- ]
- ],
- [
- [
- [
- 1.101784348487854
- ]
- ]
- ],
- [
- [
- [
- 0.946007251739502
- ]
- ]
- ],
- [
- [
- [
- 1.023027777671814
- ]
- ]
- ],
- [
- [
- [
- 0.985552191734314
- ]
- ]
- ],
- [
- [
- [
- 1.0553869009017944
- ]
- ]
- ],
- [
- [
- [
- 1.2880066633224487
- ]
- ]
- ],
- [
- [
- [
- 0.9363034963607788
- ]
- ]
- ],
- [
- [
- [
- 0.8398956656455994
- ]
- ]
- ],
- [
- [
- [
- 1.0739140510559082
- ]
- ]
- ],
- [
- [
- [
- 1.0675075054168701
- ]
- ]
- ],
- [
- [
- [
- 0.9242190718650818
- ]
- ]
- ],
- [
- [
- [
- 1.1382657289505005
- ]
- ]
- ],
- [
- [
- [
- 1.0403072834014893
- ]
- ]
- ],
- [
- [
- [
- 1.1370315551757812
- ]
- ]
- ],
- [
- [
- [
- 0.9231918454170227
- ]
- ]
- ],
- [
- [
- [
- 1.1595697402954102
- ]
- ]
- ],
- [
- [
- [
- 1.2384108304977417
- ]
- ]
- ],
- [
- [
- [
- 1.1984539031982422
- ]
- ]
- ],
- [
- [
- [
- 0.9855936765670776
- ]
- ]
- ],
- [
- [
- [
- 0.8974236845970154
- ]
- ]
- ],
- [
- [
- [
- 0.9669147729873657
- ]
- ]
- ],
- [
- [
- [
- 0.9588724374771118
- ]
- ]
- ],
- [
- [
- [
- 1.0779979228973389
- ]
- ]
- ],
- [
- [
- [
- 1.5036675930023193
- ]
- ]
- ],
- [
- [
- [
- 1.085407018661499
- ]
- ]
- ],
- [
- [
- [
- 0.9511837959289551
- ]
- ]
- ],
- [
- [
- [
- 1.1415632963180542
- ]
- ]
- ],
- [
- [
- [
- 0.995284914970398
- ]
- ]
- ],
- [
- [
- [
- 1.0743579864501953
- ]
- ]
- ],
- [
- [
- [
- 1.1048157215118408
- ]
- ]
- ],
- [
- [
- [
- 0.8877156972885132
- ]
- ]
- ],
- [
- [
- [
- 1.061960220336914
- ]
- ]
- ],
- [
- [
- [
- 0.8511340618133545
- ]
- ]
- ],
- [
- [
- [
- 0.9933391213417053
- ]
- ]
- ],
- [
- [
- [
- 1.0546026229858398
- ]
- ]
- ],
- [
- [
- [
- 1.1471015214920044
- ]
- ]
- ],
- [
- [
- [
- 1.0036520957946777
- ]
- ]
- ],
- [
- [
- [
- 1.0422816276550293
- ]
- ]
- ],
- [
- [
- [
- 0.9623719453811646
- ]
- ]
- ],
- [
- [
- [
- 1.0570905208587646
- ]
- ]
- ],
- [
- [
- [
- 0.9814915657043457
- ]
- ]
- ],
- [
- [
- [
- 1.0998843908309937
- ]
- ]
- ],
- [
- [
- [
- 1.0130168199539185
- ]
- ]
- ],
- [
- [
- [
- 1.1490646600723267
- ]
- ]
- ],
- [
- [
- [
- 1.2486684322357178
- ]
- ]
- ],
- [
- [
- [
- 1.28632390499115
- ]
- ]
- ],
- [
- [
- [
- 0.9732431173324585
- ]
- ]
- ],
- [
- [
- [
- 1.090385913848877
- ]
- ]
- ],
- [
- [
- [
- 1.0271539688110352
- ]
- ]
- ],
- [
- [
- [
- 1.175118088722229
- ]
- ]
- ],
- [
- [
- [
- 1.0271024703979492
- ]
- ]
- ],
- [
- [
- [
- 1.0429068803787231
- ]
- ]
- ],
- [
- [
- [
- 1.3355507850646973
- ]
- ]
- ],
- [
- [
- [
- 1.0986449718475342
- ]
- ]
- ],
- [
- [
- [
- 0.9025618433952332
- ]
- ]
- ],
- [
- [
- [
- 0.9742262363433838
- ]
- ]
- ],
- [
- [
- [
- 1.079102873802185
- ]
- ]
- ],
- [
- [
- [
- 1.0656567811965942
- ]
- ]
- ],
- [
- [
- [
- 0.8870715498924255
- ]
- ]
- ],
- [
- [
- [
- 1.180302619934082
- ]
- ]
- ],
- [
- [
- [
- 1.0591682195663452
- ]
- ]
- ],
- [
- [
- [
- 1.3211504220962524
- ]
- ]
- ],
- [
- [
- [
- 1.2522222995758057
- ]
- ]
- ],
- [
- [
- [
- 0.9193216562271118
- ]
- ]
- ],
- [
- [
- [
- 0.9008913636207581
- ]
- ]
- ],
- [
- [
- [
- 1.2300808429718018
- ]
- ]
- ],
- [
- [
- [
- 1.063359260559082
- ]
- ]
- ],
- [
- [
- [
- 1.6895217895507812
- ]
- ]
- ],
- [
- [
- [
- 0.8930205702781677
- ]
- ]
- ],
- [
- [
- [
- 0.9828954935073853
- ]
- ]
- ],
- [
- [
- [
- 0.9596538543701172
- ]
- ]
- ],
- [
- [
- [
- 1.2376537322998047
- ]
- ]
- ],
- [
- [
- [
- 1.0304819345474243
- ]
- ]
- ],
- [
- [
- [
- 1.133754014968872
- ]
- ]
- ],
- [
- [
- [
- 1.1909630298614502
- ]
- ]
- ],
- [
- [
- [
- 1.1091370582580566
- ]
- ]
- ],
- [
- [
- [
- 1.1710139513015747
- ]
- ]
- ],
- [
- [
- [
- 1.2166528701782227
- ]
- ]
- ],
- [
- [
- [
- 1.1042399406433105
- ]
- ]
- ],
- [
- [
- [
- 0.9472065567970276
- ]
- ]
- ],
- [
- [
- [
- 0.9535732269287109
- ]
- ]
- ],
- [
- [
- [
- 1.4094656705856323
- ]
- ]
- ],
- [
- [
- [
- 0.9438491463661194
- ]
- ]
- ],
- [
- [
- [
- 0.9314394593238831
- ]
- ]
- ],
- [
- [
- [
- 1.2167338132858276
- ]
- ]
- ],
- [
- [
- [
- 1.084581971168518
- ]
- ]
- ],
- [
- [
- [
- 0.9906135201454163
- ]
- ]
- ],
- [
- [
- [
- 1.109767198562622
- ]
- ]
- ],
- [
- [
- [
- 1.1694353818893433
- ]
- ]
- ],
- [
- [
- [
- 0.9967679977416992
- ]
- ]
- ],
- [
- [
- [
- 0.9304764866828918
- ]
- ]
- ],
- [
- [
- [
- 1.2569602727890015
- ]
- ]
- ],
- [
- [
- [
- 1.4095278978347778
- ]
- ]
- ],
- [
- [
- [
- 1.1177442073822021
- ]
- ]
- ],
- [
- [
- [
- 1.1069436073303223
- ]
- ]
- ],
- [
- [
- [
- 1.4498186111450195
- ]
- ]
- ],
- [
- [
- [
- 1.1434459686279297
- ]
- ]
- ],
- [
- [
- [
- 1.0918574333190918
- ]
- ]
- ],
- [
- [
- [
- 1.0191292762756348
- ]
- ]
- ],
- [
- [
- [
- 1.0982662439346313
- ]
- ]
- ],
- [
- [
- [
- 1.1418126821517944
- ]
- ]
- ],
- [
- [
- [
- 0.9569193124771118
- ]
- ]
- ],
- [
- [
- [
- 0.9890464544296265
- ]
- ]
- ],
- [
- [
- [
- 0.9381627440452576
- ]
- ]
- ],
- [
- [
- [
- 1.0574634075164795
- ]
- ]
- ],
- [
- [
- [
- 1.0875447988510132
- ]
- ]
- ],
- [
- [
- [
- 1.070379376411438
- ]
- ]
- ],
- [
- [
- [
- 0.9775957465171814
- ]
- ]
- ],
- [
- [
- [
- 1.0251274108886719
- ]
- ]
- ],
- [
- [
- [
- 1.1181633472442627
- ]
- ]
- ],
- [
- [
- [
- 1.0554866790771484
- ]
- ]
- ],
- [
- [
- [
- 0.8782362341880798
- ]
- ]
- ],
- [
- [
- [
- 1.081396222114563
- ]
- ]
- ],
- [
- [
- [
- 0.999630868434906
- ]
- ]
- ],
- [
- [
- [
- 1.0213637351989746
- ]
- ]
- ],
- [
- [
- [
- 1.0546178817749023
- ]
- ]
- ],
- [
- [
- [
- 0.9052988886833191
- ]
- ]
- ],
- [
- [
- [
- 1.1843880414962769
- ]
- ]
- ],
- [
- [
- [
- 1.0908010005950928
- ]
- ]
- ],
- [
- [
- [
- 0.8818742036819458
- ]
- ]
- ],
- [
- [
- [
- 0.9863035678863525
- ]
- ]
- ],
- [
- [
- [
- 1.0003252029418945
- ]
- ]
- ],
- [
- [
- [
- 1.356971025466919
- ]
- ]
- ],
- [
- [
- [
- 0.9092697501182556
- ]
- ]
- ],
- [
- [
- [
- 0.974674642086029
- ]
- ]
- ],
- [
- [
- [
- 1.1732672452926636
- ]
- ]
- ],
- [
- [
- [
- 1.048018455505371
- ]
- ]
- ],
- [
- [
- [
- 1.0168042182922363
- ]
- ]
- ],
- [
- [
- [
- 1.164398431777954
- ]
- ]
- ],
- [
- [
- [
- 1.1958274841308594
- ]
- ]
- ],
- [
- [
- [
- 1.0630402565002441
- ]
- ]
- ],
- [
- [
- [
- 0.9315245151519775
- ]
- ]
- ],
- [
- [
- [
- 0.9949636459350586
- ]
- ]
- ],
- [
- [
- [
- 1.2398091554641724
- ]
- ]
- ],
- [
- [
- [
- 1.1028319597244263
- ]
- ]
- ],
- [
- [
- [
- 1.0009875297546387
- ]
- ]
- ],
- [
- [
- [
- 0.8744645714759827
- ]
- ]
- ],
- [
- [
- [
- 1.1580833196640015
- ]
- ]
- ],
- [
- [
- [
- 0.8973917365074158
- ]
- ]
- ],
- [
- [
- [
- 1.0696721076965332
- ]
- ]
- ],
- [
- [
- [
- 0.8751872181892395
- ]
- ]
- ],
- [
- [
- [
- 1.0858561992645264
- ]
- ]
- ],
- [
- [
- [
- 0.956839382648468
- ]
- ]
- ],
- [
- [
- [
- 1.0391230583190918
- ]
- ]
- ],
- [
- [
- [
- 1.2111361026763916
- ]
- ]
- ],
- [
- [
- [
- 0.9947336316108704
- ]
- ]
- ],
- [
- [
- [
- 0.9011788368225098
- ]
- ]
- ],
- [
- [
- [
- 1.0902773141860962
- ]
- ]
- ],
- [
- [
- [
- 1.2022267580032349
- ]
- ]
- ],
- [
- [
- [
- 1.0447752475738525
- ]
- ]
- ],
- [
- [
- [
- 0.9791738986968994
- ]
- ]
- ],
- [
- [
- [
- 0.975117027759552
- ]
- ]
- ],
- [
- [
- [
- 1.0790438652038574
- ]
- ]
- ],
- [
- [
- [
- 1.0845134258270264
- ]
- ]
- ],
- [
- [
- [
- 0.9572739601135254
- ]
- ]
- ],
- [
- [
- [
- 1.0808404684066772
- ]
- ]
- ],
- [
- [
- [
- 1.039548397064209
- ]
- ]
- ],
- [
- [
- [
- 0.9536731243133545
- ]
- ]
- ],
- [
- [
- [
- 0.9342179298400879
- ]
- ]
- ],
- [
- [
- [
- 0.9340324997901917
- ]
- ]
- ],
- [
- [
- [
- 0.9412869811058044
- ]
- ]
- ],
- [
- [
- [
- 0.9349332451820374
- ]
- ]
- ],
- [
- [
- [
- 1.258759617805481
- ]
- ]
- ],
- [
- [
- [
- 1.3072147369384766
- ]
- ]
- ],
- [
- [
- [
- 1.3572763204574585
- ]
- ]
- ],
- [
- [
- [
- 1.007968783378601
- ]
- ]
- ],
- [
- [
- [
- 0.8810752630233765
- ]
- ]
- ],
- [
- [
- [
- 1.0278948545455933
- ]
- ]
- ],
- [
- [
- [
- 0.8891944885253906
- ]
- ]
- ],
- [
- [
- [
- 0.8978524804115295
- ]
- ]
- ],
- [
- [
- [
- 1.0035778284072876
- ]
- ]
- ],
- [
- [
- [
- 1.1754200458526611
- ]
- ]
- ],
- [
- [
- [
- 1.1995974779129028
- ]
- ]
- ],
- [
- [
- [
- 1.2424542903900146
- ]
- ]
- ],
- [
- [
- [
- 0.9533348083496094
- ]
- ]
- ],
- [
- [
- [
- 0.9028401970863342
- ]
- ]
- ],
- [
- [
- [
- 0.8905308842658997
- ]
- ]
- ],
- [
- [
- [
- 0.9136421084403992
- ]
- ]
- ],
- [
- [
- [
- 1.0208842754364014
- ]
- ]
- ],
- [
- [
- [
- 1.249997854232788
- ]
- ]
- ],
- [
- [
- [
- 0.9038533568382263
- ]
- ]
- ],
- [
- [
- [
- 1.0959959030151367
- ]
- ]
- ],
- [
- [
- [
- 1.0703538656234741
- ]
- ]
- ],
- [
- [
- [
- 0.9960085153579712
- ]
- ]
- ],
- [
- [
- [
- 1.1064180135726929
- ]
- ]
- ],
- [
- [
- [
- 1.0244805812835693
- ]
- ]
- ],
- [
- [
- [
- 1.1023123264312744
- ]
- ]
- ],
- [
- [
- [
- 1.1334660053253174
- ]
- ]
- ],
- [
- [
- [
- 1.1243915557861328
- ]
- ]
- ],
- [
- [
- [
- 1.038134217262268
- ]
- ]
- ],
- [
- [
- [
- 0.9326073527336121
- ]
- ]
- ],
- [
- [
- [
- 0.9266437888145447
- ]
- ]
- ],
- [
- [
- [
- 0.9886530637741089
- ]
- ]
- ],
- [
- [
- [
- 1.3859061002731323
- ]
- ]
- ],
- [
- [
- [
- 1.0442261695861816
- ]
- ]
- ],
- [
- [
- [
- 1.1705939769744873
- ]
- ]
- ],
- [
- [
- [
- 0.9767018556594849
- ]
- ]
- ],
- [
- [
- [
- 0.9926846623420715
- ]
- ]
- ],
- [
- [
- [
- 1.128870964050293
- ]
- ]
- ],
- [
- [
- [
- 0.9656462669372559
- ]
- ]
- ],
- [
- [
- [
- 1.0403693914413452
- ]
- ]
- ],
- [
- [
- [
- 1.192579746246338
- ]
- ]
- ],
- [
- [
- [
- 1.0518159866333008
- ]
- ]
- ],
- [
- [
- [
- 0.9633121490478516
- ]
- ]
- ],
- [
- [
- [
- 1.0014386177062988
- ]
- ]
- ],
- [
- [
- [
- 0.8739585280418396
- ]
- ]
- ],
- [
- [
- [
- 1.1564912796020508
- ]
- ]
- ],
- [
- [
- [
- 1.1049473285675049
- ]
- ]
- ],
- [
- [
- [
- 0.9471585154533386
- ]
- ]
- ],
- [
- [
- [
- 1.0494964122772217
- ]
- ]
- ],
- [
- [
- [
- 1.0051406621932983
- ]
- ]
- ],
- [
- [
- [
- 0.9241628646850586
- ]
- ]
- ],
- [
- [
- [
- 1.2139900922775269
- ]
- ]
- ],
- [
- [
- [
- 0.8791210651397705
- ]
- ]
- ],
- [
- [
- [
- 1.0671290159225464
- ]
- ]
- ],
- [
- [
- [
- 1.2966636419296265
- ]
- ]
- ],
- [
- [
- [
- 1.0498162508010864
- ]
- ]
- ],
- [
- [
- [
- 1.2444278001785278
- ]
- ]
- ],
- [
- [
- [
- 0.8769262433052063
- ]
- ]
- ],
- [
- [
- [
- 1.057062029838562
- ]
- ]
- ],
- [
- [
- [
- 1.0791765451431274
- ]
- ]
- ],
- [
- [
- [
- 0.8913027048110962
- ]
- ]
- ],
- [
- [
- [
- 1.0281563997268677
- ]
- ]
- ],
- [
- [
- [
- 1.0479307174682617
- ]
- ]
- ],
- [
- [
- [
- 1.0180803537368774
- ]
- ]
- ],
- [
- [
- [
- 1.0311634540557861
- ]
- ]
- ],
- [
- [
- [
- 0.9627006649971008
- ]
- ]
- ],
- [
- [
- [
- 1.1538949012756348
- ]
- ]
- ],
- [
- [
- [
- 1.276624083518982
- ]
- ]
- ],
- [
- [
- [
- 1.0041576623916626
- ]
- ]
- ],
- [
- [
- [
- 0.9421504735946655
- ]
- ]
- ],
- [
- [
- [
- 1.10451340675354
- ]
- ]
- ],
- [
- [
- [
- 0.9514027833938599
- ]
- ]
- ],
- [
- [
- [
- 0.8607175350189209
- ]
- ]
- ],
- [
- [
- [
- 1.0594812631607056
- ]
- ]
- ],
- [
- [
- [
- 1.1915260553359985
- ]
- ]
- ],
- [
- [
- [
- 1.2745659351348877
- ]
- ]
- ],
- [
- [
- [
- 1.3023194074630737
- ]
- ]
- ],
- [
- [
- [
- 1.1491321325302124
- ]
- ]
- ],
- [
- [
- [
- 1.1788514852523804
- ]
- ]
- ],
- [
- [
- [
- 1.041752815246582
- ]
- ]
- ],
- [
- [
- [
- 1.0274423360824585
- ]
- ]
- ],
- [
- [
- [
- 1.0060992240905762
- ]
- ]
- ],
- [
- [
- [
- 1.043733835220337
- ]
- ]
- ],
- [
- [
- [
- 1.0043559074401855
- ]
- ]
- ],
- [
- [
- [
- 1.242361307144165
- ]
- ]
- ],
- [
- [
- [
- 1.0917469263076782
- ]
- ]
- ],
- [
- [
- [
- 0.8868166208267212
- ]
- ]
- ],
- [
- [
- [
- 1.1185859441757202
- ]
- ]
- ],
- [
- [
- [
- 1.215065836906433
- ]
- ]
- ],
- [
- [
- [
- 1.1409235000610352
- ]
- ]
- ],
- [
- [
- [
- 1.3653721809387207
- ]
- ]
- ],
- [
- [
- [
- 1.0264019966125488
- ]
- ]
- ],
- [
- [
- [
- 1.0741392374038696
- ]
- ]
- ],
- [
- [
- [
- 1.0314425230026245
- ]
- ]
- ],
- [
- [
- [
- 1.0425899028778076
- ]
- ]
- ],
- [
- [
- [
- 1.2318168878555298
- ]
- ]
- ],
- [
- [
- [
- 1.0735887289047241
- ]
- ]
- ],
- [
- [
- [
- 0.9825544357299805
- ]
- ]
- ],
- [
- [
- [
- 1.2492674589157104
- ]
- ]
- ],
- [
- [
- [
- 1.0203065872192383
- ]
- ]
- ],
- [
- [
- [
- 1.081558108329773
- ]
- ]
- ],
- [
- [
- [
- 0.937170684337616
- ]
- ]
- ],
- [
- [
- [
- 0.9265850186347961
- ]
- ]
- ],
- [
- [
- [
- 1.0881130695343018
- ]
- ]
- ],
- [
- [
- [
- 0.9770416617393494
- ]
- ]
- ],
- [
- [
- [
- 1.2899556159973145
- ]
- ]
- ],
- [
- [
- [
- 0.9241189360618591
- ]
- ]
- ],
- [
- [
- [
- 1.2112699747085571
- ]
- ]
- ],
- [
- [
- [
- 0.8882724046707153
- ]
- ]
- ],
- [
- [
- [
- 1.0282716751098633
- ]
- ]
- ],
- [
- [
- [
- 0.9828348755836487
- ]
- ]
- ],
- [
- [
- [
- 1.0737230777740479
- ]
- ]
- ],
- [
- [
- [
- 0.9871606230735779
- ]
- ]
- ],
- [
- [
- [
- 0.9771016836166382
- ]
- ]
- ],
- [
- [
- [
- 0.9747909307479858
- ]
- ]
- ],
- [
- [
- [
- 1.1770833730697632
- ]
- ]
- ],
- [
- [
- [
- 0.8328016400337219
- ]
- ]
- ],
- [
- [
- [
- 1.443938970565796
- ]
- ]
- ],
- [
- [
- [
- 1.0111873149871826
- ]
- ]
- ],
- [
- [
- [
- 1.174965500831604
- ]
- ]
- ],
- [
- [
- [
- 0.9433943629264832
- ]
- ]
- ],
- [
- [
- [
- 0.9464369416236877
- ]
- ]
- ],
- [
- [
- [
- 1.1407573223114014
- ]
- ]
- ],
- [
- [
- [
- 0.9741951823234558
- ]
- ]
- ],
- [
- [
- [
- 1.0612951517105103
- ]
- ]
- ],
- [
- [
- [
- 1.1312328577041626
- ]
- ]
- ],
- [
- [
- [
- 0.9462396502494812
- ]
- ]
- ],
- [
- [
- [
- 0.8338273763656616
- ]
- ]
- ],
- [
- [
- [
- 0.9607547521591187
- ]
- ]
- ],
- [
- [
- [
- 0.9146403074264526
- ]
- ]
- ],
- [
- [
- [
- 0.9611701369285583
- ]
- ]
- ],
- [
- [
- [
- 1.1471474170684814
- ]
- ]
- ],
- [
- [
- [
- 1.1801178455352783
- ]
- ]
- ],
- [
- [
- [
- 1.1448014974594116
- ]
- ]
- ],
- [
- [
- [
- 0.9068194031715393
- ]
- ]
- ],
- [
- [
- [
- 1.0315921306610107
- ]
- ]
- ],
- [
- [
- [
- 0.9900477528572083
- ]
- ]
- ],
- [
- [
- [
- 0.9586200714111328
- ]
- ]
- ],
- [
- [
- [
- 1.0193208456039429
- ]
- ]
- ],
- [
- [
- [
- 0.9869599938392639
- ]
- ]
- ],
- [
- [
- [
- 1.0661892890930176
- ]
- ]
- ],
- [
- [
- [
- 1.1352925300598145
- ]
- ]
- ],
- [
- [
- [
- 1.2916767597198486
- ]
- ]
- ],
- [
- [
- [
- 1.1136655807495117
- ]
- ]
- ],
- [
- [
- [
- 1.2857850790023804
- ]
- ]
- ],
- [
- [
- [
- 1.0083401203155518
- ]
- ]
- ],
- [
- [
- [
- 0.9288949966430664
- ]
- ]
- ],
- [
- [
- [
- 1.1385548114776611
- ]
- ]
- ],
- [
- [
- [
- 0.8625121116638184
- ]
- ]
- ],
- [
- [
- [
- 1.2757608890533447
- ]
- ]
- ],
- [
- [
- [
- 1.0160857439041138
- ]
- ]
- ],
- [
- [
- [
- 1.072108268737793
- ]
- ]
- ],
- [
- [
- [
- 0.8454800248146057
- ]
- ]
- ],
- [
- [
- [
- 1.2928614616394043
- ]
- ]
- ],
- [
- [
- [
- 1.1194101572036743
- ]
- ]
- ],
- [
- [
- [
- 0.9775660037994385
- ]
- ]
- ],
- [
- [
- [
- 0.9476670622825623
- ]
- ]
- ],
- [
- [
- [
- 0.924085259437561
- ]
- ]
- ],
- [
- [
- [
- 0.948512852191925
- ]
- ]
- ],
- [
- [
- [
- 0.9827684760093689
- ]
- ]
- ],
- [
- [
- [
- 1.1721360683441162
- ]
- ]
- ],
- [
- [
- [
- 0.9274629950523376
- ]
- ]
- ],
- [
- [
- [
- 0.9326360821723938
- ]
- ]
- ],
- [
- [
- [
- 0.9119270443916321
- ]
- ]
- ],
- [
- [
- [
- 1.1501086950302124
- ]
- ]
- ],
- [
- [
- [
- 0.9949315190315247
- ]
- ]
- ],
- [
- [
- [
- 1.081493854522705
- ]
- ]
- ],
- [
- [
- [
- 1.0049703121185303
- ]
- ]
- ],
- [
- [
- [
- 1.0624843835830688
- ]
- ]
- ],
- [
- [
- [
- 1.1247005462646484
- ]
- ]
- ],
- [
- [
- [
- 1.0666905641555786
- ]
- ]
- ],
- [
- [
- [
- 0.9057600498199463
- ]
- ]
- ],
- [
- [
- [
- 0.9993549585342407
- ]
- ]
- ],
- [
- [
- [
- 1.0748307704925537
- ]
- ]
- ],
- [
- [
- [
- 0.8645081520080566
- ]
- ]
- ],
- [
- [
- [
- 1.0128540992736816
- ]
- ]
- ],
- [
- [
- [
- 1.1865665912628174
- ]
- ]
- ],
- [
- [
- [
- 1.0805553197860718
- ]
- ]
- ],
- [
- [
- [
- 0.9412241578102112
- ]
- ]
- ],
- [
- [
- [
- 1.0709384679794312
- ]
- ]
- ],
- [
- [
- [
- 1.074902892112732
- ]
- ]
- ],
- [
- [
- [
- 0.9770339727401733
- ]
- ]
- ],
- [
- [
- [
- 1.1531246900558472
- ]
- ]
- ],
- [
- [
- [
- 1.045769214630127
- ]
- ]
- ],
- [
- [
- [
- 0.8681127429008484
- ]
- ]
- ],
- [
- [
- [
- 1.0733221769332886
- ]
- ]
- ],
- [
- [
- [
- 1.1108791828155518
- ]
- ]
- ],
- [
- [
- [
- 1.1578302383422852
- ]
- ]
- ],
- [
- [
- [
- 1.0519989728927612
- ]
- ]
- ],
- [
- [
- [
- 1.064167857170105
- ]
- ]
- ],
- [
- [
- [
- 0.9444636106491089
- ]
- ]
- ],
- [
- [
- [
- 1.1508172750473022
- ]
- ]
- ],
- [
- [
- [
- 1.0227632522583008
- ]
- ]
- ],
- [
- [
- [
- 1.1821093559265137
- ]
- ]
- ],
- [
- [
- [
- 1.0196737051010132
- ]
- ]
- ],
- [
- [
- [
- 0.9042742252349854
- ]
- ]
- ],
- [
- [
- [
- 0.9510952234268188
- ]
- ]
- ],
- [
- [
- [
- 1.1046959161758423
- ]
- ]
- ],
- [
- [
- [
- 1.0874121189117432
- ]
- ]
- ],
- [
- [
- [
- 1.0555789470672607
- ]
- ]
- ],
- [
- [
- [
- 0.9716154932975769
- ]
- ]
- ],
- [
- [
- [
- 1.1370609998703003
- ]
- ]
- ],
- [
- [
- [
- 0.8890295624732971
- ]
- ]
- ],
- [
- [
- [
- 1.076837182044983
- ]
- ]
- ],
- [
- [
- [
- 1.2104840278625488
- ]
- ]
- ],
- [
- [
- [
- 1.001082181930542
- ]
- ]
- ],
- [
- [
- [
- 1.0418784618377686
- ]
- ]
- ],
- [
- [
- [
- 1.1214569807052612
- ]
- ]
- ],
- [
- [
- [
- 1.0205363035202026
- ]
- ]
- ],
- [
- [
- [
- 0.949020266532898
- ]
- ]
- ],
- [
- [
- [
- 0.9941352605819702
- ]
- ]
- ],
- [
- [
- [
- 1.0550471544265747
- ]
- ]
- ],
- [
- [
- [
- 1.1806210279464722
- ]
- ]
- ],
- [
- [
- [
- 1.063831090927124
- ]
- ]
- ],
- [
- [
- [
- 0.9540398716926575
- ]
- ]
- ],
- [
- [
- [
- 1.3580119609832764
- ]
- ]
- ],
- [
- [
- [
- 1.0793349742889404
- ]
- ]
- ],
- [
- [
- [
- 1.105453372001648
- ]
- ]
- ],
- [
- [
- [
- 1.153299331665039
- ]
- ]
- ],
- [
- [
- [
- 1.4000060558319092
- ]
- ]
- ],
- [
- [
- [
- 0.9018593430519104
- ]
- ]
- ],
- [
- [
- [
- 1.1524367332458496
- ]
- ]
- ],
- [
- [
- [
- 1.1427441835403442
- ]
- ]
- ],
- [
- [
- [
- 1.062362551689148
- ]
- ]
- ],
- [
- [
- [
- 1.1045435667037964
- ]
- ]
- ],
- [
- [
- [
- 1.2931828498840332
- ]
- ]
- ],
- [
- [
- [
- 0.9359686374664307
- ]
- ]
- ],
- [
- [
- [
- 0.9755357503890991
- ]
- ]
- ],
- [
- [
- [
- 0.946886420249939
- ]
- ]
- ],
- [
- [
- [
- 0.8571058511734009
- ]
- ]
- ],
- [
- [
- [
- 1.0224840641021729
- ]
- ]
- ],
- [
- [
- [
- 0.9571502804756165
- ]
- ]
- ],
- [
- [
- [
- 0.8671402335166931
- ]
- ]
- ],
- [
- [
- [
- 1.0481683015823364
- ]
- ]
- ],
- [
- [
- [
- 1.0317639112472534
- ]
- ]
- ],
- [
- [
- [
- 1.2178491353988647
- ]
- ]
- ],
- [
- [
- [
- 1.008280873298645
- ]
- ]
- ],
- [
- [
- [
- 0.9531464576721191
- ]
- ]
- ],
- [
- [
- [
- 1.0938166379928589
- ]
- ]
- ],
- [
- [
- [
- 0.8070809245109558
- ]
- ]
- ],
- [
- [
- [
- 0.8963366150856018
- ]
- ]
- ],
- [
- [
- [
- 0.9782972931861877
- ]
- ]
- ],
- [
- [
- [
- 1.207140564918518
- ]
- ]
- ],
- [
- [
- [
- 0.8975882530212402
- ]
- ]
- ],
- [
- [
- [
- 1.0835970640182495
- ]
- ]
- ],
- [
- [
- [
- 0.9120482206344604
- ]
- ]
- ],
- [
- [
- [
- 0.9942784309387207
- ]
- ]
- ],
- [
- [
- [
- 1.1974923610687256
- ]
- ]
- ],
- [
- [
- [
- 1.0429184436798096
- ]
- ]
- ],
- [
- [
- [
- 0.8633242249488831
- ]
- ]
- ],
- [
- [
- [
- 0.9132651090621948
- ]
- ]
- ],
- [
- [
- [
- 0.9730945825576782
- ]
- ]
- ],
- [
- [
- [
- 1.0051466226577759
- ]
- ]
- ],
- [
- [
- [
- 1.1378281116485596
- ]
- ]
- ],
- [
- [
- [
- 1.0244734287261963
- ]
- ]
- ],
- [
- [
- [
- 0.8485549688339233
- ]
- ]
- ],
- [
- [
- [
- 1.0585641860961914
- ]
- ]
- ],
- [
- [
- [
- 0.9116373658180237
- ]
- ]
- ],
- [
- [
- [
- 1.0814012289047241
- ]
- ]
- ],
- [
- [
- [
- 0.8764873147010803
- ]
- ]
- ],
- [
- [
- [
- 0.9200323224067688
- ]
- ]
- ],
- [
- [
- [
- 1.1397144794464111
- ]
- ]
- ],
- [
- [
- [
- 1.0758315324783325
- ]
- ]
- ],
- [
- [
- [
- 0.9473378658294678
- ]
- ]
- ],
- [
- [
- [
- 0.8864887356758118
- ]
- ]
- ],
- [
- [
- [
- 1.027967929840088
- ]
- ]
- ],
- [
- [
- [
- 1.0994118452072144
- ]
- ]
- ],
- [
- [
- [
- 1.3142101764678955
- ]
- ]
- ],
- [
- [
- [
- 0.9950578212738037
- ]
- ]
- ],
- [
- [
- [
- 0.954127311706543
- ]
- ]
- ],
- [
- [
- [
- 1.0410901308059692
- ]
- ]
- ],
- [
- [
- [
- 1.0565950870513916
- ]
- ]
- ],
- [
- [
- [
- 1.037336826324463
- ]
- ]
- ],
- [
- [
- [
- 1.0508824586868286
- ]
- ]
- ],
- [
- [
- [
- 1.0649062395095825
- ]
- ]
- ],
- [
- [
- [
- 1.2643682956695557
- ]
- ]
- ],
- [
- [
- [
- 1.1107748746871948
- ]
- ]
- ],
- [
- [
- [
- 1.126798152923584
- ]
- ]
- ],
- [
- [
- [
- 0.9122111797332764
- ]
- ]
- ],
- [
- [
- [
- 0.9524283409118652
- ]
- ]
- ],
- [
- [
- [
- 1.2405966520309448
- ]
- ]
- ],
- [
- [
- [
- 1.1679342985153198
- ]
- ]
- ],
- [
- [
- [
- 1.0392626523971558
- ]
- ]
- ],
- [
- [
- [
- 0.8760585188865662
- ]
- ]
- ],
- [
- [
- [
- 0.8741157054901123
- ]
- ]
- ],
- [
- [
- [
- 0.9548141360282898
- ]
- ]
- ],
- [
- [
- [
- 0.9706990122795105
- ]
- ]
- ],
- [
- [
- [
- 1.1455386877059937
- ]
- ]
- ],
- [
- [
- [
- 0.8311827778816223
- ]
- ]
- ],
- [
- [
- [
- 0.8358185887336731
- ]
- ]
- ],
- [
- [
- [
- 0.9647719264030457
- ]
- ]
- ],
- [
- [
- [
- 1.0174694061279297
- ]
- ]
- ],
- [
- [
- [
- 1.0811899900436401
- ]
- ]
- ],
- [
- [
- [
- 1.0228279829025269
- ]
- ]
- ],
- [
- [
- [
- 1.3363714218139648
- ]
- ]
- ],
- [
- [
- [
- 1.202298879623413
- ]
- ]
- ],
- [
- [
- [
- 0.9641047120094299
- ]
- ]
- ],
- [
- [
- [
- 1.1036877632141113
- ]
- ]
- ],
- [
- [
- [
- 1.044417381286621
- ]
- ]
- ],
- [
- [
- [
- 1.2973098754882812
- ]
- ]
- ],
- [
- [
- [
- 1.3021875619888306
- ]
- ]
- ],
- [
- [
- [
- 0.9591345191001892
- ]
- ]
- ],
- [
- [
- [
- 0.9549047946929932
- ]
- ]
- ],
- [
- [
- [
- 0.9558269381523132
- ]
- ]
- ],
- [
- [
- [
- 1.1656184196472168
- ]
- ]
- ],
- [
- [
- [
- 1.3799079656600952
- ]
- ]
- ],
- [
- [
- [
- 1.1299395561218262
- ]
- ]
- ],
- [
- [
- [
- 1.0141754150390625
- ]
- ]
- ],
- [
- [
- [
- 0.8755527138710022
- ]
- ]
- ],
- [
- [
- [
- 0.9361050128936768
- ]
- ]
- ],
- [
- [
- [
- 0.968070387840271
- ]
- ]
- ],
- [
- [
- [
- 0.9279971718788147
- ]
- ]
- ],
- [
- [
- [
- 1.1448434591293335
- ]
- ]
- ],
- [
- [
- [
- 0.858123242855072
- ]
- ]
- ],
- [
- [
- [
- 1.1218311786651611
- ]
- ]
- ],
- [
- [
- [
- 0.97364342212677
- ]
- ]
- ],
- [
- [
- [
- 1.0089670419692993
- ]
- ]
- ],
- [
- [
- [
- 1.1893596649169922
- ]
- ]
- ],
- [
- [
- [
- 1.1618074178695679
- ]
- ]
- ],
- [
- [
- [
- 1.0006062984466553
- ]
- ]
- ],
- [
- [
- [
- 1.0363999605178833
- ]
- ]
- ],
- [
- [
- [
- 1.4448304176330566
- ]
- ]
- ],
- [
- [
- [
- 0.9783505797386169
- ]
- ]
- ],
- [
- [
- [
- 1.063950538635254
- ]
- ]
- ],
- [
- [
- [
- 1.2171812057495117
- ]
- ]
- ],
- [
- [
- [
- 0.9537957906723022
- ]
- ]
- ],
- [
- [
- [
- 1.0810315608978271
- ]
- ]
- ],
- [
- [
- [
- 1.116645097732544
- ]
- ]
- ],
- [
- [
- [
- 0.9056975245475769
- ]
- ]
- ],
- [
- [
- [
- 1.2064576148986816
- ]
- ]
- ],
- [
- [
- [
- 1.0363768339157104
- ]
- ]
- ],
- [
- [
- [
- 0.8926680088043213
- ]
- ]
- ],
- [
- [
- [
- 0.988464891910553
- ]
- ]
- ],
- [
- [
- [
- 1.2780306339263916
- ]
- ]
- ],
- [
- [
- [
- 0.9857171773910522
- ]
- ]
- ],
- [
- [
- [
- 1.25666344165802
- ]
- ]
- ],
- [
- [
- [
- 0.8698002696037292
- ]
- ]
- ],
- [
- [
- [
- 0.9867891669273376
- ]
- ]
- ],
- [
- [
- [
- 0.8669582009315491
- ]
- ]
- ],
- [
- [
- [
- 0.9488417506217957
- ]
- ]
- ],
- [
- [
- [
- 0.9466429948806763
- ]
- ]
- ],
- [
- [
- [
- 0.7996994256973267
- ]
- ]
- ],
- [
- [
- [
- 0.9027645587921143
- ]
- ]
- ],
- [
- [
- [
- 0.8893091082572937
- ]
- ]
- ],
- [
- [
- [
- 0.9615079760551453
- ]
- ]
- ],
- [
- [
- [
- 0.9414946436882019
- ]
- ]
- ],
- [
- [
- [
- 1.154750108718872
- ]
- ]
- ],
- [
- [
- [
- 0.9982889294624329
- ]
- ]
- ],
- [
- [
- [
- 0.9375662803649902
- ]
- ]
- ],
- [
- [
- [
- 1.0495917797088623
- ]
- ]
- ],
- [
- [
- [
- 0.907593846321106
- ]
- ]
- ],
- [
- [
- [
- 0.9003844857215881
- ]
- ]
- ],
- [
- [
- [
- 0.8861998319625854
- ]
- ]
- ],
- [
- [
- [
- 1.1976532936096191
- ]
- ]
- ],
- [
- [
- [
- 0.962557852268219
- ]
- ]
- ],
- [
- [
- [
- 1.0082967281341553
- ]
- ]
- ],
- [
- [
- [
- 1.0035251379013062
- ]
- ]
- ],
- [
- [
- [
- 1.176417589187622
- ]
- ]
- ],
- [
- [
- [
- 1.2831366062164307
- ]
- ]
- ],
- [
- [
- [
- 0.9748857617378235
- ]
- ]
- ],
- [
- [
- [
- 1.2109774351119995
- ]
- ]
- ],
- [
- [
- [
- 1.078963279724121
- ]
- ]
- ],
- [
- [
- [
- 1.0289831161499023
- ]
- ]
- ],
- [
- [
- [
- 1.2135554552078247
- ]
- ]
- ],
- [
- [
- [
- 1.754465103149414
- ]
- ]
- ],
- [
- [
- [
- 1.090802550315857
- ]
- ]
- ],
- [
- [
- [
- 1.0062347650527954
- ]
- ]
- ],
- [
- [
- [
- 1.3429503440856934
- ]
- ]
- ],
- [
- [
- [
- 1.1255489587783813
- ]
- ]
- ],
- [
- [
- [
- 1.0317440032958984
- ]
- ]
- ],
- [
- [
- [
- 1.179051160812378
- ]
- ]
- ],
- [
- [
- [
- 0.8333987593650818
- ]
- ]
- ],
- [
- [
- [
- 0.9396768808364868
- ]
- ]
- ],
- [
- [
- [
- 1.0890417098999023
- ]
- ]
- ],
- [
- [
- [
- 0.9309419393539429
- ]
- ]
- ],
- [
- [
- [
- 1.0102843046188354
- ]
- ]
- ],
- [
- [
- [
- 0.9432196617126465
- ]
- ]
- ],
- [
- [
- [
- 1.1532131433486938
- ]
- ]
- ],
- [
- [
- [
- 1.3022540807724
- ]
- ]
- ],
- [
- [
- [
- 1.2124758958816528
- ]
- ]
- ],
- [
- [
- [
- 0.8487300276756287
- ]
- ]
- ],
- [
- [
- [
- 1.3267371654510498
- ]
- ]
- ],
- [
- [
- [
- 1.0668996572494507
- ]
- ]
- ],
- [
- [
- [
- 1.123834490776062
- ]
- ]
- ],
- [
- [
- [
- 1.0314404964447021
- ]
- ]
- ],
- [
- [
- [
- 0.8755265474319458
- ]
- ]
- ],
- [
- [
- [
- 0.9168115854263306
- ]
- ]
- ],
- [
- [
- [
- 1.068183422088623
- ]
- ]
- ],
- [
- [
- [
- 1.1002918481826782
- ]
- ]
- ],
- [
- [
- [
- 0.9287847876548767
- ]
- ]
- ],
- [
- [
- [
- 1.0686533451080322
- ]
- ]
- ],
- [
- [
- [
- 1.1428122520446777
- ]
- ]
- ],
- [
- [
- [
- 0.9422306418418884
- ]
- ]
- ],
- [
- [
- [
- 1.0455546379089355
- ]
- ]
- ],
- [
- [
- [
- 0.9890179634094238
- ]
- ]
- ],
- [
- [
- [
- 1.0845826864242554
- ]
- ]
- ],
- [
- [
- [
- 1.0206300020217896
- ]
- ]
- ],
- [
- [
- [
- 1.0744905471801758
- ]
- ]
- ],
- [
- [
- [
- 1.0404577255249023
- ]
- ]
- ],
- [
- [
- [
- 0.8507762551307678
- ]
- ]
- ],
- [
- [
- [
- 1.1101171970367432
- ]
- ]
- ],
- [
- [
- [
- 1.165541410446167
- ]
- ]
- ],
- [
- [
- [
- 1.1639692783355713
- ]
- ]
- ],
- [
- [
- [
- 1.0935155153274536
- ]
- ]
- ],
- [
- [
- [
- 0.9642266631126404
- ]
- ]
- ],
- [
- [
- [
- 1.0703414678573608
- ]
- ]
- ],
- [
- [
- [
- 1.1228464841842651
- ]
- ]
- ],
- [
- [
- [
- 1.2027513980865479
- ]
- ]
- ],
- [
- [
- [
- 0.9062309265136719
- ]
- ]
- ],
- [
- [
- [
- 1.017543911933899
- ]
- ]
- ],
- [
- [
- [
- 0.8918632864952087
- ]
- ]
- ],
- [
- [
- [
- 0.94833904504776
- ]
- ]
- ],
- [
- [
- [
- 1.1465473175048828
- ]
- ]
- ],
- [
- [
- [
- 0.9237032532691956
- ]
- ]
- ],
- [
- [
- [
- 1.3423292636871338
- ]
- ]
- ],
- [
- [
- [
- 1.110587477684021
- ]
- ]
- ],
- [
- [
- [
- 1.0027050971984863
- ]
- ]
- ],
- [
- [
- [
- 0.859287679195404
- ]
- ]
- ],
- [
- [
- [
- 1.0727876424789429
- ]
- ]
- ],
- [
- [
- [
- 1.1240602731704712
- ]
- ]
- ],
- [
- [
- [
- 1.1620910167694092
- ]
- ]
- ],
- [
- [
- [
- 0.9728571176528931
- ]
- ]
- ],
- [
- [
- [
- 1.0243632793426514
- ]
- ]
- ],
- [
- [
- [
- 1.0096006393432617
- ]
- ]
- ],
- [
- [
- [
- 0.9416310787200928
- ]
- ]
- ],
- [
- [
- [
- 1.0457837581634521
- ]
- ]
- ],
- [
- [
- [
- 0.9331189393997192
- ]
- ]
- ],
- [
- [
- [
- 0.9473450183868408
- ]
- ]
- ],
- [
- [
- [
- 0.9231617450714111
- ]
- ]
- ],
- [
- [
- [
- 0.9393772482872009
- ]
- ]
- ],
- [
- [
- [
- 0.9252429604530334
- ]
- ]
- ],
- [
- [
- [
- 1.1057758331298828
- ]
- ]
- ],
- [
- [
- [
- 1.0021097660064697
- ]
- ]
- ],
- [
- [
- [
- 0.868303656578064
- ]
- ]
- ],
- [
- [
- [
- 1.1718151569366455
- ]
- ]
- ],
- [
- [
- [
- 1.0418108701705933
- ]
- ]
- ],
- [
- [
- [
- 1.3579179048538208
- ]
- ]
- ],
- [
- [
- [
- 0.914419412612915
- ]
- ]
- ],
- [
- [
- [
- 0.9089223742485046
- ]
- ]
- ],
- [
- [
- [
- 1.0666972398757935
- ]
- ]
- ],
- [
- [
- [
- 0.9895171523094177
- ]
- ]
- ],
- [
- [
- [
- 1.1276636123657227
- ]
- ]
- ],
- [
- [
- [
- 1.0933486223220825
- ]
- ]
- ],
- [
- [
- [
- 1.0089737176895142
- ]
- ]
- ],
- [
- [
- [
- 1.0134998559951782
- ]
- ]
- ],
- [
- [
- [
- 0.9586994051933289
- ]
- ]
- ],
- [
- [
- [
- 0.9611824154853821
- ]
- ]
- ],
- [
- [
- [
- 0.9234668612480164
- ]
- ]
- ],
- [
- [
- [
- 0.9769498109817505
- ]
- ]
- ],
- [
- [
- [
- 1.0329909324645996
- ]
- ]
- ],
- [
- [
- [
- 1.109122633934021
- ]
- ]
- ],
- [
- [
- [
- 1.016844391822815
- ]
- ]
- ],
- [
- [
- [
- 1.1730237007141113
- ]
- ]
- ],
- [
- [
- [
- 0.8907853364944458
- ]
- ]
- ],
- [
- [
- [
- 1.0471842288970947
- ]
- ]
- ],
- [
- [
- [
- 0.9165148735046387
- ]
- ]
- ],
- [
- [
- [
- 1.183213472366333
- ]
- ]
- ],
- [
- [
- [
- 0.9386231303215027
- ]
- ]
- ],
- [
- [
- [
- 1.2009954452514648
- ]
- ]
- ],
- [
- [
- [
- 0.9719381332397461
- ]
- ]
- ],
- [
- [
- [
- 0.9470806121826172
- ]
- ]
- ],
- [
- [
- [
- 1.0678826570510864
- ]
- ]
- ],
- [
- [
- [
- 0.8914904594421387
- ]
- ]
- ],
- [
- [
- [
- 1.2094393968582153
- ]
- ]
- ],
- [
- [
- [
- 1.0731004476547241
- ]
- ]
- ],
- [
- [
- [
- 0.9327958822250366
- ]
- ]
- ],
- [
- [
- [
- 1.1446822881698608
- ]
- ]
- ],
- [
- [
- [
- 0.8550580739974976
- ]
- ]
- ],
- [
- [
- [
- 0.9099161624908447
- ]
- ]
- ],
- [
- [
- [
- 0.8784576654434204
- ]
- ]
- ],
- [
- [
- [
- 1.0977330207824707
- ]
- ]
- ],
- [
- [
- [
- 1.131624460220337
- ]
- ]
- ],
- [
- [
- [
- 1.0359814167022705
- ]
- ]
- ],
- [
- [
- [
- 1.1548970937728882
- ]
- ]
- ],
- [
- [
- [
- 1.0996190309524536
- ]
- ]
- ],
- [
- [
- [
- 1.1651257276535034
- ]
- ]
- ],
- [
- [
- [
- 1.0054795742034912
- ]
- ]
- ],
- [
- [
- [
- 1.081498622894287
- ]
- ]
- ],
- [
- [
- [
- 1.1673420667648315
- ]
- ]
- ],
- [
- [
- [
- 1.0609326362609863
- ]
- ]
- ],
- [
- [
- [
- 1.1646230220794678
- ]
- ]
- ],
- [
- [
- [
- 1.2004386186599731
- ]
- ]
- ],
- [
- [
- [
- 1.2459582090377808
- ]
- ]
- ],
- [
- [
- [
- 0.9282576441764832
- ]
- ]
- ],
- [
- [
- [
- 0.9680273532867432
- ]
- ]
- ],
- [
- [
- [
- 1.0662275552749634
- ]
- ]
- ],
- [
- [
- [
- 0.9931215047836304
- ]
- ]
- ],
- [
- [
- [
- 0.9181368947029114
- ]
- ]
- ],
- [
- [
- [
- 1.0280262231826782
- ]
- ]
- ],
- [
- [
- [
- 1.0315675735473633
- ]
- ]
- ],
- [
- [
- [
- 1.211349368095398
- ]
- ]
- ],
- [
- [
- [
- 0.9511834383010864
- ]
- ]
- ],
- [
- [
- [
- 0.9717198610305786
- ]
- ]
- ],
- [
- [
- [
- 1.0667681694030762
- ]
- ]
- ],
- [
- [
- [
- 1.0382022857666016
- ]
- ]
- ],
- [
- [
- [
- 0.9334288239479065
- ]
- ]
- ],
- [
- [
- [
- 1.0301597118377686
- ]
- ]
- ],
- [
- [
- [
- 0.967439591884613
- ]
- ]
- ],
- [
- [
- [
- 1.0981744527816772
- ]
- ]
- ],
- [
- [
- [
- 1.0317530632019043
- ]
- ]
- ],
- [
- [
- [
- 0.9220200181007385
- ]
- ]
- ],
- [
- [
- [
- 1.0175871849060059
- ]
- ]
- ],
- [
- [
- [
- 1.11359703540802
- ]
- ]
- ],
- [
- [
- [
- 1.1702944040298462
- ]
- ]
- ],
- [
- [
- [
- 1.1477751731872559
- ]
- ]
- ],
- [
- [
- [
- 0.9981474280357361
- ]
- ]
- ],
- [
- [
- [
- 0.9660216569900513
- ]
- ]
- ],
- [
- [
- [
- 1.0632623434066772
- ]
- ]
- ],
- [
- [
- [
- 1.0619792938232422
- ]
- ]
- ],
- [
- [
- [
- 0.9663714170455933
- ]
- ]
- ],
- [
- [
- [
- 1.037628173828125
- ]
- ]
- ],
- [
- [
- [
- 1.0056796073913574
- ]
- ]
- ],
- [
- [
- [
- 1.065121054649353
- ]
- ]
- ],
- [
- [
- [
- 1.0345733165740967
- ]
- ]
- ],
- [
- [
- [
- 0.9505118727684021
- ]
- ]
- ],
- [
- [
- [
- 0.897445559501648
- ]
- ]
- ],
- [
- [
- [
- 1.0598386526107788
- ]
- ]
- ],
- [
- [
- [
- 1.2676388025283813
- ]
- ]
- ],
- [
- [
- [
- 0.9511508941650391
- ]
- ]
- ],
- [
- [
- [
- 0.928439736366272
- ]
- ]
- ],
- [
- [
- [
- 1.2194916009902954
- ]
- ]
- ],
- [
- [
- [
- 1.0169765949249268
- ]
- ]
- ],
- [
- [
- [
- 0.9326657652854919
- ]
- ]
- ],
- [
- [
- [
- 0.9493452906608582
- ]
- ]
- ],
- [
- [
- [
- 0.9033411145210266
- ]
- ]
- ],
- [
- [
- [
- 1.1802440881729126
- ]
- ]
- ],
- [
- [
- [
- 1.347385048866272
- ]
- ]
- ],
- [
- [
- [
- 1.034165382385254
- ]
- ]
- ],
- [
- [
- [
- 1.0334899425506592
- ]
- ]
- ],
- [
- [
- [
- 0.9876420497894287
- ]
- ]
- ],
- [
- [
- [
- 1.1072570085525513
- ]
- ]
- ],
- [
- [
- [
- 0.9952456951141357
- ]
- ]
- ],
- [
- [
- [
- 1.2574394941329956
- ]
- ]
- ],
- [
- [
- [
- 0.8689859509468079
- ]
- ]
- ],
- [
- [
- [
- 1.2661182880401611
- ]
- ]
- ],
- [
- [
- [
- 1.03981614112854
- ]
- ]
- ],
- [
- [
- [
- 0.8809809684753418
- ]
- ]
- ],
- [
- [
- [
- 1.0084947347640991
- ]
- ]
- ],
- [
- [
- [
- 1.2330219745635986
- ]
- ]
- ],
- [
- [
- [
- 1.1273365020751953
- ]
- ]
- ],
- [
- [
- [
- 0.9146544933319092
- ]
- ]
- ],
- [
- [
- [
- 1.0193747282028198
- ]
- ]
- ],
- [
- [
- [
- 1.2053042650222778
- ]
- ]
- ],
- [
- [
- [
- 1.0879497528076172
- ]
- ]
- ],
- [
- [
- [
- 1.0110937356948853
- ]
- ]
- ],
- [
- [
- [
- 1.0061726570129395
- ]
- ]
- ],
- [
- [
- [
- 1.235247254371643
- ]
- ]
- ],
- [
- [
- [
- 0.8393933176994324
- ]
- ]
- ],
- [
- [
- [
- 0.824079692363739
- ]
- ]
- ],
- [
- [
- [
- 0.9523329734802246
- ]
- ]
- ],
- [
- [
- [
- 1.0180377960205078
- ]
- ]
- ],
- [
- [
- [
- 1.0148016214370728
- ]
- ]
- ],
- [
- [
- [
- 1.0527592897415161
- ]
- ]
- ],
- [
- [
- [
- 0.8780673742294312
- ]
- ]
- ],
- [
- [
- [
- 0.9197720885276794
- ]
- ]
- ],
- [
- [
- [
- 1.0121686458587646
- ]
- ]
- ],
- [
- [
- [
- 1.149194359779358
- ]
- ]
- ],
- [
- [
- [
- 0.9815737009048462
- ]
- ]
- ],
- [
- [
- [
- 0.9915777444839478
- ]
- ]
- ],
- [
- [
- [
- 1.1064143180847168
- ]
- ]
- ],
- [
- [
- [
- 0.9680820107460022
- ]
- ]
- ],
- [
- [
- [
- 0.9682905077934265
- ]
- ]
- ],
- [
- [
- [
- 0.9024412631988525
- ]
- ]
- ],
- [
- [
- [
- 0.8982731103897095
- ]
- ]
- ],
- [
- [
- [
- 1.1594024896621704
- ]
- ]
- ],
- [
- [
- [
- 0.9761938452720642
- ]
- ]
- ],
- [
- [
- [
- 0.9572800993919373
- ]
- ]
- ],
- [
- [
- [
- 1.1908619403839111
- ]
- ]
- ],
- [
- [
- [
- 0.8362125754356384
- ]
- ]
- ],
- [
- [
- [
- 1.0266835689544678
- ]
- ]
- ],
- [
- [
- [
- 0.9952780604362488
- ]
- ]
- ],
- [
- [
- [
- 0.9968683123588562
- ]
- ]
- ],
- [
- [
- [
- 0.9154673218727112
- ]
- ]
- ],
- [
- [
- [
- 1.0375815629959106
- ]
- ]
- ],
- [
- [
- [
- 1.0971142053604126
- ]
- ]
- ],
- [
- [
- [
- 1.1723730564117432
- ]
- ]
- ],
- [
- [
- [
- 1.1669483184814453
- ]
- ]
- ],
- [
- [
- [
- 0.8638350963592529
- ]
- ]
- ],
- [
- [
- [
- 1.0306495428085327
- ]
- ]
- ],
- [
- [
- [
- 0.7914523482322693
- ]
- ]
- ],
- [
- [
- [
- 0.9465627670288086
- ]
- ]
- ],
- [
- [
- [
- 0.9358009099960327
- ]
- ]
- ],
- [
- [
- [
- 1.1162915229797363
- ]
- ]
- ],
- [
- [
- [
- 1.282200574874878
- ]
- ]
- ],
- [
- [
- [
- 1.1835085153579712
- ]
- ]
- ],
- [
- [
- [
- 1.0965139865875244
- ]
- ]
- ],
- [
- [
- [
- 1.022279143333435
- ]
- ]
- ],
- [
- [
- [
- 0.969238817691803
- ]
- ]
- ],
- [
- [
- [
- 1.0312553644180298
- ]
- ]
- ],
- [
- [
- [
- 0.9301641583442688
- ]
- ]
- ],
- [
- [
- [
- 1.0422611236572266
- ]
- ]
- ],
- [
- [
- [
- 0.8957532644271851
- ]
- ]
- ],
- [
- [
- [
- 1.263972520828247
- ]
- ]
- ],
- [
- [
- [
- 1.0146368741989136
- ]
- ]
- ],
- [
- [
- [
- 1.162316083908081
- ]
- ]
- ],
- [
- [
- [
- 1.1180760860443115
- ]
- ]
- ],
- [
- [
- [
- 0.8681666851043701
- ]
- ]
- ],
- [
- [
- [
- 1.1394109725952148
- ]
- ]
- ],
- [
- [
- [
- 1.1682298183441162
- ]
- ]
- ],
- [
- [
- [
- 1.1062583923339844
- ]
- ]
- ],
- [
- [
- [
- 1.0097405910491943
- ]
- ]
- ],
- [
- [
- [
- 1.0653554201126099
- ]
- ]
- ],
- [
- [
- [
- 1.316703200340271
- ]
- ]
- ],
- [
- [
- [
- 1.0931909084320068
- ]
- ]
- ],
- [
- [
- [
- 1.0288337469100952
- ]
- ]
- ],
- [
- [
- [
- 1.3324306011199951
- ]
- ]
- ],
- [
- [
- [
- 1.1035162210464478
- ]
- ]
- ],
- [
- [
- [
- 0.9111860990524292
- ]
- ]
- ],
- [
- [
- [
- 1.2000322341918945
- ]
- ]
- ],
- [
- [
- [
- 0.9042758941650391
- ]
- ]
- ],
- [
- [
- [
- 1.3390562534332275
- ]
- ]
- ],
- [
- [
- [
- 0.9674554467201233
- ]
- ]
- ],
- [
- [
- [
- 0.8713670372962952
- ]
- ]
- ],
- [
- [
- [
- 1.0164679288864136
- ]
- ]
- ],
- [
- [
- [
- 1.1765505075454712
- ]
- ]
- ],
- [
- [
- [
- 0.9445337057113647
- ]
- ]
- ],
- [
- [
- [
- 1.2038474082946777
- ]
- ]
- ],
- [
- [
- [
- 0.8512529730796814
- ]
- ]
- ],
- [
- [
- [
- 1.0011693239212036
- ]
- ]
- ],
- [
- [
- [
- 0.9551778435707092
- ]
- ]
- ],
- [
- [
- [
- 1.135277509689331
- ]
- ]
- ],
- [
- [
- [
- 1.133786678314209
- ]
- ]
- ],
- [
- [
- [
- 1.1718844175338745
- ]
- ]
- ],
- [
- [
- [
- 1.0246680974960327
- ]
- ]
- ],
- [
- [
- [
- 0.870772123336792
- ]
- ]
- ],
- [
- [
- [
- 0.7498603463172913
- ]
- ]
- ],
- [
- [
- [
- 1.1122853755950928
- ]
- ]
- ],
- [
- [
- [
- 1.117050290107727
- ]
- ]
- ],
- [
- [
- [
- 0.988623857498169
- ]
- ]
- ],
- [
- [
- [
- 1.0564159154891968
- ]
- ]
- ],
- [
- [
- [
- 1.0248101949691772
- ]
- ]
- ],
- [
- [
- [
- 1.0442086458206177
- ]
- ]
- ],
- [
- [
- [
- 1.069042444229126
- ]
- ]
- ],
- [
- [
- [
- 0.9790357351303101
- ]
- ]
- ],
- [
- [
- [
- 1.0303306579589844
- ]
- ]
- ],
- [
- [
- [
- 0.9958706498146057
- ]
- ]
- ],
- [
- [
- [
- 1.0475794076919556
- ]
- ]
- ],
- [
- [
- [
- 0.9423568248748779
- ]
- ]
- ],
- [
- [
- [
- 0.873300313949585
- ]
- ]
- ],
- [
- [
- [
- 1.0221199989318848
- ]
- ]
- ],
- [
- [
- [
- 0.9581412076950073
- ]
- ]
- ],
- [
- [
- [
- 1.0221160650253296
- ]
- ]
- ],
- [
- [
- [
- 0.9930990934371948
- ]
- ]
- ],
- [
- [
- [
- 0.9908562302589417
- ]
- ]
- ],
- [
- [
- [
- 0.9575285911560059
- ]
- ]
- ],
- [
- [
- [
- 0.9035313725471497
- ]
- ]
- ],
- [
- [
- [
- 1.096128225326538
- ]
- ]
- ],
- [
- [
- [
- 0.973421037197113
- ]
- ]
- ],
- [
- [
- [
- 0.9911546111106873
- ]
- ]
- ],
- [
- [
- [
- 0.8282685279846191
- ]
- ]
- ],
- [
- [
- [
- 1.1275051832199097
- ]
- ]
- ],
- [
- [
- [
- 1.0053731203079224
- ]
- ]
- ],
- [
- [
- [
- 0.989039957523346
- ]
- ]
- ],
- [
- [
- [
- 0.9180200695991516
- ]
- ]
- ],
- [
- [
- [
- 1.2811906337738037
- ]
- ]
- ],
- [
- [
- [
- 0.9537343978881836
- ]
- ]
- ],
- [
- [
- [
- 1.1475861072540283
- ]
- ]
- ],
- [
- [
- [
- 0.8917347192764282
- ]
- ]
- ],
- [
- [
- [
- 1.1562293767929077
- ]
- ]
- ],
- [
- [
- [
- 0.9123382568359375
- ]
- ]
- ],
- [
- [
- [
- 0.9741218090057373
- ]
- ]
- ],
- [
- [
- [
- 0.8686437010765076
- ]
- ]
- ],
- [
- [
- [
- 1.4131979942321777
- ]
- ]
- ],
- [
- [
- [
- 1.1079826354980469
- ]
- ]
- ],
- [
- [
- [
- 1.6747843027114868
- ]
- ]
- ],
- [
- [
- [
- 1.2411466836929321
- ]
- ]
- ],
- [
- [
- [
- 0.8981740474700928
- ]
- ]
- ],
- [
- [
- [
- 1.1654136180877686
- ]
- ]
- ],
- [
- [
- [
- 1.1303224563598633
- ]
- ]
- ],
- [
- [
- [
- 1.1889028549194336
- ]
- ]
- ],
- [
- [
- [
- 1.498738408088684
- ]
- ]
- ],
- [
- [
- [
- 1.1379988193511963
- ]
- ]
- ],
- [
- [
- [
- 0.9130008220672607
- ]
- ]
- ],
- [
- [
- [
- 1.1763774156570435
- ]
- ]
- ],
- [
- [
- [
- 1.1547441482543945
- ]
- ]
- ],
- [
- [
- [
- 0.9631338715553284
- ]
- ]
- ],
- [
- [
- [
- 1.151780366897583
- ]
- ]
- ],
- [
- [
- [
- 0.8802265524864197
- ]
- ]
- ],
- [
- [
- [
- 1.339415192604065
- ]
- ]
- ],
- [
- [
- [
- 0.801267147064209
- ]
- ]
- ],
- [
- [
- [
- 1.0882829427719116
- ]
- ]
- ],
- [
- [
- [
- 0.8202828764915466
- ]
- ]
- ],
- [
- [
- [
- 1.0587948560714722
- ]
- ]
- ],
- [
- [
- [
- 1.019809603691101
- ]
- ]
- ],
- [
- [
- [
- 1.0160835981369019
- ]
- ]
- ],
- [
- [
- [
- 0.9160484671592712
- ]
- ]
- ],
- [
- [
- [
- 0.9097926616668701
- ]
- ]
- ],
- [
- [
- [
- 1.0216456651687622
- ]
- ]
- ],
- [
- [
- [
- 1.0127605199813843
- ]
- ]
- ],
- [
- [
- [
- 0.9762558341026306
- ]
- ]
- ],
- [
- [
- [
- 0.9927420020103455
- ]
- ]
- ],
- [
- [
- [
- 0.812792956829071
- ]
- ]
- ],
- [
- [
- [
- 0.8704925775527954
- ]
- ]
- ],
- [
- [
- [
- 1.0351486206054688
- ]
- ]
- ],
- [
- [
- [
- 0.8864662647247314
- ]
- ]
- ],
- [
- [
- [
- 1.0826646089553833
- ]
- ]
- ],
- [
- [
- [
- 1.0816775560379028
- ]
- ]
- ],
- [
- [
- [
- 1.0368469953536987
- ]
- ]
- ],
- [
- [
- [
- 1.0713915824890137
- ]
- ]
- ],
- [
- [
- [
- 1.4123166799545288
- ]
- ]
- ],
- [
- [
- [
- 1.2359747886657715
- ]
- ]
- ],
- [
- [
- [
- 0.9495987892150879
- ]
- ]
- ],
- [
- [
- [
- 0.9151511788368225
- ]
- ]
- ],
- [
- [
- [
- 1.3006463050842285
- ]
- ]
- ],
- [
- [
- [
- 1.2935155630111694
- ]
- ]
- ],
- [
- [
- [
- 0.9979597330093384
- ]
- ]
- ],
- [
- [
- [
- 1.0068566799163818
- ]
- ]
- ],
- [
- [
- [
- 0.8601046204566956
- ]
- ]
- ],
- [
- [
- [
- 1.0795971155166626
- ]
- ]
- ],
- [
- [
- [
- 1.0950769186019897
- ]
- ]
- ],
- [
- [
- [
- 1.1820591688156128
- ]
- ]
- ],
- [
- [
- [
- 1.0445736646652222
- ]
- ]
- ],
- [
- [
- [
- 1.0767415761947632
- ]
- ]
- ],
- [
- [
- [
- 1.0770986080169678
- ]
- ]
- ],
- [
- [
- [
- 1.0848673582077026
- ]
- ]
- ],
- [
- [
- [
- 1.4953398704528809
- ]
- ]
- ],
- [
- [
- [
- 0.9231826663017273
- ]
- ]
- ],
- [
- [
- [
- 1.0823657512664795
- ]
- ]
- ],
- [
- [
- [
- 1.267652153968811
- ]
- ]
- ],
- [
- [
- [
- 0.9659174084663391
- ]
- ]
- ],
- [
- [
- [
- 0.9186413288116455
- ]
- ]
- ],
- [
- [
- [
- 0.9566716551780701
- ]
- ]
- ],
- [
- [
- [
- 1.0898019075393677
- ]
- ]
- ],
- [
- [
- [
- 0.9646103978157043
- ]
- ]
- ],
- [
- [
- [
- 1.0629745721817017
- ]
- ]
- ],
- [
- [
- [
- 0.9967606067657471
- ]
- ]
- ],
- [
- [
- [
- 0.9250516891479492
- ]
- ]
- ],
- [
- [
- [
- 0.9671849012374878
- ]
- ]
- ],
- [
- [
- [
- 1.146730899810791
- ]
- ]
- ],
- [
- [
- [
- 0.9242576956748962
- ]
- ]
- ],
- [
- [
- [
- 1.0041362047195435
- ]
- ]
- ],
- [
- [
- [
- 1.0695887804031372
- ]
- ]
- ],
- [
- [
- [
- 0.9826728701591492
- ]
- ]
- ],
- [
- [
- [
- 1.1424812078475952
- ]
- ]
- ],
- [
- [
- [
- 0.8917030692100525
- ]
- ]
- ],
- [
- [
- [
- 0.9630059003829956
- ]
- ]
- ],
- [
- [
- [
- 0.9132561683654785
- ]
- ]
- ],
- [
- [
- [
- 1.1274898052215576
- ]
- ]
- ],
- [
- [
- [
- 1.0315172672271729
- ]
- ]
- ],
- [
- [
- [
- 1.1761420965194702
- ]
- ]
- ],
- [
- [
- [
- 1.0530563592910767
- ]
- ]
- ],
- [
- [
- [
- 1.0070565938949585
- ]
- ]
- ],
- [
- [
- [
- 0.9258015155792236
- ]
- ]
- ],
- [
- [
- [
- 1.19841468334198
- ]
- ]
- ],
- [
- [
- [
- 1.0243979692459106
- ]
- ]
- ],
- [
- [
- [
- 0.8900928497314453
- ]
- ]
- ],
- [
- [
- [
- 1.0273610353469849
- ]
- ]
- ],
- [
- [
- [
- 0.8598757982254028
- ]
- ]
- ],
- [
- [
- [
- 0.946030855178833
- ]
- ]
- ],
- [
- [
- [
- 0.9448181390762329
- ]
- ]
- ],
- [
- [
- [
- 1.0143765211105347
- ]
- ]
- ],
- [
- [
- [
- 0.9872357249259949
- ]
- ]
- ],
- [
- [
- [
- 1.4276585578918457
- ]
- ]
- ],
- [
- [
- [
- 0.92050701379776
- ]
- ]
- ],
- [
- [
- [
- 1.073231816291809
- ]
- ]
- ],
- [
- [
- [
- 1.0232280492782593
- ]
- ]
- ],
- [
- [
- [
- 0.9219456911087036
- ]
- ]
- ],
- [
- [
- [
- 1.0473815202713013
- ]
- ]
- ],
- [
- [
- [
- 0.9583578109741211
- ]
- ]
- ],
- [
- [
- [
- 1.158691644668579
- ]
- ]
- ],
- [
- [
- [
- 1.190244436264038
- ]
- ]
- ],
- [
- [
- [
- 0.9650874733924866
- ]
- ]
- ],
- [
- [
- [
- 0.9343444108963013
- ]
- ]
- ],
- [
- [
- [
- 1.034268856048584
- ]
- ]
- ],
- [
- [
- [
- 1.1957803964614868
- ]
- ]
- ],
- [
- [
- [
- 0.9994576573371887
- ]
- ]
- ],
- [
- [
- [
- 1.01644766330719
- ]
- ]
- ],
- [
- [
- [
- 1.006485939025879
- ]
- ]
- ],
- [
- [
- [
- 1.050088882446289
- ]
- ]
- ],
- [
- [
- [
- 1.2327247858047485
- ]
- ]
- ],
- [
- [
- [
- 0.9164046049118042
- ]
- ]
- ],
- [
- [
- [
- 1.0635392665863037
- ]
- ]
- ],
- [
- [
- [
- 1.198624849319458
- ]
- ]
- ],
- [
- [
- [
- 1.033980369567871
- ]
- ]
- ],
- [
- [
- [
- 0.9468284845352173
- ]
- ]
- ],
- [
- [
- [
- 1.1643176078796387
- ]
- ]
- ],
- [
- [
- [
- 1.3685736656188965
- ]
- ]
- ],
- [
- [
- [
- 0.9036381840705872
- ]
- ]
- ],
- [
- [
- [
- 1.1483911275863647
- ]
- ]
- ],
- [
- [
- [
- 1.087874174118042
- ]
- ]
- ],
- [
- [
- [
- 1.0929338932037354
- ]
- ]
- ],
- [
- [
- [
- 0.9920712113380432
- ]
- ]
- ],
- [
- [
- [
- 1.160004734992981
- ]
- ]
- ],
- [
- [
- [
- 1.1754090785980225
- ]
- ]
- ],
- [
- [
- [
- 0.9312402606010437
- ]
- ]
- ],
- [
- [
- [
- 1.0538824796676636
- ]
- ]
- ],
- [
- [
- [
- 1.195144534111023
- ]
- ]
- ],
- [
- [
- [
- 0.9637614488601685
- ]
- ]
- ],
- [
- [
- [
- 1.122320294380188
- ]
- ]
- ],
- [
- [
- [
- 1.0226802825927734
- ]
- ]
- ],
- [
- [
- [
- 1.2232252359390259
- ]
- ]
- ],
- [
- [
- [
- 1.0013254880905151
- ]
- ]
- ],
- [
- [
- [
- 1.0539494752883911
- ]
- ]
- ],
- [
- [
- [
- 1.0873000621795654
- ]
- ]
- ],
- [
- [
- [
- 0.9148683547973633
- ]
- ]
- ],
- [
- [
- [
- 0.9341676235198975
- ]
- ]
- ],
- [
- [
- [
- 1.0425392389297485
- ]
- ]
- ],
- [
- [
- [
- 1.0417110919952393
- ]
- ]
- ],
- [
- [
- [
- 1.2196671962738037
- ]
- ]
- ],
- [
- [
- [
- 1.4334861040115356
- ]
- ]
- ],
- [
- [
- [
- 1.1152645349502563
- ]
- ]
- ],
- [
- [
- [
- 1.2558820247650146
- ]
- ]
- ],
- [
- [
- [
- 0.8673494458198547
- ]
- ]
- ],
- [
- [
- [
- 1.6053882837295532
- ]
- ]
- ],
- [
- [
- [
- 1.2437046766281128
- ]
- ]
- ],
- [
- [
- [
- 1.025049090385437
- ]
- ]
- ],
- [
- [
- [
- 1.1366007328033447
- ]
- ]
- ],
- [
- [
- [
- 1.0822099447250366
- ]
- ]
- ],
- [
- [
- [
- 1.1041475534439087
- ]
- ]
- ],
- [
- [
- [
- 0.9215682148933411
- ]
- ]
- ],
- [
- [
- [
- 1.2372361421585083
- ]
- ]
- ],
- [
- [
- [
- 1.0263289213180542
- ]
- ]
- ],
- [
- [
- [
- 1.331955075263977
- ]
- ]
- ],
- [
- [
- [
- 0.9262051582336426
- ]
- ]
- ],
- [
- [
- [
- 0.8875250816345215
- ]
- ]
- ],
- [
- [
- [
- 1.0618343353271484
- ]
- ]
- ],
- [
- [
- [
- 1.0563658475875854
- ]
- ]
- ],
- [
- [
- [
- 1.2385578155517578
- ]
- ]
- ],
- [
- [
- [
- 0.9614799618721008
- ]
- ]
- ],
- [
- [
- [
- 0.968964695930481
- ]
- ]
- ],
- [
- [
- [
- 0.9935006499290466
- ]
- ]
- ],
- [
- [
- [
- 1.1900731325149536
- ]
- ]
- ],
- [
- [
- [
- 1.0714223384857178
- ]
- ]
- ],
- [
- [
- [
- 1.0552107095718384
- ]
- ]
- ],
- [
- [
- [
- 1.08120596408844
- ]
- ]
- ],
- [
- [
- [
- 0.9579365253448486
- ]
- ]
- ],
- [
- [
- [
- 1.1733412742614746
- ]
- ]
- ],
- [
- [
- [
- 1.4753390550613403
- ]
- ]
- ],
- [
- [
- [
- 1.0601569414138794
- ]
- ]
- ],
- [
- [
- [
- 1.0317269563674927
- ]
- ]
- ],
- [
- [
- [
- 0.98548424243927
- ]
- ]
- ],
- [
- [
- [
- 1.1392360925674438
- ]
- ]
- ],
- [
- [
- [
- 1.154281497001648
- ]
- ]
- ],
- [
- [
- [
- 1.0393935441970825
- ]
- ]
- ],
- [
- [
- [
- 0.9594317674636841
- ]
- ]
- ],
- [
- [
- [
- 0.8906742334365845
- ]
- ]
- ],
- [
- [
- [
- 1.0964202880859375
- ]
- ]
- ],
- [
- [
- [
- 1.0778019428253174
- ]
- ]
- ],
- [
- [
- [
- 0.9638389945030212
- ]
- ]
- ],
- [
- [
- [
- 0.9502721428871155
- ]
- ]
- ],
- [
- [
- [
- 1.2740446329116821
- ]
- ]
- ],
- [
- [
- [
- 1.026613473892212
- ]
- ]
- ],
- [
- [
- [
- 1.0728224515914917
- ]
- ]
- ],
- [
- [
- [
- 1.136831283569336
- ]
- ]
- ],
- [
- [
- [
- 1.0910557508468628
- ]
- ]
- ],
- [
- [
- [
- 0.8803440928459167
- ]
- ]
- ],
- [
- [
- [
- 1.0493167638778687
- ]
- ]
- ],
- [
- [
- [
- 0.8760088086128235
- ]
- ]
- ],
- [
- [
- [
- 0.8282005190849304
- ]
- ]
- ],
- [
- [
- [
- 0.9414563179016113
- ]
- ]
- ],
- [
- [
- [
- 0.9254025816917419
- ]
- ]
- ],
- [
- [
- [
- 0.9233563542366028
- ]
- ]
- ],
- [
- [
- [
- 1.1296831369400024
- ]
- ]
- ],
- [
- [
- [
- 1.044033169746399
- ]
- ]
- ],
- [
- [
- [
- 1.0141501426696777
- ]
- ]
- ],
- [
- [
- [
- 0.9893689751625061
- ]
- ]
- ],
- [
- [
- [
- 1.3385313749313354
- ]
- ]
- ],
- [
- [
- [
- 1.0532974004745483
- ]
- ]
- ],
- [
- [
- [
- 0.9132193326950073
- ]
- ]
- ],
- [
- [
- [
- 0.8977677822113037
- ]
- ]
- ],
- [
- [
- [
- 0.9809406399726868
- ]
- ]
- ],
- [
- [
- [
- 0.9672472476959229
- ]
- ]
- ],
- [
- [
- [
- 1.2133967876434326
- ]
- ]
- ],
- [
- [
- [
- 0.8907191753387451
- ]
- ]
- ],
- [
- [
- [
- 1.1266659498214722
- ]
- ]
- ],
- [
- [
- [
- 0.9290457367897034
- ]
- ]
- ],
- [
- [
- [
- 0.9387751817703247
- ]
- ]
- ],
- [
- [
- [
- 1.039330244064331
- ]
- ]
- ],
- [
- [
- [
- 1.1366225481033325
- ]
- ]
- ],
- [
- [
- [
- 1.3512424230575562
- ]
- ]
- ],
- [
- [
- [
- 1.0292646884918213
- ]
- ]
- ],
- [
- [
- [
- 0.969363272190094
- ]
- ]
- ],
- [
- [
- [
- 1.0838828086853027
- ]
- ]
- ],
- [
- [
- [
- 0.8946046233177185
- ]
- ]
- ],
- [
- [
- [
- 0.9409071803092957
- ]
- ]
- ],
- [
- [
- [
- 1.0113590955734253
- ]
- ]
- ],
- [
- [
- [
- 1.14974045753479
- ]
- ]
- ],
- [
- [
- [
- 1.0293505191802979
- ]
- ]
- ],
- [
- [
- [
- 1.0862846374511719
- ]
- ]
- ],
- [
- [
- [
- 0.9694017171859741
- ]
- ]
- ],
- [
- [
- [
- 0.9677215814590454
- ]
- ]
- ],
- [
- [
- [
- 0.939729630947113
- ]
- ]
- ],
- [
- [
- [
- 1.0437185764312744
- ]
- ]
- ],
- [
- [
- [
- 1.006166934967041
- ]
- ]
- ],
- [
- [
- [
- 0.9743891358375549
- ]
- ]
- ],
- [
- [
- [
- 1.1442912817001343
- ]
- ]
- ],
- [
- [
- [
- 1.1824060678482056
- ]
- ]
- ],
- [
- [
- [
- 1.1274503469467163
- ]
- ]
- ],
- [
- [
- [
- 0.8865083456039429
- ]
- ]
- ],
- [
- [
- [
- 1.0748287439346313
- ]
- ]
- ],
- [
- [
- [
- 0.8866617679595947
- ]
- ]
- ],
- [
- [
- [
- 1.1383073329925537
- ]
- ]
- ],
- [
- [
- [
- 1.2039122581481934
- ]
- ]
- ],
- [
- [
- [
- 1.0320487022399902
- ]
- ]
- ],
- [
- [
- [
- 1.014757752418518
- ]
- ]
- ],
- [
- [
- [
- 0.9832412004470825
- ]
- ]
- ],
- [
- [
- [
- 1.034433364868164
- ]
- ]
- ],
- [
- [
- [
- 1.0604592561721802
- ]
- ]
- ],
- [
- [
- [
- 1.0199542045593262
- ]
- ]
- ],
- [
- [
- [
- 0.9525006413459778
- ]
- ]
- ],
- [
- [
- [
- 1.0461488962173462
- ]
- ]
- ],
- [
- [
- [
- 1.0134856700897217
- ]
- ]
- ],
- [
- [
- [
- 1.0897252559661865
- ]
- ]
- ],
- [
- [
- [
- 1.1297426223754883
- ]
- ]
- ],
- [
- [
- [
- 1.0999870300292969
- ]
- ]
- ],
- [
- [
- [
- 1.0331299304962158
- ]
- ]
- ],
- [
- [
- [
- 0.9930763840675354
- ]
- ]
- ],
- [
- [
- [
- 0.9544077515602112
- ]
- ]
- ],
- [
- [
- [
- 0.970114529132843
- ]
- ]
- ],
- [
- [
- [
- 1.2985087633132935
- ]
- ]
- ],
- [
- [
- [
- 1.0040926933288574
- ]
- ]
- ],
- [
- [
- [
- 1.1276699304580688
- ]
- ]
- ],
- [
- [
- [
- 1.0992940664291382
- ]
- ]
- ],
- [
- [
- [
- 1.0134931802749634
- ]
- ]
- ],
- [
- [
- [
- 1.0181903839111328
- ]
- ]
- ],
- [
- [
- [
- 1.2153596878051758
- ]
- ]
- ],
- [
- [
- [
- 1.0986175537109375
- ]
- ]
- ],
- [
- [
- [
- 0.8209522366523743
- ]
- ]
- ],
- [
- [
- [
- 0.8855798244476318
- ]
- ]
- ],
- [
- [
- [
- 0.9683364629745483
- ]
- ]
- ],
- [
- [
- [
- 0.9707607626914978
- ]
- ]
- ],
- [
- [
- [
- 0.865387499332428
- ]
- ]
- ],
- [
- [
- [
- 0.9642270803451538
- ]
- ]
- ],
- [
- [
- [
- 0.8924148082733154
- ]
- ]
- ],
- [
- [
- [
- 0.9769684672355652
- ]
- ]
- ],
- [
- [
- [
- 1.1303585767745972
- ]
- ]
- ],
- [
- [
- [
- 0.973569393157959
- ]
- ]
- ],
- [
- [
- [
- 0.9845264554023743
- ]
- ]
- ],
- [
- [
- [
- 0.8775923848152161
- ]
- ]
- ],
- [
- [
- [
- 1.0446174144744873
- ]
- ]
- ],
- [
- [
- [
- 1.06755793094635
- ]
- ]
- ],
- [
- [
- [
- 0.9677262902259827
- ]
- ]
- ],
- [
- [
- [
- 0.8944038152694702
- ]
- ]
- ],
- [
- [
- [
- 0.9117789268493652
- ]
- ]
- ],
- [
- [
- [
- 1.3298097848892212
- ]
- ]
- ],
- [
- [
- [
- 0.9277745485305786
- ]
- ]
- ],
- [
- [
- [
- 1.1351077556610107
- ]
- ]
- ],
- [
- [
- [
- 0.9505661129951477
- ]
- ]
- ],
- [
- [
- [
- 0.9157877564430237
- ]
- ]
- ],
- [
- [
- [
- 0.8652980327606201
- ]
- ]
- ],
- [
- [
- [
- 1.4441709518432617
- ]
- ]
- ],
- [
- [
- [
- 0.9310252070426941
- ]
- ]
- ],
- [
- [
- [
- 1.101375699043274
- ]
- ]
- ],
- [
- [
- [
- 0.8490892648696899
- ]
- ]
- ],
- [
- [
- [
- 1.0252288579940796
- ]
- ]
- ],
- [
- [
- [
- 0.9815975427627563
- ]
- ]
- ],
- [
- [
- [
- 0.9024218916893005
- ]
- ]
- ],
- [
- [
- [
- 0.9733182191848755
- ]
- ]
- ],
- [
- [
- [
- 1.3083481788635254
- ]
- ]
- ],
- [
- [
- [
- 0.9134640693664551
- ]
- ]
- ],
- [
- [
- [
- 1.0094417333602905
- ]
- ]
- ],
- [
- [
- [
- 1.0689857006072998
- ]
- ]
- ],
- [
- [
- [
- 1.4842339754104614
- ]
- ]
- ],
- [
- [
- [
- 0.8851192593574524
- ]
- ]
- ],
- [
- [
- [
- 1.0576046705245972
- ]
- ]
- ],
- [
- [
- [
- 1.072542667388916
- ]
- ]
- ],
- [
- [
- [
- 0.9997857809066772
- ]
- ]
- ],
- [
- [
- [
- 0.9685620665550232
- ]
- ]
- ],
- [
- [
- [
- 0.8968682289123535
- ]
- ]
- ],
- [
- [
- [
- 0.9818838834762573
- ]
- ]
- ],
- [
- [
- [
- 0.9587700963020325
- ]
- ]
- ],
- [
- [
- [
- 0.9785784482955933
- ]
- ]
- ],
- [
- [
- [
- 1.115765929222107
- ]
- ]
- ],
- [
- [
- [
- 1.2617428302764893
- ]
- ]
- ],
- [
- [
- [
- 0.9551870822906494
- ]
- ]
- ],
- [
- [
- [
- 1.0487961769104004
- ]
- ]
- ],
- [
- [
- [
- 1.2335795164108276
- ]
- ]
- ],
- [
- [
- [
- 1.0376629829406738
- ]
- ]
- ],
- [
- [
- [
- 1.2391270399093628
- ]
- ]
- ],
- [
- [
- [
- 1.0144726037979126
- ]
- ]
- ],
- [
- [
- [
- 1.068605899810791
- ]
- ]
- ],
- [
- [
- [
- 1.1246964931488037
- ]
- ]
- ],
- [
- [
- [
- 0.8251024484634399
- ]
- ]
- ],
- [
- [
- [
- 1.131123661994934
- ]
- ]
- ],
- [
- [
- [
- 0.9032446146011353
- ]
- ]
- ],
- [
- [
- [
- 0.8750292658805847
- ]
- ]
- ],
- [
- [
- [
- 1.1389330625534058
- ]
- ]
- ],
- [
- [
- [
- 1.0585908889770508
- ]
- ]
- ],
- [
- [
- [
- 1.111668348312378
- ]
- ]
- ],
- [
- [
- [
- 0.8796474933624268
- ]
- ]
- ],
- [
- [
- [
- 1.367453932762146
- ]
- ]
- ],
- [
- [
- [
- 1.0127404928207397
- ]
- ]
- ],
- [
- [
- [
- 0.9792473912239075
- ]
- ]
- ]
- ]
- },
- "/features/features.17/conv/conv.2/Conv/fq_output_0": {
- "input_low": -0.4700300693511963,
- "input_high": 0.5371772050857544,
- "output_low": -0.4700300693511963,
- "output_high": 0.5371772050857544
- },
- "/features/features.17/conv/conv.2/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.3669280707836151
- ]
- ]
- ],
- [
- [
- [
- -0.48197588324546814
- ]
- ]
- ],
- [
- [
- [
- -0.4875717759132385
- ]
- ]
- ],
- [
- [
- [
- -0.4636417031288147
- ]
- ]
- ],
- [
- [
- [
- -0.4074009358882904
- ]
- ]
- ],
- [
- [
- [
- -0.34943562746047974
- ]
- ]
- ],
- [
- [
- [
- -0.43246757984161377
- ]
- ]
- ],
- [
- [
- [
- -0.43685540556907654
- ]
- ]
- ],
- [
- [
- [
- -0.3781411349773407
- ]
- ]
- ],
- [
- [
- [
- -0.39453253149986267
- ]
- ]
- ],
- [
- [
- [
- -0.42098182439804077
- ]
- ]
- ],
- [
- [
- [
- -0.43917253613471985
- ]
- ]
- ],
- [
- [
- [
- -0.37554773688316345
- ]
- ]
- ],
- [
- [
- [
- -0.5295386910438538
- ]
- ]
- ],
- [
- [
- [
- -0.415728896856308
- ]
- ]
- ],
- [
- [
- [
- -0.4880652129650116
- ]
- ]
- ],
- [
- [
- [
- -0.34667330980300903
- ]
- ]
- ],
- [
- [
- [
- -0.4313127100467682
- ]
- ]
- ],
- [
- [
- [
- -0.4684765636920929
- ]
- ]
- ],
- [
- [
- [
- -0.41511473059654236
- ]
- ]
- ],
- [
- [
- [
- -0.4927263855934143
- ]
- ]
- ],
- [
- [
- [
- -0.4416195750236511
- ]
- ]
- ],
- [
- [
- [
- -0.6446481943130493
- ]
- ]
- ],
- [
- [
- [
- -0.43011969327926636
- ]
- ]
- ],
- [
- [
- [
- -0.41570937633514404
- ]
- ]
- ],
- [
- [
- [
- -0.4739955961704254
- ]
- ]
- ],
- [
- [
- [
- -0.44397082924842834
- ]
- ]
- ],
- [
- [
- [
- -0.5006061792373657
- ]
- ]
- ],
- [
- [
- [
- -0.39458516240119934
- ]
- ]
- ],
- [
- [
- [
- -0.505667507648468
- ]
- ]
- ],
- [
- [
- [
- -0.4026598632335663
- ]
- ]
- ],
- [
- [
- [
- -0.49430206418037415
- ]
- ]
- ],
- [
- [
- [
- -0.5956026315689087
- ]
- ]
- ],
- [
- [
- [
- -0.4117048382759094
- ]
- ]
- ],
- [
- [
- [
- -0.3885584771633148
- ]
- ]
- ],
- [
- [
- [
- -0.33285048604011536
- ]
- ]
- ],
- [
- [
- [
- -0.45313894748687744
- ]
- ]
- ],
- [
- [
- [
- -0.4368850290775299
- ]
- ]
- ],
- [
- [
- [
- -0.42418208718299866
- ]
- ]
- ],
- [
- [
- [
- -0.4493564963340759
- ]
- ]
- ],
- [
- [
- [
- -0.4178992509841919
- ]
- ]
- ],
- [
- [
- [
- -0.3977452218532562
- ]
- ]
- ],
- [
- [
- [
- -0.43268993496894836
- ]
- ]
- ],
- [
- [
- [
- -0.5291568636894226
- ]
- ]
- ],
- [
- [
- [
- -0.4329839050769806
- ]
- ]
- ],
- [
- [
- [
- -0.41114088892936707
- ]
- ]
- ],
- [
- [
- [
- -0.48279157280921936
- ]
- ]
- ],
- [
- [
- [
- -0.4624491035938263
- ]
- ]
- ],
- [
- [
- [
- -0.45482659339904785
- ]
- ]
- ],
- [
- [
- [
- -0.38587433099746704
- ]
- ]
- ],
- [
- [
- [
- -0.4292764365673065
- ]
- ]
- ],
- [
- [
- [
- -0.4031466245651245
- ]
- ]
- ],
- [
- [
- [
- -0.3647627532482147
- ]
- ]
- ],
- [
- [
- [
- -0.3636244833469391
- ]
- ]
- ],
- [
- [
- [
- -0.40592634677886963
- ]
- ]
- ],
- [
- [
- [
- -0.4565138816833496
- ]
- ]
- ],
- [
- [
- [
- -0.4335360825061798
- ]
- ]
- ],
- [
- [
- [
- -0.4309016466140747
- ]
- ]
- ],
- [
- [
- [
- -0.45924505591392517
- ]
- ]
- ],
- [
- [
- [
- -0.38393425941467285
- ]
- ]
- ],
- [
- [
- [
- -0.4255022406578064
- ]
- ]
- ],
- [
- [
- [
- -0.4652228057384491
- ]
- ]
- ],
- [
- [
- [
- -0.39552080631256104
- ]
- ]
- ],
- [
- [
- [
- -0.39790013432502747
- ]
- ]
- ],
- [
- [
- [
- -0.43534165620803833
- ]
- ]
- ],
- [
- [
- [
- -0.46714118123054504
- ]
- ]
- ],
- [
- [
- [
- -0.4537421762943268
- ]
- ]
- ],
- [
- [
- [
- -0.38595208525657654
- ]
- ]
- ],
- [
- [
- [
- -0.4003704786300659
- ]
- ]
- ],
- [
- [
- [
- -0.42917925119400024
- ]
- ]
- ],
- [
- [
- [
- -0.35734471678733826
- ]
- ]
- ],
- [
- [
- [
- -0.40545859932899475
- ]
- ]
- ],
- [
- [
- [
- -0.23736342787742615
- ]
- ]
- ],
- [
- [
- [
- -0.4998655617237091
- ]
- ]
- ],
- [
- [
- [
- -0.4094644784927368
- ]
- ]
- ],
- [
- [
- [
- -0.38687384128570557
- ]
- ]
- ],
- [
- [
- [
- -0.4441513121128082
- ]
- ]
- ],
- [
- [
- [
- -0.3796612322330475
- ]
- ]
- ],
- [
- [
- [
- -0.3898002505302429
- ]
- ]
- ],
- [
- [
- [
- -0.5324399471282959
- ]
- ]
- ],
- [
- [
- [
- -0.5027695298194885
- ]
- ]
- ],
- [
- [
- [
- -0.3771277964115143
- ]
- ]
- ],
- [
- [
- [
- -0.39476245641708374
- ]
- ]
- ],
- [
- [
- [
- -0.4004303216934204
- ]
- ]
- ],
- [
- [
- [
- -0.4119465947151184
- ]
- ]
- ],
- [
- [
- [
- -0.512769341468811
- ]
- ]
- ],
- [
- [
- [
- -0.3981296718120575
- ]
- ]
- ],
- [
- [
- [
- -0.4803471565246582
- ]
- ]
- ],
- [
- [
- [
- -0.41456788778305054
- ]
- ]
- ],
- [
- [
- [
- -0.41559621691703796
- ]
- ]
- ],
- [
- [
- [
- -0.3967491388320923
- ]
- ]
- ],
- [
- [
- [
- -0.4770381450653076
- ]
- ]
- ],
- [
- [
- [
- -0.4159802496433258
- ]
- ]
- ],
- [
- [
- [
- -0.4424516260623932
- ]
- ]
- ],
- [
- [
- [
- -0.3564305007457733
- ]
- ]
- ],
- [
- [
- [
- -0.442727655172348
- ]
- ]
- ],
- [
- [
- [
- -0.4409184455871582
- ]
- ]
- ],
- [
- [
- [
- -0.4878194034099579
- ]
- ]
- ],
- [
- [
- [
- -0.45493990182876587
- ]
- ]
- ],
- [
- [
- [
- -0.4844464361667633
- ]
- ]
- ],
- [
- [
- [
- -0.43738147616386414
- ]
- ]
- ],
- [
- [
- [
- -0.45650455355644226
- ]
- ]
- ],
- [
- [
- [
- -0.4190325140953064
- ]
- ]
- ],
- [
- [
- [
- -0.4345042407512665
- ]
- ]
- ],
- [
- [
- [
- -0.3807617723941803
- ]
- ]
- ],
- [
- [
- [
- -0.41305777430534363
- ]
- ]
- ],
- [
- [
- [
- -0.4074344038963318
- ]
- ]
- ],
- [
- [
- [
- -0.4557432234287262
- ]
- ]
- ],
- [
- [
- [
- -0.38027840852737427
- ]
- ]
- ],
- [
- [
- [
- -0.4246598482131958
- ]
- ]
- ],
- [
- [
- [
- -0.41498273611068726
- ]
- ]
- ],
- [
- [
- [
- -0.4894808828830719
- ]
- ]
- ],
- [
- [
- [
- -0.43412545323371887
- ]
- ]
- ],
- [
- [
- [
- -0.3742615580558777
- ]
- ]
- ],
- [
- [
- [
- -0.4358697831630707
- ]
- ]
- ],
- [
- [
- [
- -0.4068877398967743
- ]
- ]
- ],
- [
- [
- [
- -0.3833162188529968
- ]
- ]
- ],
- [
- [
- [
- -0.4641337990760803
- ]
- ]
- ],
- [
- [
- [
- -0.3622902035713196
- ]
- ]
- ],
- [
- [
- [
- -0.3884466290473938
- ]
- ]
- ],
- [
- [
- [
- -0.4458358585834503
- ]
- ]
- ],
- [
- [
- [
- -0.4462951719760895
- ]
- ]
- ],
- [
- [
- [
- -0.3576619625091553
- ]
- ]
- ],
- [
- [
- [
- -0.49450749158859253
- ]
- ]
- ],
- [
- [
- [
- -0.4699929356575012
- ]
- ]
- ],
- [
- [
- [
- -0.4173103868961334
- ]
- ]
- ],
- [
- [
- [
- -0.4329853057861328
- ]
- ]
- ],
- [
- [
- [
- -0.41463911533355713
- ]
- ]
- ],
- [
- [
- [
- -0.4018567204475403
- ]
- ]
- ],
- [
- [
- [
- -0.39912354946136475
- ]
- ]
- ],
- [
- [
- [
- -0.4700945317745209
- ]
- ]
- ],
- [
- [
- [
- -0.4231607913970947
- ]
- ]
- ],
- [
- [
- [
- -0.3932703733444214
- ]
- ]
- ],
- [
- [
- [
- -0.37095171213150024
- ]
- ]
- ],
- [
- [
- [
- -0.36458820104599
- ]
- ]
- ],
- [
- [
- [
- -0.44114094972610474
- ]
- ]
- ],
- [
- [
- [
- -0.39216986298561096
- ]
- ]
- ],
- [
- [
- [
- -0.44056475162506104
- ]
- ]
- ],
- [
- [
- [
- -0.4058333933353424
- ]
- ]
- ],
- [
- [
- [
- -0.453686386346817
- ]
- ]
- ],
- [
- [
- [
- -0.4495880603790283
- ]
- ]
- ],
- [
- [
- [
- -0.37086814641952515
- ]
- ]
- ],
- [
- [
- [
- -0.4991926848888397
- ]
- ]
- ],
- [
- [
- [
- -0.4056720435619354
- ]
- ]
- ],
- [
- [
- [
- -0.45554405450820923
- ]
- ]
- ],
- [
- [
- [
- -0.46201997995376587
- ]
- ]
- ],
- [
- [
- [
- -0.47221773862838745
- ]
- ]
- ],
- [
- [
- [
- -0.41472485661506653
- ]
- ]
- ],
- [
- [
- [
- -0.3617061972618103
- ]
- ]
- ],
- [
- [
- [
- -0.4020228087902069
- ]
- ]
- ],
- [
- [
- [
- -0.39913129806518555
- ]
- ]
- ],
- [
- [
- [
- -0.46295011043548584
- ]
- ]
- ],
- [
- [
- [
- -0.42005324363708496
- ]
- ]
- ],
- [
- [
- [
- -0.3199377655982971
- ]
- ]
- ],
- [
- [
- [
- -0.46390682458877563
- ]
- ]
- ],
- [
- [
- [
- -0.5599457621574402
- ]
- ]
- ],
- [
- [
- [
- -0.5660314559936523
- ]
- ]
- ],
- [
- [
- [
- -0.4125835597515106
- ]
- ]
- ],
- [
- [
- [
- -0.4212295114994049
- ]
- ]
- ],
- [
- [
- [
- -0.46076512336730957
- ]
- ]
- ],
- [
- [
- [
- -0.4844721555709839
- ]
- ]
- ],
- [
- [
- [
- -0.5525853037834167
- ]
- ]
- ],
- [
- [
- [
- -0.5060823559761047
- ]
- ]
- ],
- [
- [
- [
- -0.4130593538284302
- ]
- ]
- ],
- [
- [
- [
- -0.4077531397342682
- ]
- ]
- ],
- [
- [
- [
- -0.4522303342819214
- ]
- ]
- ],
- [
- [
- [
- -0.4247629940509796
- ]
- ]
- ],
- [
- [
- [
- -0.44025975465774536
- ]
- ]
- ],
- [
- [
- [
- -0.37102416157722473
- ]
- ]
- ],
- [
- [
- [
- -0.4940045475959778
- ]
- ]
- ],
- [
- [
- [
- -0.42445868253707886
- ]
- ]
- ],
- [
- [
- [
- -0.48294925689697266
- ]
- ]
- ],
- [
- [
- [
- -0.5058087110519409
- ]
- ]
- ],
- [
- [
- [
- -0.42034077644348145
- ]
- ]
- ],
- [
- [
- [
- -0.475203275680542
- ]
- ]
- ],
- [
- [
- [
- -0.40697386860847473
- ]
- ]
- ],
- [
- [
- [
- -0.43295907974243164
- ]
- ]
- ],
- [
- [
- [
- -0.3995829224586487
- ]
- ]
- ],
- [
- [
- [
- -0.4927743375301361
- ]
- ]
- ],
- [
- [
- [
- -0.47063392400741577
- ]
- ]
- ],
- [
- [
- [
- -0.41792750358581543
- ]
- ]
- ],
- [
- [
- [
- -0.40568217635154724
- ]
- ]
- ],
- [
- [
- [
- -0.41727644205093384
- ]
- ]
- ],
- [
- [
- [
- -0.36564621329307556
- ]
- ]
- ],
- [
- [
- [
- -0.5093732476234436
- ]
- ]
- ],
- [
- [
- [
- -0.4047839939594269
- ]
- ]
- ],
- [
- [
- [
- -0.38601329922676086
- ]
- ]
- ],
- [
- [
- [
- -0.3641308844089508
- ]
- ]
- ],
- [
- [
- [
- -0.5062236785888672
- ]
- ]
- ],
- [
- [
- [
- -0.3937338590621948
- ]
- ]
- ],
- [
- [
- [
- -0.43595895171165466
- ]
- ]
- ],
- [
- [
- [
- -0.40251368284225464
- ]
- ]
- ],
- [
- [
- [
- -0.511696457862854
- ]
- ]
- ],
- [
- [
- [
- -0.3178873360157013
- ]
- ]
- ],
- [
- [
- [
- -0.4182426333427429
- ]
- ]
- ],
- [
- [
- [
- -0.43590256571769714
- ]
- ]
- ],
- [
- [
- [
- -0.28490516543388367
- ]
- ]
- ],
- [
- [
- [
- -0.4201735556125641
- ]
- ]
- ],
- [
- [
- [
- -0.39371317625045776
- ]
- ]
- ],
- [
- [
- [
- -0.49471309781074524
- ]
- ]
- ],
- [
- [
- [
- -0.4173937141895294
- ]
- ]
- ],
- [
- [
- [
- -0.411887526512146
- ]
- ]
- ],
- [
- [
- [
- -0.3947812020778656
- ]
- ]
- ],
- [
- [
- [
- -0.4022243320941925
- ]
- ]
- ],
- [
- [
- [
- -0.43367618322372437
- ]
- ]
- ],
- [
- [
- [
- -0.39464953541755676
- ]
- ]
- ],
- [
- [
- [
- -0.38803255558013916
- ]
- ]
- ],
- [
- [
- [
- -0.38138261437416077
- ]
- ]
- ],
- [
- [
- [
- -0.5240641236305237
- ]
- ]
- ],
- [
- [
- [
- -0.4004144072532654
- ]
- ]
- ],
- [
- [
- [
- -0.4249313175678253
- ]
- ]
- ],
- [
- [
- [
- -0.39886027574539185
- ]
- ]
- ],
- [
- [
- [
- -0.43498677015304565
- ]
- ]
- ],
- [
- [
- [
- -0.4087512493133545
- ]
- ]
- ],
- [
- [
- [
- -0.3852401673793793
- ]
- ]
- ],
- [
- [
- [
- -0.4551020562648773
- ]
- ]
- ],
- [
- [
- [
- -0.43352580070495605
- ]
- ]
- ],
- [
- [
- [
- -0.47247782349586487
- ]
- ]
- ],
- [
- [
- [
- -0.46507707238197327
- ]
- ]
- ],
- [
- [
- [
- -0.5050516724586487
- ]
- ]
- ],
- [
- [
- [
- -0.3570145070552826
- ]
- ]
- ],
- [
- [
- [
- -0.40193283557891846
- ]
- ]
- ],
- [
- [
- [
- -0.4379098415374756
- ]
- ]
- ],
- [
- [
- [
- -0.5068495869636536
- ]
- ]
- ],
- [
- [
- [
- -0.45481276512145996
- ]
- ]
- ],
- [
- [
- [
- -0.4262949228286743
- ]
- ]
- ],
- [
- [
- [
- -0.3749106526374817
- ]
- ]
- ],
- [
- [
- [
- -0.40510767698287964
- ]
- ]
- ],
- [
- [
- [
- -0.4130581021308899
- ]
- ]
- ],
- [
- [
- [
- -0.5549009442329407
- ]
- ]
- ],
- [
- [
- [
- -0.4389630854129791
- ]
- ]
- ],
- [
- [
- [
- -0.36676502227783203
- ]
- ]
- ],
- [
- [
- [
- -0.39165621995925903
- ]
- ]
- ],
- [
- [
- [
- -0.4573791027069092
- ]
- ]
- ],
- [
- [
- [
- -0.40413999557495117
- ]
- ]
- ],
- [
- [
- [
- -0.44986677169799805
- ]
- ]
- ],
- [
- [
- [
- -0.4170101583003998
- ]
- ]
- ],
- [
- [
- [
- -0.3864072561264038
- ]
- ]
- ],
- [
- [
- [
- -0.4034554958343506
- ]
- ]
- ],
- [
- [
- [
- -0.4029233753681183
- ]
- ]
- ],
- [
- [
- [
- -0.47635748982429504
- ]
- ]
- ],
- [
- [
- [
- -0.45822563767433167
- ]
- ]
- ],
- [
- [
- [
- -0.37760689854621887
- ]
- ]
- ],
- [
- [
- [
- -0.4028492867946625
- ]
- ]
- ],
- [
- [
- [
- -0.5008034110069275
- ]
- ]
- ],
- [
- [
- [
- -0.46083864569664
- ]
- ]
- ],
- [
- [
- [
- -0.46246638894081116
- ]
- ]
- ],
- [
- [
- [
- -0.34176769852638245
- ]
- ]
- ],
- [
- [
- [
- -0.4358299970626831
- ]
- ]
- ],
- [
- [
- [
- -0.44222626090049744
- ]
- ]
- ],
- [
- [
- [
- -0.4144950211048126
- ]
- ]
- ],
- [
- [
- [
- -0.5140724182128906
- ]
- ]
- ],
- [
- [
- [
- -0.3159463405609131
- ]
- ]
- ],
- [
- [
- [
- -0.4550800025463104
- ]
- ]
- ],
- [
- [
- [
- -0.42589497566223145
- ]
- ]
- ],
- [
- [
- [
- -0.5077895522117615
- ]
- ]
- ],
- [
- [
- [
- -0.43568602204322815
- ]
- ]
- ],
- [
- [
- [
- -0.4848759174346924
- ]
- ]
- ],
- [
- [
- [
- -0.4682459831237793
- ]
- ]
- ],
- [
- [
- [
- -0.3590146601200104
- ]
- ]
- ],
- [
- [
- [
- -0.46077513694763184
- ]
- ]
- ],
- [
- [
- [
- -0.3757309913635254
- ]
- ]
- ],
- [
- [
- [
- -0.40409961342811584
- ]
- ]
- ],
- [
- [
- [
- -0.42205101251602173
- ]
- ]
- ],
- [
- [
- [
- -0.4534054100513458
- ]
- ]
- ],
- [
- [
- [
- -0.4382210671901703
- ]
- ]
- ],
- [
- [
- [
- -0.5110430121421814
- ]
- ]
- ],
- [
- [
- [
- -0.39434128999710083
- ]
- ]
- ],
- [
- [
- [
- -0.4112549126148224
- ]
- ]
- ],
- [
- [
- [
- -0.43682682514190674
- ]
- ]
- ],
- [
- [
- [
- -0.5660951733589172
- ]
- ]
- ],
- [
- [
- [
- -0.5715207457542419
- ]
- ]
- ],
- [
- [
- [
- -0.4667673408985138
- ]
- ]
- ],
- [
- [
- [
- -0.41501301527023315
- ]
- ]
- ],
- [
- [
- [
- -0.4411095082759857
- ]
- ]
- ],
- [
- [
- [
- -0.46512237191200256
- ]
- ]
- ],
- [
- [
- [
- -0.5412383675575256
- ]
- ]
- ],
- [
- [
- [
- -0.3893648386001587
- ]
- ]
- ],
- [
- [
- [
- -0.44944968819618225
- ]
- ]
- ],
- [
- [
- [
- -0.5616790652275085
- ]
- ]
- ],
- [
- [
- [
- -0.43624186515808105
- ]
- ]
- ],
- [
- [
- [
- -0.4480002820491791
- ]
- ]
- ],
- [
- [
- [
- -0.5089953541755676
- ]
- ]
- ],
- [
- [
- [
- -0.3955332636833191
- ]
- ]
- ],
- [
- [
- [
- -0.4191572666168213
- ]
- ]
- ],
- [
- [
- [
- -0.40404069423675537
- ]
- ]
- ],
- [
- [
- [
- -0.4746303856372833
- ]
- ]
- ],
- [
- [
- [
- -0.46982520818710327
- ]
- ]
- ],
- [
- [
- [
- -0.5508217811584473
- ]
- ]
- ],
- [
- [
- [
- -0.4294552803039551
- ]
- ]
- ],
- [
- [
- [
- -0.5392154455184937
- ]
- ]
- ],
- [
- [
- [
- -0.3877767026424408
- ]
- ]
- ],
- [
- [
- [
- -0.438179612159729
- ]
- ]
- ],
- [
- [
- [
- -0.43595144152641296
- ]
- ]
- ],
- [
- [
- [
- -0.42098528146743774
- ]
- ]
- ],
- [
- [
- [
- -0.4361681640148163
- ]
- ]
- ],
- [
- [
- [
- -0.5874596834182739
- ]
- ]
- ],
- [
- [
- [
- -0.36584749817848206
- ]
- ]
- ],
- [
- [
- [
- -0.3687461316585541
- ]
- ]
- ],
- [
- [
- [
- -0.49557337164878845
- ]
- ]
- ],
- [
- [
- [
- -0.45588403940200806
- ]
- ]
- ],
- [
- [
- [
- -0.4775533080101013
- ]
- ]
- ],
- [
- [
- [
- -0.41977253556251526
- ]
- ]
- ],
- [
- [
- [
- -0.4373829662799835
- ]
- ]
- ],
- [
- [
- [
- -0.43331876397132874
- ]
- ]
- ],
- [
- [
- [
- -0.3127959668636322
- ]
- ]
- ],
- [
- [
- [
- -0.46790578961372375
- ]
- ]
- ],
- [
- [
- [
- -0.43521350622177124
- ]
- ]
- ],
- [
- [
- [
- -0.36685770750045776
- ]
- ]
- ],
- [
- [
- [
- -0.43267181515693665
- ]
- ]
- ],
- [
- [
- [
- -0.4739443361759186
- ]
- ]
- ],
- [
- [
- [
- -0.33571770787239075
- ]
- ]
- ],
- [
- [
- [
- -0.4742840826511383
- ]
- ]
- ],
- [
- [
- [
- -0.3777315616607666
- ]
- ]
- ],
- [
- [
- [
- -0.40689435601234436
- ]
- ]
- ],
- [
- [
- [
- -0.48398464918136597
- ]
- ]
- ],
- [
- [
- [
- -0.33224982023239136
- ]
- ]
- ],
- [
- [
- [
- -0.4449980556964874
- ]
- ]
- ],
- [
- [
- [
- -0.4498019218444824
- ]
- ]
- ],
- [
- [
- [
- -0.3914642035961151
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.3669280707836151
- ]
- ]
- ],
- [
- [
- [
- 0.48197588324546814
- ]
- ]
- ],
- [
- [
- [
- 0.4875717759132385
- ]
- ]
- ],
- [
- [
- [
- 0.4636417031288147
- ]
- ]
- ],
- [
- [
- [
- 0.4074009358882904
- ]
- ]
- ],
- [
- [
- [
- 0.34943562746047974
- ]
- ]
- ],
- [
- [
- [
- 0.43246757984161377
- ]
- ]
- ],
- [
- [
- [
- 0.43685540556907654
- ]
- ]
- ],
- [
- [
- [
- 0.3781411349773407
- ]
- ]
- ],
- [
- [
- [
- 0.39453253149986267
- ]
- ]
- ],
- [
- [
- [
- 0.42098182439804077
- ]
- ]
- ],
- [
- [
- [
- 0.43917253613471985
- ]
- ]
- ],
- [
- [
- [
- 0.37554773688316345
- ]
- ]
- ],
- [
- [
- [
- 0.5295386910438538
- ]
- ]
- ],
- [
- [
- [
- 0.415728896856308
- ]
- ]
- ],
- [
- [
- [
- 0.4880652129650116
- ]
- ]
- ],
- [
- [
- [
- 0.34667330980300903
- ]
- ]
- ],
- [
- [
- [
- 0.4313127100467682
- ]
- ]
- ],
- [
- [
- [
- 0.4684765636920929
- ]
- ]
- ],
- [
- [
- [
- 0.41511473059654236
- ]
- ]
- ],
- [
- [
- [
- 0.4927263855934143
- ]
- ]
- ],
- [
- [
- [
- 0.4416195750236511
- ]
- ]
- ],
- [
- [
- [
- 0.6446481943130493
- ]
- ]
- ],
- [
- [
- [
- 0.43011969327926636
- ]
- ]
- ],
- [
- [
- [
- 0.41570937633514404
- ]
- ]
- ],
- [
- [
- [
- 0.4739955961704254
- ]
- ]
- ],
- [
- [
- [
- 0.44397082924842834
- ]
- ]
- ],
- [
- [
- [
- 0.5006061792373657
- ]
- ]
- ],
- [
- [
- [
- 0.39458516240119934
- ]
- ]
- ],
- [
- [
- [
- 0.505667507648468
- ]
- ]
- ],
- [
- [
- [
- 0.4026598632335663
- ]
- ]
- ],
- [
- [
- [
- 0.49430206418037415
- ]
- ]
- ],
- [
- [
- [
- 0.5956026315689087
- ]
- ]
- ],
- [
- [
- [
- 0.4117048382759094
- ]
- ]
- ],
- [
- [
- [
- 0.3885584771633148
- ]
- ]
- ],
- [
- [
- [
- 0.33285048604011536
- ]
- ]
- ],
- [
- [
- [
- 0.45313894748687744
- ]
- ]
- ],
- [
- [
- [
- 0.4368850290775299
- ]
- ]
- ],
- [
- [
- [
- 0.42418208718299866
- ]
- ]
- ],
- [
- [
- [
- 0.4493564963340759
- ]
- ]
- ],
- [
- [
- [
- 0.4178992509841919
- ]
- ]
- ],
- [
- [
- [
- 0.3977452218532562
- ]
- ]
- ],
- [
- [
- [
- 0.43268993496894836
- ]
- ]
- ],
- [
- [
- [
- 0.5291568636894226
- ]
- ]
- ],
- [
- [
- [
- 0.4329839050769806
- ]
- ]
- ],
- [
- [
- [
- 0.41114088892936707
- ]
- ]
- ],
- [
- [
- [
- 0.48279157280921936
- ]
- ]
- ],
- [
- [
- [
- 0.4624491035938263
- ]
- ]
- ],
- [
- [
- [
- 0.45482659339904785
- ]
- ]
- ],
- [
- [
- [
- 0.38587433099746704
- ]
- ]
- ],
- [
- [
- [
- 0.4292764365673065
- ]
- ]
- ],
- [
- [
- [
- 0.4031466245651245
- ]
- ]
- ],
- [
- [
- [
- 0.3647627532482147
- ]
- ]
- ],
- [
- [
- [
- 0.3636244833469391
- ]
- ]
- ],
- [
- [
- [
- 0.40592634677886963
- ]
- ]
- ],
- [
- [
- [
- 0.4565138816833496
- ]
- ]
- ],
- [
- [
- [
- 0.4335360825061798
- ]
- ]
- ],
- [
- [
- [
- 0.4309016466140747
- ]
- ]
- ],
- [
- [
- [
- 0.45924505591392517
- ]
- ]
- ],
- [
- [
- [
- 0.38393425941467285
- ]
- ]
- ],
- [
- [
- [
- 0.4255022406578064
- ]
- ]
- ],
- [
- [
- [
- 0.4652228057384491
- ]
- ]
- ],
- [
- [
- [
- 0.39552080631256104
- ]
- ]
- ],
- [
- [
- [
- 0.39790013432502747
- ]
- ]
- ],
- [
- [
- [
- 0.43534165620803833
- ]
- ]
- ],
- [
- [
- [
- 0.46714118123054504
- ]
- ]
- ],
- [
- [
- [
- 0.4537421762943268
- ]
- ]
- ],
- [
- [
- [
- 0.38595208525657654
- ]
- ]
- ],
- [
- [
- [
- 0.4003704786300659
- ]
- ]
- ],
- [
- [
- [
- 0.42917925119400024
- ]
- ]
- ],
- [
- [
- [
- 0.35734471678733826
- ]
- ]
- ],
- [
- [
- [
- 0.40545859932899475
- ]
- ]
- ],
- [
- [
- [
- 0.23736342787742615
- ]
- ]
- ],
- [
- [
- [
- 0.4998655617237091
- ]
- ]
- ],
- [
- [
- [
- 0.4094644784927368
- ]
- ]
- ],
- [
- [
- [
- 0.38687384128570557
- ]
- ]
- ],
- [
- [
- [
- 0.4441513121128082
- ]
- ]
- ],
- [
- [
- [
- 0.3796612322330475
- ]
- ]
- ],
- [
- [
- [
- 0.3898002505302429
- ]
- ]
- ],
- [
- [
- [
- 0.5324399471282959
- ]
- ]
- ],
- [
- [
- [
- 0.5027695298194885
- ]
- ]
- ],
- [
- [
- [
- 0.3771277964115143
- ]
- ]
- ],
- [
- [
- [
- 0.39476245641708374
- ]
- ]
- ],
- [
- [
- [
- 0.4004303216934204
- ]
- ]
- ],
- [
- [
- [
- 0.4119465947151184
- ]
- ]
- ],
- [
- [
- [
- 0.512769341468811
- ]
- ]
- ],
- [
- [
- [
- 0.3981296718120575
- ]
- ]
- ],
- [
- [
- [
- 0.4803471565246582
- ]
- ]
- ],
- [
- [
- [
- 0.41456788778305054
- ]
- ]
- ],
- [
- [
- [
- 0.41559621691703796
- ]
- ]
- ],
- [
- [
- [
- 0.3967491388320923
- ]
- ]
- ],
- [
- [
- [
- 0.4770381450653076
- ]
- ]
- ],
- [
- [
- [
- 0.4159802496433258
- ]
- ]
- ],
- [
- [
- [
- 0.4424516260623932
- ]
- ]
- ],
- [
- [
- [
- 0.3564305007457733
- ]
- ]
- ],
- [
- [
- [
- 0.442727655172348
- ]
- ]
- ],
- [
- [
- [
- 0.4409184455871582
- ]
- ]
- ],
- [
- [
- [
- 0.4878194034099579
- ]
- ]
- ],
- [
- [
- [
- 0.45493990182876587
- ]
- ]
- ],
- [
- [
- [
- 0.4844464361667633
- ]
- ]
- ],
- [
- [
- [
- 0.43738147616386414
- ]
- ]
- ],
- [
- [
- [
- 0.45650455355644226
- ]
- ]
- ],
- [
- [
- [
- 0.4190325140953064
- ]
- ]
- ],
- [
- [
- [
- 0.4345042407512665
- ]
- ]
- ],
- [
- [
- [
- 0.3807617723941803
- ]
- ]
- ],
- [
- [
- [
- 0.41305777430534363
- ]
- ]
- ],
- [
- [
- [
- 0.4074344038963318
- ]
- ]
- ],
- [
- [
- [
- 0.4557432234287262
- ]
- ]
- ],
- [
- [
- [
- 0.38027840852737427
- ]
- ]
- ],
- [
- [
- [
- 0.4246598482131958
- ]
- ]
- ],
- [
- [
- [
- 0.41498273611068726
- ]
- ]
- ],
- [
- [
- [
- 0.4894808828830719
- ]
- ]
- ],
- [
- [
- [
- 0.43412545323371887
- ]
- ]
- ],
- [
- [
- [
- 0.3742615580558777
- ]
- ]
- ],
- [
- [
- [
- 0.4358697831630707
- ]
- ]
- ],
- [
- [
- [
- 0.4068877398967743
- ]
- ]
- ],
- [
- [
- [
- 0.3833162188529968
- ]
- ]
- ],
- [
- [
- [
- 0.4641337990760803
- ]
- ]
- ],
- [
- [
- [
- 0.3622902035713196
- ]
- ]
- ],
- [
- [
- [
- 0.3884466290473938
- ]
- ]
- ],
- [
- [
- [
- 0.4458358585834503
- ]
- ]
- ],
- [
- [
- [
- 0.4462951719760895
- ]
- ]
- ],
- [
- [
- [
- 0.3576619625091553
- ]
- ]
- ],
- [
- [
- [
- 0.49450749158859253
- ]
- ]
- ],
- [
- [
- [
- 0.4699929356575012
- ]
- ]
- ],
- [
- [
- [
- 0.4173103868961334
- ]
- ]
- ],
- [
- [
- [
- 0.4329853057861328
- ]
- ]
- ],
- [
- [
- [
- 0.41463911533355713
- ]
- ]
- ],
- [
- [
- [
- 0.4018567204475403
- ]
- ]
- ],
- [
- [
- [
- 0.39912354946136475
- ]
- ]
- ],
- [
- [
- [
- 0.4700945317745209
- ]
- ]
- ],
- [
- [
- [
- 0.4231607913970947
- ]
- ]
- ],
- [
- [
- [
- 0.3932703733444214
- ]
- ]
- ],
- [
- [
- [
- 0.37095171213150024
- ]
- ]
- ],
- [
- [
- [
- 0.36458820104599
- ]
- ]
- ],
- [
- [
- [
- 0.44114094972610474
- ]
- ]
- ],
- [
- [
- [
- 0.39216986298561096
- ]
- ]
- ],
- [
- [
- [
- 0.44056475162506104
- ]
- ]
- ],
- [
- [
- [
- 0.4058333933353424
- ]
- ]
- ],
- [
- [
- [
- 0.453686386346817
- ]
- ]
- ],
- [
- [
- [
- 0.4495880603790283
- ]
- ]
- ],
- [
- [
- [
- 0.37086814641952515
- ]
- ]
- ],
- [
- [
- [
- 0.4991926848888397
- ]
- ]
- ],
- [
- [
- [
- 0.4056720435619354
- ]
- ]
- ],
- [
- [
- [
- 0.45554405450820923
- ]
- ]
- ],
- [
- [
- [
- 0.46201997995376587
- ]
- ]
- ],
- [
- [
- [
- 0.47221773862838745
- ]
- ]
- ],
- [
- [
- [
- 0.41472485661506653
- ]
- ]
- ],
- [
- [
- [
- 0.3617061972618103
- ]
- ]
- ],
- [
- [
- [
- 0.4020228087902069
- ]
- ]
- ],
- [
- [
- [
- 0.39913129806518555
- ]
- ]
- ],
- [
- [
- [
- 0.46295011043548584
- ]
- ]
- ],
- [
- [
- [
- 0.42005324363708496
- ]
- ]
- ],
- [
- [
- [
- 0.3199377655982971
- ]
- ]
- ],
- [
- [
- [
- 0.46390682458877563
- ]
- ]
- ],
- [
- [
- [
- 0.5599457621574402
- ]
- ]
- ],
- [
- [
- [
- 0.5660314559936523
- ]
- ]
- ],
- [
- [
- [
- 0.4125835597515106
- ]
- ]
- ],
- [
- [
- [
- 0.4212295114994049
- ]
- ]
- ],
- [
- [
- [
- 0.46076512336730957
- ]
- ]
- ],
- [
- [
- [
- 0.4844721555709839
- ]
- ]
- ],
- [
- [
- [
- 0.5525853037834167
- ]
- ]
- ],
- [
- [
- [
- 0.5060823559761047
- ]
- ]
- ],
- [
- [
- [
- 0.4130593538284302
- ]
- ]
- ],
- [
- [
- [
- 0.4077531397342682
- ]
- ]
- ],
- [
- [
- [
- 0.4522303342819214
- ]
- ]
- ],
- [
- [
- [
- 0.4247629940509796
- ]
- ]
- ],
- [
- [
- [
- 0.44025975465774536
- ]
- ]
- ],
- [
- [
- [
- 0.37102416157722473
- ]
- ]
- ],
- [
- [
- [
- 0.4940045475959778
- ]
- ]
- ],
- [
- [
- [
- 0.42445868253707886
- ]
- ]
- ],
- [
- [
- [
- 0.48294925689697266
- ]
- ]
- ],
- [
- [
- [
- 0.5058087110519409
- ]
- ]
- ],
- [
- [
- [
- 0.42034077644348145
- ]
- ]
- ],
- [
- [
- [
- 0.475203275680542
- ]
- ]
- ],
- [
- [
- [
- 0.40697386860847473
- ]
- ]
- ],
- [
- [
- [
- 0.43295907974243164
- ]
- ]
- ],
- [
- [
- [
- 0.3995829224586487
- ]
- ]
- ],
- [
- [
- [
- 0.4927743375301361
- ]
- ]
- ],
- [
- [
- [
- 0.47063392400741577
- ]
- ]
- ],
- [
- [
- [
- 0.41792750358581543
- ]
- ]
- ],
- [
- [
- [
- 0.40568217635154724
- ]
- ]
- ],
- [
- [
- [
- 0.41727644205093384
- ]
- ]
- ],
- [
- [
- [
- 0.36564621329307556
- ]
- ]
- ],
- [
- [
- [
- 0.5093732476234436
- ]
- ]
- ],
- [
- [
- [
- 0.4047839939594269
- ]
- ]
- ],
- [
- [
- [
- 0.38601329922676086
- ]
- ]
- ],
- [
- [
- [
- 0.3641308844089508
- ]
- ]
- ],
- [
- [
- [
- 0.5062236785888672
- ]
- ]
- ],
- [
- [
- [
- 0.3937338590621948
- ]
- ]
- ],
- [
- [
- [
- 0.43595895171165466
- ]
- ]
- ],
- [
- [
- [
- 0.40251368284225464
- ]
- ]
- ],
- [
- [
- [
- 0.511696457862854
- ]
- ]
- ],
- [
- [
- [
- 0.3178873360157013
- ]
- ]
- ],
- [
- [
- [
- 0.4182426333427429
- ]
- ]
- ],
- [
- [
- [
- 0.43590256571769714
- ]
- ]
- ],
- [
- [
- [
- 0.28490516543388367
- ]
- ]
- ],
- [
- [
- [
- 0.4201735556125641
- ]
- ]
- ],
- [
- [
- [
- 0.39371317625045776
- ]
- ]
- ],
- [
- [
- [
- 0.49471309781074524
- ]
- ]
- ],
- [
- [
- [
- 0.4173937141895294
- ]
- ]
- ],
- [
- [
- [
- 0.411887526512146
- ]
- ]
- ],
- [
- [
- [
- 0.3947812020778656
- ]
- ]
- ],
- [
- [
- [
- 0.4022243320941925
- ]
- ]
- ],
- [
- [
- [
- 0.43367618322372437
- ]
- ]
- ],
- [
- [
- [
- 0.39464953541755676
- ]
- ]
- ],
- [
- [
- [
- 0.38803255558013916
- ]
- ]
- ],
- [
- [
- [
- 0.38138261437416077
- ]
- ]
- ],
- [
- [
- [
- 0.5240641236305237
- ]
- ]
- ],
- [
- [
- [
- 0.4004144072532654
- ]
- ]
- ],
- [
- [
- [
- 0.4249313175678253
- ]
- ]
- ],
- [
- [
- [
- 0.39886027574539185
- ]
- ]
- ],
- [
- [
- [
- 0.43498677015304565
- ]
- ]
- ],
- [
- [
- [
- 0.4087512493133545
- ]
- ]
- ],
- [
- [
- [
- 0.3852401673793793
- ]
- ]
- ],
- [
- [
- [
- 0.4551020562648773
- ]
- ]
- ],
- [
- [
- [
- 0.43352580070495605
- ]
- ]
- ],
- [
- [
- [
- 0.47247782349586487
- ]
- ]
- ],
- [
- [
- [
- 0.46507707238197327
- ]
- ]
- ],
- [
- [
- [
- 0.5050516724586487
- ]
- ]
- ],
- [
- [
- [
- 0.3570145070552826
- ]
- ]
- ],
- [
- [
- [
- 0.40193283557891846
- ]
- ]
- ],
- [
- [
- [
- 0.4379098415374756
- ]
- ]
- ],
- [
- [
- [
- 0.5068495869636536
- ]
- ]
- ],
- [
- [
- [
- 0.45481276512145996
- ]
- ]
- ],
- [
- [
- [
- 0.4262949228286743
- ]
- ]
- ],
- [
- [
- [
- 0.3749106526374817
- ]
- ]
- ],
- [
- [
- [
- 0.40510767698287964
- ]
- ]
- ],
- [
- [
- [
- 0.4130581021308899
- ]
- ]
- ],
- [
- [
- [
- 0.5549009442329407
- ]
- ]
- ],
- [
- [
- [
- 0.4389630854129791
- ]
- ]
- ],
- [
- [
- [
- 0.36676502227783203
- ]
- ]
- ],
- [
- [
- [
- 0.39165621995925903
- ]
- ]
- ],
- [
- [
- [
- 0.4573791027069092
- ]
- ]
- ],
- [
- [
- [
- 0.40413999557495117
- ]
- ]
- ],
- [
- [
- [
- 0.44986677169799805
- ]
- ]
- ],
- [
- [
- [
- 0.4170101583003998
- ]
- ]
- ],
- [
- [
- [
- 0.3864072561264038
- ]
- ]
- ],
- [
- [
- [
- 0.4034554958343506
- ]
- ]
- ],
- [
- [
- [
- 0.4029233753681183
- ]
- ]
- ],
- [
- [
- [
- 0.47635748982429504
- ]
- ]
- ],
- [
- [
- [
- 0.45822563767433167
- ]
- ]
- ],
- [
- [
- [
- 0.37760689854621887
- ]
- ]
- ],
- [
- [
- [
- 0.4028492867946625
- ]
- ]
- ],
- [
- [
- [
- 0.5008034110069275
- ]
- ]
- ],
- [
- [
- [
- 0.46083864569664
- ]
- ]
- ],
- [
- [
- [
- 0.46246638894081116
- ]
- ]
- ],
- [
- [
- [
- 0.34176769852638245
- ]
- ]
- ],
- [
- [
- [
- 0.4358299970626831
- ]
- ]
- ],
- [
- [
- [
- 0.44222626090049744
- ]
- ]
- ],
- [
- [
- [
- 0.4144950211048126
- ]
- ]
- ],
- [
- [
- [
- 0.5140724182128906
- ]
- ]
- ],
- [
- [
- [
- 0.3159463405609131
- ]
- ]
- ],
- [
- [
- [
- 0.4550800025463104
- ]
- ]
- ],
- [
- [
- [
- 0.42589497566223145
- ]
- ]
- ],
- [
- [
- [
- 0.5077895522117615
- ]
- ]
- ],
- [
- [
- [
- 0.43568602204322815
- ]
- ]
- ],
- [
- [
- [
- 0.4848759174346924
- ]
- ]
- ],
- [
- [
- [
- 0.4682459831237793
- ]
- ]
- ],
- [
- [
- [
- 0.3590146601200104
- ]
- ]
- ],
- [
- [
- [
- 0.46077513694763184
- ]
- ]
- ],
- [
- [
- [
- 0.3757309913635254
- ]
- ]
- ],
- [
- [
- [
- 0.40409961342811584
- ]
- ]
- ],
- [
- [
- [
- 0.42205101251602173
- ]
- ]
- ],
- [
- [
- [
- 0.4534054100513458
- ]
- ]
- ],
- [
- [
- [
- 0.4382210671901703
- ]
- ]
- ],
- [
- [
- [
- 0.5110430121421814
- ]
- ]
- ],
- [
- [
- [
- 0.39434128999710083
- ]
- ]
- ],
- [
- [
- [
- 0.4112549126148224
- ]
- ]
- ],
- [
- [
- [
- 0.43682682514190674
- ]
- ]
- ],
- [
- [
- [
- 0.5660951733589172
- ]
- ]
- ],
- [
- [
- [
- 0.5715207457542419
- ]
- ]
- ],
- [
- [
- [
- 0.4667673408985138
- ]
- ]
- ],
- [
- [
- [
- 0.41501301527023315
- ]
- ]
- ],
- [
- [
- [
- 0.4411095082759857
- ]
- ]
- ],
- [
- [
- [
- 0.46512237191200256
- ]
- ]
- ],
- [
- [
- [
- 0.5412383675575256
- ]
- ]
- ],
- [
- [
- [
- 0.3893648386001587
- ]
- ]
- ],
- [
- [
- [
- 0.44944968819618225
- ]
- ]
- ],
- [
- [
- [
- 0.5616790652275085
- ]
- ]
- ],
- [
- [
- [
- 0.43624186515808105
- ]
- ]
- ],
- [
- [
- [
- 0.4480002820491791
- ]
- ]
- ],
- [
- [
- [
- 0.5089953541755676
- ]
- ]
- ],
- [
- [
- [
- 0.3955332636833191
- ]
- ]
- ],
- [
- [
- [
- 0.4191572666168213
- ]
- ]
- ],
- [
- [
- [
- 0.40404069423675537
- ]
- ]
- ],
- [
- [
- [
- 0.4746303856372833
- ]
- ]
- ],
- [
- [
- [
- 0.46982520818710327
- ]
- ]
- ],
- [
- [
- [
- 0.5508217811584473
- ]
- ]
- ],
- [
- [
- [
- 0.4294552803039551
- ]
- ]
- ],
- [
- [
- [
- 0.5392154455184937
- ]
- ]
- ],
- [
- [
- [
- 0.3877767026424408
- ]
- ]
- ],
- [
- [
- [
- 0.438179612159729
- ]
- ]
- ],
- [
- [
- [
- 0.43595144152641296
- ]
- ]
- ],
- [
- [
- [
- 0.42098528146743774
- ]
- ]
- ],
- [
- [
- [
- 0.4361681640148163
- ]
- ]
- ],
- [
- [
- [
- 0.5874596834182739
- ]
- ]
- ],
- [
- [
- [
- 0.36584749817848206
- ]
- ]
- ],
- [
- [
- [
- 0.3687461316585541
- ]
- ]
- ],
- [
- [
- [
- 0.49557337164878845
- ]
- ]
- ],
- [
- [
- [
- 0.45588403940200806
- ]
- ]
- ],
- [
- [
- [
- 0.4775533080101013
- ]
- ]
- ],
- [
- [
- [
- 0.41977253556251526
- ]
- ]
- ],
- [
- [
- [
- 0.4373829662799835
- ]
- ]
- ],
- [
- [
- [
- 0.43331876397132874
- ]
- ]
- ],
- [
- [
- [
- 0.3127959668636322
- ]
- ]
- ],
- [
- [
- [
- 0.46790578961372375
- ]
- ]
- ],
- [
- [
- [
- 0.43521350622177124
- ]
- ]
- ],
- [
- [
- [
- 0.36685770750045776
- ]
- ]
- ],
- [
- [
- [
- 0.43267181515693665
- ]
- ]
- ],
- [
- [
- [
- 0.4739443361759186
- ]
- ]
- ],
- [
- [
- [
- 0.33571770787239075
- ]
- ]
- ],
- [
- [
- [
- 0.4742840826511383
- ]
- ]
- ],
- [
- [
- [
- 0.3777315616607666
- ]
- ]
- ],
- [
- [
- [
- 0.40689435601234436
- ]
- ]
- ],
- [
- [
- [
- 0.48398464918136597
- ]
- ]
- ],
- [
- [
- [
- 0.33224982023239136
- ]
- ]
- ],
- [
- [
- [
- 0.4449980556964874
- ]
- ]
- ],
- [
- [
- [
- 0.4498019218444824
- ]
- ]
- ],
- [
- [
- [
- 0.3914642035961151
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.3669280707836151
- ]
- ]
- ],
- [
- [
- [
- -0.48197588324546814
- ]
- ]
- ],
- [
- [
- [
- -0.4875717759132385
- ]
- ]
- ],
- [
- [
- [
- -0.4636417031288147
- ]
- ]
- ],
- [
- [
- [
- -0.4074009358882904
- ]
- ]
- ],
- [
- [
- [
- -0.34943562746047974
- ]
- ]
- ],
- [
- [
- [
- -0.43246757984161377
- ]
- ]
- ],
- [
- [
- [
- -0.43685540556907654
- ]
- ]
- ],
- [
- [
- [
- -0.3781411349773407
- ]
- ]
- ],
- [
- [
- [
- -0.39453253149986267
- ]
- ]
- ],
- [
- [
- [
- -0.42098182439804077
- ]
- ]
- ],
- [
- [
- [
- -0.43917253613471985
- ]
- ]
- ],
- [
- [
- [
- -0.37554773688316345
- ]
- ]
- ],
- [
- [
- [
- -0.5295386910438538
- ]
- ]
- ],
- [
- [
- [
- -0.415728896856308
- ]
- ]
- ],
- [
- [
- [
- -0.4880652129650116
- ]
- ]
- ],
- [
- [
- [
- -0.34667330980300903
- ]
- ]
- ],
- [
- [
- [
- -0.4313127100467682
- ]
- ]
- ],
- [
- [
- [
- -0.4684765636920929
- ]
- ]
- ],
- [
- [
- [
- -0.41511473059654236
- ]
- ]
- ],
- [
- [
- [
- -0.4927263855934143
- ]
- ]
- ],
- [
- [
- [
- -0.4416195750236511
- ]
- ]
- ],
- [
- [
- [
- -0.6446481943130493
- ]
- ]
- ],
- [
- [
- [
- -0.43011969327926636
- ]
- ]
- ],
- [
- [
- [
- -0.41570937633514404
- ]
- ]
- ],
- [
- [
- [
- -0.4739955961704254
- ]
- ]
- ],
- [
- [
- [
- -0.44397082924842834
- ]
- ]
- ],
- [
- [
- [
- -0.5006061792373657
- ]
- ]
- ],
- [
- [
- [
- -0.39458516240119934
- ]
- ]
- ],
- [
- [
- [
- -0.505667507648468
- ]
- ]
- ],
- [
- [
- [
- -0.4026598632335663
- ]
- ]
- ],
- [
- [
- [
- -0.49430206418037415
- ]
- ]
- ],
- [
- [
- [
- -0.5956026315689087
- ]
- ]
- ],
- [
- [
- [
- -0.4117048382759094
- ]
- ]
- ],
- [
- [
- [
- -0.3885584771633148
- ]
- ]
- ],
- [
- [
- [
- -0.33285048604011536
- ]
- ]
- ],
- [
- [
- [
- -0.45313894748687744
- ]
- ]
- ],
- [
- [
- [
- -0.4368850290775299
- ]
- ]
- ],
- [
- [
- [
- -0.42418208718299866
- ]
- ]
- ],
- [
- [
- [
- -0.4493564963340759
- ]
- ]
- ],
- [
- [
- [
- -0.4178992509841919
- ]
- ]
- ],
- [
- [
- [
- -0.3977452218532562
- ]
- ]
- ],
- [
- [
- [
- -0.43268993496894836
- ]
- ]
- ],
- [
- [
- [
- -0.5291568636894226
- ]
- ]
- ],
- [
- [
- [
- -0.4329839050769806
- ]
- ]
- ],
- [
- [
- [
- -0.41114088892936707
- ]
- ]
- ],
- [
- [
- [
- -0.48279157280921936
- ]
- ]
- ],
- [
- [
- [
- -0.4624491035938263
- ]
- ]
- ],
- [
- [
- [
- -0.45482659339904785
- ]
- ]
- ],
- [
- [
- [
- -0.38587433099746704
- ]
- ]
- ],
- [
- [
- [
- -0.4292764365673065
- ]
- ]
- ],
- [
- [
- [
- -0.4031466245651245
- ]
- ]
- ],
- [
- [
- [
- -0.3647627532482147
- ]
- ]
- ],
- [
- [
- [
- -0.3636244833469391
- ]
- ]
- ],
- [
- [
- [
- -0.40592634677886963
- ]
- ]
- ],
- [
- [
- [
- -0.4565138816833496
- ]
- ]
- ],
- [
- [
- [
- -0.4335360825061798
- ]
- ]
- ],
- [
- [
- [
- -0.4309016466140747
- ]
- ]
- ],
- [
- [
- [
- -0.45924505591392517
- ]
- ]
- ],
- [
- [
- [
- -0.38393425941467285
- ]
- ]
- ],
- [
- [
- [
- -0.4255022406578064
- ]
- ]
- ],
- [
- [
- [
- -0.4652228057384491
- ]
- ]
- ],
- [
- [
- [
- -0.39552080631256104
- ]
- ]
- ],
- [
- [
- [
- -0.39790013432502747
- ]
- ]
- ],
- [
- [
- [
- -0.43534165620803833
- ]
- ]
- ],
- [
- [
- [
- -0.46714118123054504
- ]
- ]
- ],
- [
- [
- [
- -0.4537421762943268
- ]
- ]
- ],
- [
- [
- [
- -0.38595208525657654
- ]
- ]
- ],
- [
- [
- [
- -0.4003704786300659
- ]
- ]
- ],
- [
- [
- [
- -0.42917925119400024
- ]
- ]
- ],
- [
- [
- [
- -0.35734471678733826
- ]
- ]
- ],
- [
- [
- [
- -0.40545859932899475
- ]
- ]
- ],
- [
- [
- [
- -0.23736342787742615
- ]
- ]
- ],
- [
- [
- [
- -0.4998655617237091
- ]
- ]
- ],
- [
- [
- [
- -0.4094644784927368
- ]
- ]
- ],
- [
- [
- [
- -0.38687384128570557
- ]
- ]
- ],
- [
- [
- [
- -0.4441513121128082
- ]
- ]
- ],
- [
- [
- [
- -0.3796612322330475
- ]
- ]
- ],
- [
- [
- [
- -0.3898002505302429
- ]
- ]
- ],
- [
- [
- [
- -0.5324399471282959
- ]
- ]
- ],
- [
- [
- [
- -0.5027695298194885
- ]
- ]
- ],
- [
- [
- [
- -0.3771277964115143
- ]
- ]
- ],
- [
- [
- [
- -0.39476245641708374
- ]
- ]
- ],
- [
- [
- [
- -0.4004303216934204
- ]
- ]
- ],
- [
- [
- [
- -0.4119465947151184
- ]
- ]
- ],
- [
- [
- [
- -0.512769341468811
- ]
- ]
- ],
- [
- [
- [
- -0.3981296718120575
- ]
- ]
- ],
- [
- [
- [
- -0.4803471565246582
- ]
- ]
- ],
- [
- [
- [
- -0.41456788778305054
- ]
- ]
- ],
- [
- [
- [
- -0.41559621691703796
- ]
- ]
- ],
- [
- [
- [
- -0.3967491388320923
- ]
- ]
- ],
- [
- [
- [
- -0.4770381450653076
- ]
- ]
- ],
- [
- [
- [
- -0.4159802496433258
- ]
- ]
- ],
- [
- [
- [
- -0.4424516260623932
- ]
- ]
- ],
- [
- [
- [
- -0.3564305007457733
- ]
- ]
- ],
- [
- [
- [
- -0.442727655172348
- ]
- ]
- ],
- [
- [
- [
- -0.4409184455871582
- ]
- ]
- ],
- [
- [
- [
- -0.4878194034099579
- ]
- ]
- ],
- [
- [
- [
- -0.45493990182876587
- ]
- ]
- ],
- [
- [
- [
- -0.4844464361667633
- ]
- ]
- ],
- [
- [
- [
- -0.43738147616386414
- ]
- ]
- ],
- [
- [
- [
- -0.45650455355644226
- ]
- ]
- ],
- [
- [
- [
- -0.4190325140953064
- ]
- ]
- ],
- [
- [
- [
- -0.4345042407512665
- ]
- ]
- ],
- [
- [
- [
- -0.3807617723941803
- ]
- ]
- ],
- [
- [
- [
- -0.41305777430534363
- ]
- ]
- ],
- [
- [
- [
- -0.4074344038963318
- ]
- ]
- ],
- [
- [
- [
- -0.4557432234287262
- ]
- ]
- ],
- [
- [
- [
- -0.38027840852737427
- ]
- ]
- ],
- [
- [
- [
- -0.4246598482131958
- ]
- ]
- ],
- [
- [
- [
- -0.41498273611068726
- ]
- ]
- ],
- [
- [
- [
- -0.4894808828830719
- ]
- ]
- ],
- [
- [
- [
- -0.43412545323371887
- ]
- ]
- ],
- [
- [
- [
- -0.3742615580558777
- ]
- ]
- ],
- [
- [
- [
- -0.4358697831630707
- ]
- ]
- ],
- [
- [
- [
- -0.4068877398967743
- ]
- ]
- ],
- [
- [
- [
- -0.3833162188529968
- ]
- ]
- ],
- [
- [
- [
- -0.4641337990760803
- ]
- ]
- ],
- [
- [
- [
- -0.3622902035713196
- ]
- ]
- ],
- [
- [
- [
- -0.3884466290473938
- ]
- ]
- ],
- [
- [
- [
- -0.4458358585834503
- ]
- ]
- ],
- [
- [
- [
- -0.4462951719760895
- ]
- ]
- ],
- [
- [
- [
- -0.3576619625091553
- ]
- ]
- ],
- [
- [
- [
- -0.49450749158859253
- ]
- ]
- ],
- [
- [
- [
- -0.4699929356575012
- ]
- ]
- ],
- [
- [
- [
- -0.4173103868961334
- ]
- ]
- ],
- [
- [
- [
- -0.4329853057861328
- ]
- ]
- ],
- [
- [
- [
- -0.41463911533355713
- ]
- ]
- ],
- [
- [
- [
- -0.4018567204475403
- ]
- ]
- ],
- [
- [
- [
- -0.39912354946136475
- ]
- ]
- ],
- [
- [
- [
- -0.4700945317745209
- ]
- ]
- ],
- [
- [
- [
- -0.4231607913970947
- ]
- ]
- ],
- [
- [
- [
- -0.3932703733444214
- ]
- ]
- ],
- [
- [
- [
- -0.37095171213150024
- ]
- ]
- ],
- [
- [
- [
- -0.36458820104599
- ]
- ]
- ],
- [
- [
- [
- -0.44114094972610474
- ]
- ]
- ],
- [
- [
- [
- -0.39216986298561096
- ]
- ]
- ],
- [
- [
- [
- -0.44056475162506104
- ]
- ]
- ],
- [
- [
- [
- -0.4058333933353424
- ]
- ]
- ],
- [
- [
- [
- -0.453686386346817
- ]
- ]
- ],
- [
- [
- [
- -0.4495880603790283
- ]
- ]
- ],
- [
- [
- [
- -0.37086814641952515
- ]
- ]
- ],
- [
- [
- [
- -0.4991926848888397
- ]
- ]
- ],
- [
- [
- [
- -0.4056720435619354
- ]
- ]
- ],
- [
- [
- [
- -0.45554405450820923
- ]
- ]
- ],
- [
- [
- [
- -0.46201997995376587
- ]
- ]
- ],
- [
- [
- [
- -0.47221773862838745
- ]
- ]
- ],
- [
- [
- [
- -0.41472485661506653
- ]
- ]
- ],
- [
- [
- [
- -0.3617061972618103
- ]
- ]
- ],
- [
- [
- [
- -0.4020228087902069
- ]
- ]
- ],
- [
- [
- [
- -0.39913129806518555
- ]
- ]
- ],
- [
- [
- [
- -0.46295011043548584
- ]
- ]
- ],
- [
- [
- [
- -0.42005324363708496
- ]
- ]
- ],
- [
- [
- [
- -0.3199377655982971
- ]
- ]
- ],
- [
- [
- [
- -0.46390682458877563
- ]
- ]
- ],
- [
- [
- [
- -0.5599457621574402
- ]
- ]
- ],
- [
- [
- [
- -0.5660314559936523
- ]
- ]
- ],
- [
- [
- [
- -0.4125835597515106
- ]
- ]
- ],
- [
- [
- [
- -0.4212295114994049
- ]
- ]
- ],
- [
- [
- [
- -0.46076512336730957
- ]
- ]
- ],
- [
- [
- [
- -0.4844721555709839
- ]
- ]
- ],
- [
- [
- [
- -0.5525853037834167
- ]
- ]
- ],
- [
- [
- [
- -0.5060823559761047
- ]
- ]
- ],
- [
- [
- [
- -0.4130593538284302
- ]
- ]
- ],
- [
- [
- [
- -0.4077531397342682
- ]
- ]
- ],
- [
- [
- [
- -0.4522303342819214
- ]
- ]
- ],
- [
- [
- [
- -0.4247629940509796
- ]
- ]
- ],
- [
- [
- [
- -0.44025975465774536
- ]
- ]
- ],
- [
- [
- [
- -0.37102416157722473
- ]
- ]
- ],
- [
- [
- [
- -0.4940045475959778
- ]
- ]
- ],
- [
- [
- [
- -0.42445868253707886
- ]
- ]
- ],
- [
- [
- [
- -0.48294925689697266
- ]
- ]
- ],
- [
- [
- [
- -0.5058087110519409
- ]
- ]
- ],
- [
- [
- [
- -0.42034077644348145
- ]
- ]
- ],
- [
- [
- [
- -0.475203275680542
- ]
- ]
- ],
- [
- [
- [
- -0.40697386860847473
- ]
- ]
- ],
- [
- [
- [
- -0.43295907974243164
- ]
- ]
- ],
- [
- [
- [
- -0.3995829224586487
- ]
- ]
- ],
- [
- [
- [
- -0.4927743375301361
- ]
- ]
- ],
- [
- [
- [
- -0.47063392400741577
- ]
- ]
- ],
- [
- [
- [
- -0.41792750358581543
- ]
- ]
- ],
- [
- [
- [
- -0.40568217635154724
- ]
- ]
- ],
- [
- [
- [
- -0.41727644205093384
- ]
- ]
- ],
- [
- [
- [
- -0.36564621329307556
- ]
- ]
- ],
- [
- [
- [
- -0.5093732476234436
- ]
- ]
- ],
- [
- [
- [
- -0.4047839939594269
- ]
- ]
- ],
- [
- [
- [
- -0.38601329922676086
- ]
- ]
- ],
- [
- [
- [
- -0.3641308844089508
- ]
- ]
- ],
- [
- [
- [
- -0.5062236785888672
- ]
- ]
- ],
- [
- [
- [
- -0.3937338590621948
- ]
- ]
- ],
- [
- [
- [
- -0.43595895171165466
- ]
- ]
- ],
- [
- [
- [
- -0.40251368284225464
- ]
- ]
- ],
- [
- [
- [
- -0.511696457862854
- ]
- ]
- ],
- [
- [
- [
- -0.3178873360157013
- ]
- ]
- ],
- [
- [
- [
- -0.4182426333427429
- ]
- ]
- ],
- [
- [
- [
- -0.43590256571769714
- ]
- ]
- ],
- [
- [
- [
- -0.28490516543388367
- ]
- ]
- ],
- [
- [
- [
- -0.4201735556125641
- ]
- ]
- ],
- [
- [
- [
- -0.39371317625045776
- ]
- ]
- ],
- [
- [
- [
- -0.49471309781074524
- ]
- ]
- ],
- [
- [
- [
- -0.4173937141895294
- ]
- ]
- ],
- [
- [
- [
- -0.411887526512146
- ]
- ]
- ],
- [
- [
- [
- -0.3947812020778656
- ]
- ]
- ],
- [
- [
- [
- -0.4022243320941925
- ]
- ]
- ],
- [
- [
- [
- -0.43367618322372437
- ]
- ]
- ],
- [
- [
- [
- -0.39464953541755676
- ]
- ]
- ],
- [
- [
- [
- -0.38803255558013916
- ]
- ]
- ],
- [
- [
- [
- -0.38138261437416077
- ]
- ]
- ],
- [
- [
- [
- -0.5240641236305237
- ]
- ]
- ],
- [
- [
- [
- -0.4004144072532654
- ]
- ]
- ],
- [
- [
- [
- -0.4249313175678253
- ]
- ]
- ],
- [
- [
- [
- -0.39886027574539185
- ]
- ]
- ],
- [
- [
- [
- -0.43498677015304565
- ]
- ]
- ],
- [
- [
- [
- -0.4087512493133545
- ]
- ]
- ],
- [
- [
- [
- -0.3852401673793793
- ]
- ]
- ],
- [
- [
- [
- -0.4551020562648773
- ]
- ]
- ],
- [
- [
- [
- -0.43352580070495605
- ]
- ]
- ],
- [
- [
- [
- -0.47247782349586487
- ]
- ]
- ],
- [
- [
- [
- -0.46507707238197327
- ]
- ]
- ],
- [
- [
- [
- -0.5050516724586487
- ]
- ]
- ],
- [
- [
- [
- -0.3570145070552826
- ]
- ]
- ],
- [
- [
- [
- -0.40193283557891846
- ]
- ]
- ],
- [
- [
- [
- -0.4379098415374756
- ]
- ]
- ],
- [
- [
- [
- -0.5068495869636536
- ]
- ]
- ],
- [
- [
- [
- -0.45481276512145996
- ]
- ]
- ],
- [
- [
- [
- -0.4262949228286743
- ]
- ]
- ],
- [
- [
- [
- -0.3749106526374817
- ]
- ]
- ],
- [
- [
- [
- -0.40510767698287964
- ]
- ]
- ],
- [
- [
- [
- -0.4130581021308899
- ]
- ]
- ],
- [
- [
- [
- -0.5549009442329407
- ]
- ]
- ],
- [
- [
- [
- -0.4389630854129791
- ]
- ]
- ],
- [
- [
- [
- -0.36676502227783203
- ]
- ]
- ],
- [
- [
- [
- -0.39165621995925903
- ]
- ]
- ],
- [
- [
- [
- -0.4573791027069092
- ]
- ]
- ],
- [
- [
- [
- -0.40413999557495117
- ]
- ]
- ],
- [
- [
- [
- -0.44986677169799805
- ]
- ]
- ],
- [
- [
- [
- -0.4170101583003998
- ]
- ]
- ],
- [
- [
- [
- -0.3864072561264038
- ]
- ]
- ],
- [
- [
- [
- -0.4034554958343506
- ]
- ]
- ],
- [
- [
- [
- -0.4029233753681183
- ]
- ]
- ],
- [
- [
- [
- -0.47635748982429504
- ]
- ]
- ],
- [
- [
- [
- -0.45822563767433167
- ]
- ]
- ],
- [
- [
- [
- -0.37760689854621887
- ]
- ]
- ],
- [
- [
- [
- -0.4028492867946625
- ]
- ]
- ],
- [
- [
- [
- -0.5008034110069275
- ]
- ]
- ],
- [
- [
- [
- -0.46083864569664
- ]
- ]
- ],
- [
- [
- [
- -0.46246638894081116
- ]
- ]
- ],
- [
- [
- [
- -0.34176769852638245
- ]
- ]
- ],
- [
- [
- [
- -0.4358299970626831
- ]
- ]
- ],
- [
- [
- [
- -0.44222626090049744
- ]
- ]
- ],
- [
- [
- [
- -0.4144950211048126
- ]
- ]
- ],
- [
- [
- [
- -0.5140724182128906
- ]
- ]
- ],
- [
- [
- [
- -0.3159463405609131
- ]
- ]
- ],
- [
- [
- [
- -0.4550800025463104
- ]
- ]
- ],
- [
- [
- [
- -0.42589497566223145
- ]
- ]
- ],
- [
- [
- [
- -0.5077895522117615
- ]
- ]
- ],
- [
- [
- [
- -0.43568602204322815
- ]
- ]
- ],
- [
- [
- [
- -0.4848759174346924
- ]
- ]
- ],
- [
- [
- [
- -0.4682459831237793
- ]
- ]
- ],
- [
- [
- [
- -0.3590146601200104
- ]
- ]
- ],
- [
- [
- [
- -0.46077513694763184
- ]
- ]
- ],
- [
- [
- [
- -0.3757309913635254
- ]
- ]
- ],
- [
- [
- [
- -0.40409961342811584
- ]
- ]
- ],
- [
- [
- [
- -0.42205101251602173
- ]
- ]
- ],
- [
- [
- [
- -0.4534054100513458
- ]
- ]
- ],
- [
- [
- [
- -0.4382210671901703
- ]
- ]
- ],
- [
- [
- [
- -0.5110430121421814
- ]
- ]
- ],
- [
- [
- [
- -0.39434128999710083
- ]
- ]
- ],
- [
- [
- [
- -0.4112549126148224
- ]
- ]
- ],
- [
- [
- [
- -0.43682682514190674
- ]
- ]
- ],
- [
- [
- [
- -0.5660951733589172
- ]
- ]
- ],
- [
- [
- [
- -0.5715207457542419
- ]
- ]
- ],
- [
- [
- [
- -0.4667673408985138
- ]
- ]
- ],
- [
- [
- [
- -0.41501301527023315
- ]
- ]
- ],
- [
- [
- [
- -0.4411095082759857
- ]
- ]
- ],
- [
- [
- [
- -0.46512237191200256
- ]
- ]
- ],
- [
- [
- [
- -0.5412383675575256
- ]
- ]
- ],
- [
- [
- [
- -0.3893648386001587
- ]
- ]
- ],
- [
- [
- [
- -0.44944968819618225
- ]
- ]
- ],
- [
- [
- [
- -0.5616790652275085
- ]
- ]
- ],
- [
- [
- [
- -0.43624186515808105
- ]
- ]
- ],
- [
- [
- [
- -0.4480002820491791
- ]
- ]
- ],
- [
- [
- [
- -0.5089953541755676
- ]
- ]
- ],
- [
- [
- [
- -0.3955332636833191
- ]
- ]
- ],
- [
- [
- [
- -0.4191572666168213
- ]
- ]
- ],
- [
- [
- [
- -0.40404069423675537
- ]
- ]
- ],
- [
- [
- [
- -0.4746303856372833
- ]
- ]
- ],
- [
- [
- [
- -0.46982520818710327
- ]
- ]
- ],
- [
- [
- [
- -0.5508217811584473
- ]
- ]
- ],
- [
- [
- [
- -0.4294552803039551
- ]
- ]
- ],
- [
- [
- [
- -0.5392154455184937
- ]
- ]
- ],
- [
- [
- [
- -0.3877767026424408
- ]
- ]
- ],
- [
- [
- [
- -0.438179612159729
- ]
- ]
- ],
- [
- [
- [
- -0.43595144152641296
- ]
- ]
- ],
- [
- [
- [
- -0.42098528146743774
- ]
- ]
- ],
- [
- [
- [
- -0.4361681640148163
- ]
- ]
- ],
- [
- [
- [
- -0.5874596834182739
- ]
- ]
- ],
- [
- [
- [
- -0.36584749817848206
- ]
- ]
- ],
- [
- [
- [
- -0.3687461316585541
- ]
- ]
- ],
- [
- [
- [
- -0.49557337164878845
- ]
- ]
- ],
- [
- [
- [
- -0.45588403940200806
- ]
- ]
- ],
- [
- [
- [
- -0.4775533080101013
- ]
- ]
- ],
- [
- [
- [
- -0.41977253556251526
- ]
- ]
- ],
- [
- [
- [
- -0.4373829662799835
- ]
- ]
- ],
- [
- [
- [
- -0.43331876397132874
- ]
- ]
- ],
- [
- [
- [
- -0.3127959668636322
- ]
- ]
- ],
- [
- [
- [
- -0.46790578961372375
- ]
- ]
- ],
- [
- [
- [
- -0.43521350622177124
- ]
- ]
- ],
- [
- [
- [
- -0.36685770750045776
- ]
- ]
- ],
- [
- [
- [
- -0.43267181515693665
- ]
- ]
- ],
- [
- [
- [
- -0.4739443361759186
- ]
- ]
- ],
- [
- [
- [
- -0.33571770787239075
- ]
- ]
- ],
- [
- [
- [
- -0.4742840826511383
- ]
- ]
- ],
- [
- [
- [
- -0.3777315616607666
- ]
- ]
- ],
- [
- [
- [
- -0.40689435601234436
- ]
- ]
- ],
- [
- [
- [
- -0.48398464918136597
- ]
- ]
- ],
- [
- [
- [
- -0.33224982023239136
- ]
- ]
- ],
- [
- [
- [
- -0.4449980556964874
- ]
- ]
- ],
- [
- [
- [
- -0.4498019218444824
- ]
- ]
- ],
- [
- [
- [
- -0.3914642035961151
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.3669280707836151
- ]
- ]
- ],
- [
- [
- [
- 0.48197588324546814
- ]
- ]
- ],
- [
- [
- [
- 0.4875717759132385
- ]
- ]
- ],
- [
- [
- [
- 0.4636417031288147
- ]
- ]
- ],
- [
- [
- [
- 0.4074009358882904
- ]
- ]
- ],
- [
- [
- [
- 0.34943562746047974
- ]
- ]
- ],
- [
- [
- [
- 0.43246757984161377
- ]
- ]
- ],
- [
- [
- [
- 0.43685540556907654
- ]
- ]
- ],
- [
- [
- [
- 0.3781411349773407
- ]
- ]
- ],
- [
- [
- [
- 0.39453253149986267
- ]
- ]
- ],
- [
- [
- [
- 0.42098182439804077
- ]
- ]
- ],
- [
- [
- [
- 0.43917253613471985
- ]
- ]
- ],
- [
- [
- [
- 0.37554773688316345
- ]
- ]
- ],
- [
- [
- [
- 0.5295386910438538
- ]
- ]
- ],
- [
- [
- [
- 0.415728896856308
- ]
- ]
- ],
- [
- [
- [
- 0.4880652129650116
- ]
- ]
- ],
- [
- [
- [
- 0.34667330980300903
- ]
- ]
- ],
- [
- [
- [
- 0.4313127100467682
- ]
- ]
- ],
- [
- [
- [
- 0.4684765636920929
- ]
- ]
- ],
- [
- [
- [
- 0.41511473059654236
- ]
- ]
- ],
- [
- [
- [
- 0.4927263855934143
- ]
- ]
- ],
- [
- [
- [
- 0.4416195750236511
- ]
- ]
- ],
- [
- [
- [
- 0.6446481943130493
- ]
- ]
- ],
- [
- [
- [
- 0.43011969327926636
- ]
- ]
- ],
- [
- [
- [
- 0.41570937633514404
- ]
- ]
- ],
- [
- [
- [
- 0.4739955961704254
- ]
- ]
- ],
- [
- [
- [
- 0.44397082924842834
- ]
- ]
- ],
- [
- [
- [
- 0.5006061792373657
- ]
- ]
- ],
- [
- [
- [
- 0.39458516240119934
- ]
- ]
- ],
- [
- [
- [
- 0.505667507648468
- ]
- ]
- ],
- [
- [
- [
- 0.4026598632335663
- ]
- ]
- ],
- [
- [
- [
- 0.49430206418037415
- ]
- ]
- ],
- [
- [
- [
- 0.5956026315689087
- ]
- ]
- ],
- [
- [
- [
- 0.4117048382759094
- ]
- ]
- ],
- [
- [
- [
- 0.3885584771633148
- ]
- ]
- ],
- [
- [
- [
- 0.33285048604011536
- ]
- ]
- ],
- [
- [
- [
- 0.45313894748687744
- ]
- ]
- ],
- [
- [
- [
- 0.4368850290775299
- ]
- ]
- ],
- [
- [
- [
- 0.42418208718299866
- ]
- ]
- ],
- [
- [
- [
- 0.4493564963340759
- ]
- ]
- ],
- [
- [
- [
- 0.4178992509841919
- ]
- ]
- ],
- [
- [
- [
- 0.3977452218532562
- ]
- ]
- ],
- [
- [
- [
- 0.43268993496894836
- ]
- ]
- ],
- [
- [
- [
- 0.5291568636894226
- ]
- ]
- ],
- [
- [
- [
- 0.4329839050769806
- ]
- ]
- ],
- [
- [
- [
- 0.41114088892936707
- ]
- ]
- ],
- [
- [
- [
- 0.48279157280921936
- ]
- ]
- ],
- [
- [
- [
- 0.4624491035938263
- ]
- ]
- ],
- [
- [
- [
- 0.45482659339904785
- ]
- ]
- ],
- [
- [
- [
- 0.38587433099746704
- ]
- ]
- ],
- [
- [
- [
- 0.4292764365673065
- ]
- ]
- ],
- [
- [
- [
- 0.4031466245651245
- ]
- ]
- ],
- [
- [
- [
- 0.3647627532482147
- ]
- ]
- ],
- [
- [
- [
- 0.3636244833469391
- ]
- ]
- ],
- [
- [
- [
- 0.40592634677886963
- ]
- ]
- ],
- [
- [
- [
- 0.4565138816833496
- ]
- ]
- ],
- [
- [
- [
- 0.4335360825061798
- ]
- ]
- ],
- [
- [
- [
- 0.4309016466140747
- ]
- ]
- ],
- [
- [
- [
- 0.45924505591392517
- ]
- ]
- ],
- [
- [
- [
- 0.38393425941467285
- ]
- ]
- ],
- [
- [
- [
- 0.4255022406578064
- ]
- ]
- ],
- [
- [
- [
- 0.4652228057384491
- ]
- ]
- ],
- [
- [
- [
- 0.39552080631256104
- ]
- ]
- ],
- [
- [
- [
- 0.39790013432502747
- ]
- ]
- ],
- [
- [
- [
- 0.43534165620803833
- ]
- ]
- ],
- [
- [
- [
- 0.46714118123054504
- ]
- ]
- ],
- [
- [
- [
- 0.4537421762943268
- ]
- ]
- ],
- [
- [
- [
- 0.38595208525657654
- ]
- ]
- ],
- [
- [
- [
- 0.4003704786300659
- ]
- ]
- ],
- [
- [
- [
- 0.42917925119400024
- ]
- ]
- ],
- [
- [
- [
- 0.35734471678733826
- ]
- ]
- ],
- [
- [
- [
- 0.40545859932899475
- ]
- ]
- ],
- [
- [
- [
- 0.23736342787742615
- ]
- ]
- ],
- [
- [
- [
- 0.4998655617237091
- ]
- ]
- ],
- [
- [
- [
- 0.4094644784927368
- ]
- ]
- ],
- [
- [
- [
- 0.38687384128570557
- ]
- ]
- ],
- [
- [
- [
- 0.4441513121128082
- ]
- ]
- ],
- [
- [
- [
- 0.3796612322330475
- ]
- ]
- ],
- [
- [
- [
- 0.3898002505302429
- ]
- ]
- ],
- [
- [
- [
- 0.5324399471282959
- ]
- ]
- ],
- [
- [
- [
- 0.5027695298194885
- ]
- ]
- ],
- [
- [
- [
- 0.3771277964115143
- ]
- ]
- ],
- [
- [
- [
- 0.39476245641708374
- ]
- ]
- ],
- [
- [
- [
- 0.4004303216934204
- ]
- ]
- ],
- [
- [
- [
- 0.4119465947151184
- ]
- ]
- ],
- [
- [
- [
- 0.512769341468811
- ]
- ]
- ],
- [
- [
- [
- 0.3981296718120575
- ]
- ]
- ],
- [
- [
- [
- 0.4803471565246582
- ]
- ]
- ],
- [
- [
- [
- 0.41456788778305054
- ]
- ]
- ],
- [
- [
- [
- 0.41559621691703796
- ]
- ]
- ],
- [
- [
- [
- 0.3967491388320923
- ]
- ]
- ],
- [
- [
- [
- 0.4770381450653076
- ]
- ]
- ],
- [
- [
- [
- 0.4159802496433258
- ]
- ]
- ],
- [
- [
- [
- 0.4424516260623932
- ]
- ]
- ],
- [
- [
- [
- 0.3564305007457733
- ]
- ]
- ],
- [
- [
- [
- 0.442727655172348
- ]
- ]
- ],
- [
- [
- [
- 0.4409184455871582
- ]
- ]
- ],
- [
- [
- [
- 0.4878194034099579
- ]
- ]
- ],
- [
- [
- [
- 0.45493990182876587
- ]
- ]
- ],
- [
- [
- [
- 0.4844464361667633
- ]
- ]
- ],
- [
- [
- [
- 0.43738147616386414
- ]
- ]
- ],
- [
- [
- [
- 0.45650455355644226
- ]
- ]
- ],
- [
- [
- [
- 0.4190325140953064
- ]
- ]
- ],
- [
- [
- [
- 0.4345042407512665
- ]
- ]
- ],
- [
- [
- [
- 0.3807617723941803
- ]
- ]
- ],
- [
- [
- [
- 0.41305777430534363
- ]
- ]
- ],
- [
- [
- [
- 0.4074344038963318
- ]
- ]
- ],
- [
- [
- [
- 0.4557432234287262
- ]
- ]
- ],
- [
- [
- [
- 0.38027840852737427
- ]
- ]
- ],
- [
- [
- [
- 0.4246598482131958
- ]
- ]
- ],
- [
- [
- [
- 0.41498273611068726
- ]
- ]
- ],
- [
- [
- [
- 0.4894808828830719
- ]
- ]
- ],
- [
- [
- [
- 0.43412545323371887
- ]
- ]
- ],
- [
- [
- [
- 0.3742615580558777
- ]
- ]
- ],
- [
- [
- [
- 0.4358697831630707
- ]
- ]
- ],
- [
- [
- [
- 0.4068877398967743
- ]
- ]
- ],
- [
- [
- [
- 0.3833162188529968
- ]
- ]
- ],
- [
- [
- [
- 0.4641337990760803
- ]
- ]
- ],
- [
- [
- [
- 0.3622902035713196
- ]
- ]
- ],
- [
- [
- [
- 0.3884466290473938
- ]
- ]
- ],
- [
- [
- [
- 0.4458358585834503
- ]
- ]
- ],
- [
- [
- [
- 0.4462951719760895
- ]
- ]
- ],
- [
- [
- [
- 0.3576619625091553
- ]
- ]
- ],
- [
- [
- [
- 0.49450749158859253
- ]
- ]
- ],
- [
- [
- [
- 0.4699929356575012
- ]
- ]
- ],
- [
- [
- [
- 0.4173103868961334
- ]
- ]
- ],
- [
- [
- [
- 0.4329853057861328
- ]
- ]
- ],
- [
- [
- [
- 0.41463911533355713
- ]
- ]
- ],
- [
- [
- [
- 0.4018567204475403
- ]
- ]
- ],
- [
- [
- [
- 0.39912354946136475
- ]
- ]
- ],
- [
- [
- [
- 0.4700945317745209
- ]
- ]
- ],
- [
- [
- [
- 0.4231607913970947
- ]
- ]
- ],
- [
- [
- [
- 0.3932703733444214
- ]
- ]
- ],
- [
- [
- [
- 0.37095171213150024
- ]
- ]
- ],
- [
- [
- [
- 0.36458820104599
- ]
- ]
- ],
- [
- [
- [
- 0.44114094972610474
- ]
- ]
- ],
- [
- [
- [
- 0.39216986298561096
- ]
- ]
- ],
- [
- [
- [
- 0.44056475162506104
- ]
- ]
- ],
- [
- [
- [
- 0.4058333933353424
- ]
- ]
- ],
- [
- [
- [
- 0.453686386346817
- ]
- ]
- ],
- [
- [
- [
- 0.4495880603790283
- ]
- ]
- ],
- [
- [
- [
- 0.37086814641952515
- ]
- ]
- ],
- [
- [
- [
- 0.4991926848888397
- ]
- ]
- ],
- [
- [
- [
- 0.4056720435619354
- ]
- ]
- ],
- [
- [
- [
- 0.45554405450820923
- ]
- ]
- ],
- [
- [
- [
- 0.46201997995376587
- ]
- ]
- ],
- [
- [
- [
- 0.47221773862838745
- ]
- ]
- ],
- [
- [
- [
- 0.41472485661506653
- ]
- ]
- ],
- [
- [
- [
- 0.3617061972618103
- ]
- ]
- ],
- [
- [
- [
- 0.4020228087902069
- ]
- ]
- ],
- [
- [
- [
- 0.39913129806518555
- ]
- ]
- ],
- [
- [
- [
- 0.46295011043548584
- ]
- ]
- ],
- [
- [
- [
- 0.42005324363708496
- ]
- ]
- ],
- [
- [
- [
- 0.3199377655982971
- ]
- ]
- ],
- [
- [
- [
- 0.46390682458877563
- ]
- ]
- ],
- [
- [
- [
- 0.5599457621574402
- ]
- ]
- ],
- [
- [
- [
- 0.5660314559936523
- ]
- ]
- ],
- [
- [
- [
- 0.4125835597515106
- ]
- ]
- ],
- [
- [
- [
- 0.4212295114994049
- ]
- ]
- ],
- [
- [
- [
- 0.46076512336730957
- ]
- ]
- ],
- [
- [
- [
- 0.4844721555709839
- ]
- ]
- ],
- [
- [
- [
- 0.5525853037834167
- ]
- ]
- ],
- [
- [
- [
- 0.5060823559761047
- ]
- ]
- ],
- [
- [
- [
- 0.4130593538284302
- ]
- ]
- ],
- [
- [
- [
- 0.4077531397342682
- ]
- ]
- ],
- [
- [
- [
- 0.4522303342819214
- ]
- ]
- ],
- [
- [
- [
- 0.4247629940509796
- ]
- ]
- ],
- [
- [
- [
- 0.44025975465774536
- ]
- ]
- ],
- [
- [
- [
- 0.37102416157722473
- ]
- ]
- ],
- [
- [
- [
- 0.4940045475959778
- ]
- ]
- ],
- [
- [
- [
- 0.42445868253707886
- ]
- ]
- ],
- [
- [
- [
- 0.48294925689697266
- ]
- ]
- ],
- [
- [
- [
- 0.5058087110519409
- ]
- ]
- ],
- [
- [
- [
- 0.42034077644348145
- ]
- ]
- ],
- [
- [
- [
- 0.475203275680542
- ]
- ]
- ],
- [
- [
- [
- 0.40697386860847473
- ]
- ]
- ],
- [
- [
- [
- 0.43295907974243164
- ]
- ]
- ],
- [
- [
- [
- 0.3995829224586487
- ]
- ]
- ],
- [
- [
- [
- 0.4927743375301361
- ]
- ]
- ],
- [
- [
- [
- 0.47063392400741577
- ]
- ]
- ],
- [
- [
- [
- 0.41792750358581543
- ]
- ]
- ],
- [
- [
- [
- 0.40568217635154724
- ]
- ]
- ],
- [
- [
- [
- 0.41727644205093384
- ]
- ]
- ],
- [
- [
- [
- 0.36564621329307556
- ]
- ]
- ],
- [
- [
- [
- 0.5093732476234436
- ]
- ]
- ],
- [
- [
- [
- 0.4047839939594269
- ]
- ]
- ],
- [
- [
- [
- 0.38601329922676086
- ]
- ]
- ],
- [
- [
- [
- 0.3641308844089508
- ]
- ]
- ],
- [
- [
- [
- 0.5062236785888672
- ]
- ]
- ],
- [
- [
- [
- 0.3937338590621948
- ]
- ]
- ],
- [
- [
- [
- 0.43595895171165466
- ]
- ]
- ],
- [
- [
- [
- 0.40251368284225464
- ]
- ]
- ],
- [
- [
- [
- 0.511696457862854
- ]
- ]
- ],
- [
- [
- [
- 0.3178873360157013
- ]
- ]
- ],
- [
- [
- [
- 0.4182426333427429
- ]
- ]
- ],
- [
- [
- [
- 0.43590256571769714
- ]
- ]
- ],
- [
- [
- [
- 0.28490516543388367
- ]
- ]
- ],
- [
- [
- [
- 0.4201735556125641
- ]
- ]
- ],
- [
- [
- [
- 0.39371317625045776
- ]
- ]
- ],
- [
- [
- [
- 0.49471309781074524
- ]
- ]
- ],
- [
- [
- [
- 0.4173937141895294
- ]
- ]
- ],
- [
- [
- [
- 0.411887526512146
- ]
- ]
- ],
- [
- [
- [
- 0.3947812020778656
- ]
- ]
- ],
- [
- [
- [
- 0.4022243320941925
- ]
- ]
- ],
- [
- [
- [
- 0.43367618322372437
- ]
- ]
- ],
- [
- [
- [
- 0.39464953541755676
- ]
- ]
- ],
- [
- [
- [
- 0.38803255558013916
- ]
- ]
- ],
- [
- [
- [
- 0.38138261437416077
- ]
- ]
- ],
- [
- [
- [
- 0.5240641236305237
- ]
- ]
- ],
- [
- [
- [
- 0.4004144072532654
- ]
- ]
- ],
- [
- [
- [
- 0.4249313175678253
- ]
- ]
- ],
- [
- [
- [
- 0.39886027574539185
- ]
- ]
- ],
- [
- [
- [
- 0.43498677015304565
- ]
- ]
- ],
- [
- [
- [
- 0.4087512493133545
- ]
- ]
- ],
- [
- [
- [
- 0.3852401673793793
- ]
- ]
- ],
- [
- [
- [
- 0.4551020562648773
- ]
- ]
- ],
- [
- [
- [
- 0.43352580070495605
- ]
- ]
- ],
- [
- [
- [
- 0.47247782349586487
- ]
- ]
- ],
- [
- [
- [
- 0.46507707238197327
- ]
- ]
- ],
- [
- [
- [
- 0.5050516724586487
- ]
- ]
- ],
- [
- [
- [
- 0.3570145070552826
- ]
- ]
- ],
- [
- [
- [
- 0.40193283557891846
- ]
- ]
- ],
- [
- [
- [
- 0.4379098415374756
- ]
- ]
- ],
- [
- [
- [
- 0.5068495869636536
- ]
- ]
- ],
- [
- [
- [
- 0.45481276512145996
- ]
- ]
- ],
- [
- [
- [
- 0.4262949228286743
- ]
- ]
- ],
- [
- [
- [
- 0.3749106526374817
- ]
- ]
- ],
- [
- [
- [
- 0.40510767698287964
- ]
- ]
- ],
- [
- [
- [
- 0.4130581021308899
- ]
- ]
- ],
- [
- [
- [
- 0.5549009442329407
- ]
- ]
- ],
- [
- [
- [
- 0.4389630854129791
- ]
- ]
- ],
- [
- [
- [
- 0.36676502227783203
- ]
- ]
- ],
- [
- [
- [
- 0.39165621995925903
- ]
- ]
- ],
- [
- [
- [
- 0.4573791027069092
- ]
- ]
- ],
- [
- [
- [
- 0.40413999557495117
- ]
- ]
- ],
- [
- [
- [
- 0.44986677169799805
- ]
- ]
- ],
- [
- [
- [
- 0.4170101583003998
- ]
- ]
- ],
- [
- [
- [
- 0.3864072561264038
- ]
- ]
- ],
- [
- [
- [
- 0.4034554958343506
- ]
- ]
- ],
- [
- [
- [
- 0.4029233753681183
- ]
- ]
- ],
- [
- [
- [
- 0.47635748982429504
- ]
- ]
- ],
- [
- [
- [
- 0.45822563767433167
- ]
- ]
- ],
- [
- [
- [
- 0.37760689854621887
- ]
- ]
- ],
- [
- [
- [
- 0.4028492867946625
- ]
- ]
- ],
- [
- [
- [
- 0.5008034110069275
- ]
- ]
- ],
- [
- [
- [
- 0.46083864569664
- ]
- ]
- ],
- [
- [
- [
- 0.46246638894081116
- ]
- ]
- ],
- [
- [
- [
- 0.34176769852638245
- ]
- ]
- ],
- [
- [
- [
- 0.4358299970626831
- ]
- ]
- ],
- [
- [
- [
- 0.44222626090049744
- ]
- ]
- ],
- [
- [
- [
- 0.4144950211048126
- ]
- ]
- ],
- [
- [
- [
- 0.5140724182128906
- ]
- ]
- ],
- [
- [
- [
- 0.3159463405609131
- ]
- ]
- ],
- [
- [
- [
- 0.4550800025463104
- ]
- ]
- ],
- [
- [
- [
- 0.42589497566223145
- ]
- ]
- ],
- [
- [
- [
- 0.5077895522117615
- ]
- ]
- ],
- [
- [
- [
- 0.43568602204322815
- ]
- ]
- ],
- [
- [
- [
- 0.4848759174346924
- ]
- ]
- ],
- [
- [
- [
- 0.4682459831237793
- ]
- ]
- ],
- [
- [
- [
- 0.3590146601200104
- ]
- ]
- ],
- [
- [
- [
- 0.46077513694763184
- ]
- ]
- ],
- [
- [
- [
- 0.3757309913635254
- ]
- ]
- ],
- [
- [
- [
- 0.40409961342811584
- ]
- ]
- ],
- [
- [
- [
- 0.42205101251602173
- ]
- ]
- ],
- [
- [
- [
- 0.4534054100513458
- ]
- ]
- ],
- [
- [
- [
- 0.4382210671901703
- ]
- ]
- ],
- [
- [
- [
- 0.5110430121421814
- ]
- ]
- ],
- [
- [
- [
- 0.39434128999710083
- ]
- ]
- ],
- [
- [
- [
- 0.4112549126148224
- ]
- ]
- ],
- [
- [
- [
- 0.43682682514190674
- ]
- ]
- ],
- [
- [
- [
- 0.5660951733589172
- ]
- ]
- ],
- [
- [
- [
- 0.5715207457542419
- ]
- ]
- ],
- [
- [
- [
- 0.4667673408985138
- ]
- ]
- ],
- [
- [
- [
- 0.41501301527023315
- ]
- ]
- ],
- [
- [
- [
- 0.4411095082759857
- ]
- ]
- ],
- [
- [
- [
- 0.46512237191200256
- ]
- ]
- ],
- [
- [
- [
- 0.5412383675575256
- ]
- ]
- ],
- [
- [
- [
- 0.3893648386001587
- ]
- ]
- ],
- [
- [
- [
- 0.44944968819618225
- ]
- ]
- ],
- [
- [
- [
- 0.5616790652275085
- ]
- ]
- ],
- [
- [
- [
- 0.43624186515808105
- ]
- ]
- ],
- [
- [
- [
- 0.4480002820491791
- ]
- ]
- ],
- [
- [
- [
- 0.5089953541755676
- ]
- ]
- ],
- [
- [
- [
- 0.3955332636833191
- ]
- ]
- ],
- [
- [
- [
- 0.4191572666168213
- ]
- ]
- ],
- [
- [
- [
- 0.40404069423675537
- ]
- ]
- ],
- [
- [
- [
- 0.4746303856372833
- ]
- ]
- ],
- [
- [
- [
- 0.46982520818710327
- ]
- ]
- ],
- [
- [
- [
- 0.5508217811584473
- ]
- ]
- ],
- [
- [
- [
- 0.4294552803039551
- ]
- ]
- ],
- [
- [
- [
- 0.5392154455184937
- ]
- ]
- ],
- [
- [
- [
- 0.3877767026424408
- ]
- ]
- ],
- [
- [
- [
- 0.438179612159729
- ]
- ]
- ],
- [
- [
- [
- 0.43595144152641296
- ]
- ]
- ],
- [
- [
- [
- 0.42098528146743774
- ]
- ]
- ],
- [
- [
- [
- 0.4361681640148163
- ]
- ]
- ],
- [
- [
- [
- 0.5874596834182739
- ]
- ]
- ],
- [
- [
- [
- 0.36584749817848206
- ]
- ]
- ],
- [
- [
- [
- 0.3687461316585541
- ]
- ]
- ],
- [
- [
- [
- 0.49557337164878845
- ]
- ]
- ],
- [
- [
- [
- 0.45588403940200806
- ]
- ]
- ],
- [
- [
- [
- 0.4775533080101013
- ]
- ]
- ],
- [
- [
- [
- 0.41977253556251526
- ]
- ]
- ],
- [
- [
- [
- 0.4373829662799835
- ]
- ]
- ],
- [
- [
- [
- 0.43331876397132874
- ]
- ]
- ],
- [
- [
- [
- 0.3127959668636322
- ]
- ]
- ],
- [
- [
- [
- 0.46790578961372375
- ]
- ]
- ],
- [
- [
- [
- 0.43521350622177124
- ]
- ]
- ],
- [
- [
- [
- 0.36685770750045776
- ]
- ]
- ],
- [
- [
- [
- 0.43267181515693665
- ]
- ]
- ],
- [
- [
- [
- 0.4739443361759186
- ]
- ]
- ],
- [
- [
- [
- 0.33571770787239075
- ]
- ]
- ],
- [
- [
- [
- 0.4742840826511383
- ]
- ]
- ],
- [
- [
- [
- 0.3777315616607666
- ]
- ]
- ],
- [
- [
- [
- 0.40689435601234436
- ]
- ]
- ],
- [
- [
- [
- 0.48398464918136597
- ]
- ]
- ],
- [
- [
- [
- 0.33224982023239136
- ]
- ]
- ],
- [
- [
- [
- 0.4449980556964874
- ]
- ]
- ],
- [
- [
- [
- 0.4498019218444824
- ]
- ]
- ],
- [
- [
- [
- 0.3914642035961151
- ]
- ]
- ]
- ]
- },
- "/features/features.17/conv/conv.1/conv.1.2/Clip/fq_output_0": {
- "input_low": 0.0,
- "input_high": 0.5201660990715027,
- "output_low": 0.0,
- "output_high": 0.5201660990715027
- },
- "/features/features.17/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -1.969524621963501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43561726808547974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4519610404968262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9641892910003662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5626134872436523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8171894550323486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2674262523651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1141176223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.343743085861206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4975016117095947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4230313301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3624853789806366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.581705093383789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5514329671859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2336595058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4651262760162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.207026958465576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0675575733184814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.678705096244812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8709770441055298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.78672194480896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6527504324913025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4087531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.454714834690094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.359023779630661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.624739646911621
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2922104597091675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7778360843658447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9602226614952087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7052345871925354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.54694664478302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2220600843429565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3225919306278229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.0894467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5304155349731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9254564046859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3384650945663452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6911219358444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5387501120567322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4672236740589142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4480328559875488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3695451021194458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8472764492034912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4737792015075684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9335030913352966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.380415678024292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525693655014038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3590857982635498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.124477505683899
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7617459297180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5887134671211243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.411700963973999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4484045505523682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8072712421417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7005855441093445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5570918321609497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.574650764465332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5770521759986877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.053511381149292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2599449157714844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9776142835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.33055579662323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.187203288078308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7780948877334595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.388612151145935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.281343460083008
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7893273234367371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3912134170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8086865544319153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36148396134376526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4490581452846527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4606316089630127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5621498823165894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.273608684539795
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7539523839950562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5583831071853638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5928282737731934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8767104744911194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.069256067276001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3397226929664612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5382811427116394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4081785678863525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3774745464324951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5473474264144897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.309560775756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.350023865699768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6363584995269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3734915256500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.293305516242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.066418170928955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2759373188018799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5898023843765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.590487539768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6483043432235718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3522222936153412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.30297553539276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.58695387840271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5840164422988892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7659361958503723
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9909963011741638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.973022937774658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2291538715362549
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4540241956710815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2766863107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3411065936088562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7916204333305359
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4798316955566406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9912086129188538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9218015670776367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35378360748291016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5327728986740112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43188759684562683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6654280424118042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6154849529266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5720614194869995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6070395708084106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5449575185775757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6053451299667358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.101793885231018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7024364471435547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6182469725608826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35556259751319885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8366860747337341
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6519403457641602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3287557363510132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6011383533477783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7916303873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0357041358947754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7320536375045776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.404215693473816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3776668310165405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8610575199127197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4470429420471191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6325455904006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.697548508644104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8324694633483887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4766221046447754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9916785359382629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8694920539855957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8591225147247314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9790499210357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36103832721710205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5666847229003906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6452176570892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9692248702049255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8506127595901489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7282983064651489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5662693977355957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9414695501327515
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.951157569885254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.248195767402649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5625933408737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4605814218521118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5605360269546509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2263574600219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46429362893104553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3248788118362427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7831666469573975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9982535243034363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3873984813690186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7534872889518738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.973092257976532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1923158168792725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7712101936340332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5476447343826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7701787948608398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8508366942405701
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6474873423576355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2758302688598633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6466280221939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7049657106399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0277777910232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9372411966323853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8598870635032654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36949893832206726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0751525163650513
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6455182433128357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3430333733558655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4215089082717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2522201538085938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9830251932144165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5814486742019653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3161511421203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.958745002746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7243138551712036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2279835939407349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6352370977401733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6244856119155884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8044031858444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6507783532142639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3549010753631592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3004438877105713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0530575513839722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2242422103881836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1931145191192627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4554169178009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8089470863342285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7472400665283203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5755934715270996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7411458492279053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9105552434921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7591139078140259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240227222442627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5428098440170288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.416059136390686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.983664631843567
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4947848320007324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8311291933059692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2440540790557861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7747422456741333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8776134848594666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5651540756225586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.314098834991455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5513032674789429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0685786008834839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9753953218460083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36607053875923157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6117483377456665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8601417541503906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6246640086174011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46010473370552063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.778961181640625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7782412767410278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0963342189788818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8907800912857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2277108430862427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5662935376167297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5375593304634094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6936481595039368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4691215753555298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.369267702102661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6866347193717957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7923498749732971
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39244136214256287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3634698390960693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9561967849731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5890932083129883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.026397705078125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4254555702209473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7874561548233032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7469468116760254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4407490491867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3112237453460693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7553021311759949
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5666875839233398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4483460187911987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.242274284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4917632341384888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.329352617263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.564487099647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5757402777671814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4171109199523926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.768534541130066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4232549667358398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2706772089004517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.524516224861145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9748821258544922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9445191621780396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9760985374450684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.959242343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6696187853813171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4393952488899231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8292482495307922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3256639838218689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7752286791801453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7584422826766968
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34339699149131775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.049720525741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0445361137390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6251012086868286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6337851285934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5846513509750366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8383848071098328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665283203125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.613127589225769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4032970666885376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.032787322998047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6836762428283691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0930427312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.602206289768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40391701459884644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6361476182937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4984357357025146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.020409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4136589765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6197787523269653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2603447437286377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8677461743354797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3405438661575317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7947578430175781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.498225450515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7567972540855408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40421614050865173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6181024312973022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6814073324203491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.554452657699585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40048500895500183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7844595909118652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3444618880748749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.648613452911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7238084673881531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7599031925201416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6682225465774536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9916396737098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0316218137741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7349162101745605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4160849153995514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.046588897705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4680882692337036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5389569997787476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.523488163948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1724622249603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5932625532150269
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6133649945259094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7381593585014343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8131476640701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7404406070709229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.502879023551941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.723722219467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8513426780700684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7608850002288818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36228635907173157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.460625648498535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46377524733543396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9112712144851685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37428730726242065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8137677907943726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.774492084980011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7290637493133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9876068830490112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8302468657493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.630181074142456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3319461345672607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37820398807525635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4043717682361603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8327845931053162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.589990258216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2241770029067993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.726132869720459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9696403741836548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.420113444328308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42013639211654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.022377610206604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7886150479316711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7741034030914307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3838563859462738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5815989971160889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3396495580673218
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9090932607650757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8162602186203003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6388137340545654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8022213578224182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.781329870223999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5751490592956543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.514626681804657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9523767232894897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5373958349227905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7270320057868958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6762096881866455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6332402229309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0732475519180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.390141487121582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6437234282493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7800247073173523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3846752643585205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6272174715995789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.32163405418396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.21129482984542847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.586179256439209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.439563125371933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7514451742172241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7747652530670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3448299467563629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1582159996032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3333988189697266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4907824993133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.449400782585144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3993699550628662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6002771258354187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5693511366844177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.075145959854126
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8610941767692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6308350563049316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6118475794792175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40158379077911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4185619354248047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4516199827194214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4913980960845947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1416707038879395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2561633586883545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4476773738861084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4030587077140808
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.792053699493408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0734412670135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6421562433242798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4663999676704407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7276452779769897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.900641918182373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6028015613555908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5982259511947632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41110679507255554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42027005553245544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4864838123321533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8907454013824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4111502170562744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.402340292930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35686028003692627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4147472381591797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.711576223373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.565181016921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34108027815818787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6795551776885986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.459181547164917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9577229022979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.720046877861023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3579804301261902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.710608184337616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5166860222816467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0126800537109375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4282106161117554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0174788236618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3575717806816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.145258665084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6340231895446777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0162248611450195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.894523024559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066911220550537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8523602485656738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7606009244918823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4030592739582062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8628367185592651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8843993544578552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0885932445526123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4752001762390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228547692298889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4205107688903809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40471845865249634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5405693054199219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7219409942626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3984529674053192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4736682176589966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.385885238647461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4563218355178833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.53666090965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5685760378837585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.502248764038086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5457289814949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5136020183563232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.582065224647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44763943552970886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4712122678756714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3374873399734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39908716082572937
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6467806100845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7112005352973938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.760057270526886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3830558061599731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.035431146621704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1556732654571533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6359806060791016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6238471269607544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6754226088523865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44491109251976013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9576798677444458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8882998824119568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3478754162788391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7091346979141235
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.797820806503296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.471960186958313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2690750360488892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2584301233291626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5179097652435303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8126142024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2850993871688843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7425968647003174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5905001163482666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0296159982681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7395321726799011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1934101581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9719692468643188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.540339708328247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4056015014648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37755054235458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3144259452819824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7010229229927063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.695639967918396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.625328540802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7701222896575928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3357555866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34285277128219604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2610690593719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9252875447273254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.765299916267395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.27059587836265564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8080669045448303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8122939467430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35386863350868225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4072418212890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0425870418548584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0595438480377197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7225139141082764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3023816645145416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1698124408721924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3084279000759125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7919227480888367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.61929452419281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.48201322555542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38836196064949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4177500009536743
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.374098539352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8500826358795166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5755051970481873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.63107168674469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4874016046524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.18831729888916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9936830997467041
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7584209442138672
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4840253591537476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40633466839790344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2058695554733276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9875727891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7834821939468384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4526822566986084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4287527799606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47897839546203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5593293905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4308011531829834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8850980401039124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1583575010299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8101300001144409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4568876624107361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671314239501953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.413914203643799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.777758777141571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.581936240196228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8805257081985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4165905714035034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4278037548065186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.709323763847351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8062381148338318
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8662177324295044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2431646585464478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32090693712234497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1993480920791626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8030465841293335
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44416192173957825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46804165840148926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6568792462348938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6819027662277222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6498901844024658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4870329797267914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7563793659210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32796046137809753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2558026313781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5461276769638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4293005466461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6783961057662964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9525097608566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4169980585575104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4640733599662781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6674404144287109
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5445137023925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3757299780845642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.806933045387268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9193013906478882
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7794812917709351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6636112928390503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6968878507614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.239403486251831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5807002782821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8288334608078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5476038455963135
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7121552228927612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9406863451004028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8727741241455078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5393797159194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.670717477798462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7055889964103699
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8123695254325867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0323017835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6784793138504028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5541542768478394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4863721132278442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0457321405410767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6689491271972656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7940341234207153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8808707594871521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6813220977783203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8378325700759888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6422590017318726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2940657138824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5769797563552856
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4056125283241272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3504929542541504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9757694005966187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7179198861122131
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2444254159927368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5013307332992554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.394135057926178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7560781240463257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8117061853408813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7573834657669067
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6213895082473755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.680708646774292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.544503927230835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32722094655036926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9832199811935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.547769546508789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9905620217323303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0742263793945312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7622519731521606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.568966031074524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7302920818328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9679303169250488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.720924437046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39446204900741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6024677753448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0523303747177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7188951969146729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.527730941772461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6405904293060303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7018992900848389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2593106031417847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5845354795455933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36652061343193054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7697646617889404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5608266592025757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37268394231796265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2879669964313507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2996288239955902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.883037805557251
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3182452917098999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8097995519638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3573378324508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2692341804504395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6440826654434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4112391471862793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46555259823799133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2531660795211792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6321699619293213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5699089765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4974125623703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.843003988265991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4671661853790283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6082481145858765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.136867880821228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7297768592834473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2299137115478516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8741278648376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5880756378173828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.569166660308838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9450560808181763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.363964706659317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5386524200439453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1393203735351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6136868000030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5992317199707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41891348361968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4569891691207886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.230286955833435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8288721442222595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.837200403213501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.08139705657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49234095215797424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6916118264198303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5557929873466492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2041568756103516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3897384405136108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.152139902114868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3860384225845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4305590093135834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.262101411819458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9838213324546814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0077457427978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6422637701034546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5494192838668823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.969398021697998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43133479356765747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5759233236312866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39665690064430237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.973946571350098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3681704998016357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8551101684570312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6760246157646179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7670828104019165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48388850688934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6996278762817383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4923441410064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7102556228637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2234066724777222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5795189142227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.680446207523346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2711927890777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6743077039718628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.084286689758301
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7951791286468506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5469071865081787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2535070180892944
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4069277048110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4128808975219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6487712860107422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5913000106811523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9559862613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.482662558555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.799980878829956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7452152967453003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4577124118804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9192917346954346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37367063760757446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.24222993850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4666450023651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6006174087524414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9657319188117981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3255058526992798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2268807888031006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8958691358566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.570173978805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5881142616271973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1903181076049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5951499938964844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9628352522850037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3326478600502014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8753592371940613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.758183479309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32107675075531006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9254249334335327
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.23130206763744354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7254481911659241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.152736186981201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.850250005722046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5191419124603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9653328061103821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4426642656326294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4303087294101715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4691109657287598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2981880009174347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6796214580535889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.016237497329712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.831328809261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4976661205291748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6027759313583374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1193156242370605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9852769374847412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6645898818969727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.9109926223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3484523296356201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.694117784500122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.423279047012329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8485309481620789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4184650182724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3088884353637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4420990943908691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0209593772888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.325864553451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7325084209442139
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8315035104751587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6349092721939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.582019567489624
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8329448699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7595263719558716
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9921271204948425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6033120155334473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8828776478767395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.590954065322876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9440957307815552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.791540503501892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7623207569122314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4686009883880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5371512174606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.30158546566963196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6052840948104858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1638243198394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7947628498077393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37558022141456604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1411571502685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.022094249725342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3143916130065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0141592025756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5068724155426025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3796137571334839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33991557359695435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6190791726112366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4440841674804688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33557868003845215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4128634929656982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3152402341365814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5611568689346313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5962826013565063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7822790741920471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8995947241783142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6002585887908936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3725796937942505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9470542073249817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7568663954734802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.364181399345398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7816372513771057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6615431904792786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.182289958000183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525961875915527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4505038857460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7678974866867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.441716194152832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36058124899864197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.630165696144104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4562393426895142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.506563425064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38083410263061523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3658680319786072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0327008962631226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43407607078552246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.459306001663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3932439088821411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6754852533340454
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8358919620513916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5056216716766357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4820255637168884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4749283790588379
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7593108415603638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.743271827697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9413435459136963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7256156206130981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5547402501106262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3483039140701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0171505212783813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8487038016319275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0536229610443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.024095058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8916586637496948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3168137073516846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8048022985458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9364317655563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.25417861342430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.471035361289978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39883390069007874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3970581591129303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6560418605804443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5522211790084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.037818431854248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5147007703781128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4688371419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.776477575302124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7752277851104736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4194839298725128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5674996376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.748849630355835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5422723293304443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0087414979934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6352989673614502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4034584164619446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4862627983093262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33216485381126404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6454908847808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5834897756576538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806429862976074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4325815439224243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8176931738853455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2766270637512207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6152154207229614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.803326964378357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9721006751060486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1709693670272827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42735350131988525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44303062558174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2706246376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8076298236846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37811046838760376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6209900379180908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3623678386211395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5528593063354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8402389287948608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.27438557147979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6488789319992065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.766560435295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3483111262321472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3457176983356476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5576494932174683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6925314664840698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9608209133148193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3185371458530426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8533501625061035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1820383071899414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4348174035549164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44428813457489014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35642480850219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4095457792282104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.871975064277649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8774486780166626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -8.94467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7446633577346802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4677308797836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5511165857315063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2349612712860107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3714141249656677
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.318714141845703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6699780225753784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9147355556488037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4492369294166565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48813357949256897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6329214572906494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.350758671760559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.396630883216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.289009690284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2764984369277954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8369369506835938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3934462070465088
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.701889157295227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3223935067653656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5999150276184082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3410261869430542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4400861263275146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5132399201393127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5058635473251343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3855220079421997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4215404689311981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3612127304077148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6083650588989258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2455861568450928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8372429013252258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4173688590526581
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9631250500679016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42400556802749634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34365949034690857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5572525262832642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7292947769165039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2185604572296143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3553961515426636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6380313038825989
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4140013456344604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.431483507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.844842791557312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3535386621952057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3877326250076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.909652590751648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4671926498413086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2623006105422974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5620595216751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9110459685325623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4048643708229065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8975734114646912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3655409812927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8402953147888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.409817636013031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5923820734024048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7475221157073975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4543396234512329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.912071704864502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3156977891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2250535488128662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.631591558456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.646581768989563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4797163009643555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4988901615142822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36645352840423584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6319339275360107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44217947125434875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8523507118225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0633587837219238
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9021666049957275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5462956428527832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5180813074111938
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 1.969524621963501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43561726808547974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4519610404968262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9641892910003662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5626134872436523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8171894550323486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2674262523651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1141176223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.343743085861206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4975016117095947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4230313301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3624853789806366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.581705093383789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5514329671859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2336595058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4651262760162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.207026958465576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0675575733184814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.678705096244812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8709770441055298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.78672194480896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6527504324913025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4087531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.454714834690094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.359023779630661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.624739646911621
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2922104597091675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7778360843658447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9602226614952087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7052345871925354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.54694664478302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2220600843429565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3225919306278229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.0894467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5304155349731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9254564046859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3384650945663452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6911219358444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5387501120567322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4672236740589142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4480328559875488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3695451021194458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8472764492034912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4737792015075684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9335030913352966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.380415678024292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525693655014038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3590857982635498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.124477505683899
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7617459297180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5887134671211243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.411700963973999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4484045505523682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8072712421417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7005855441093445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5570918321609497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.574650764465332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5770521759986877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.053511381149292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2599449157714844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9776142835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.33055579662323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.187203288078308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7780948877334595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.388612151145935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.281343460083008
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7893273234367371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3912134170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8086865544319153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36148396134376526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4490581452846527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4606316089630127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5621498823165894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.273608684539795
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7539523839950562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5583831071853638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5928282737731934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8767104744911194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.069256067276001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3397226929664612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5382811427116394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4081785678863525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3774745464324951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5473474264144897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.309560775756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.350023865699768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6363584995269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3734915256500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.293305516242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.066418170928955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2759373188018799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5898023843765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.590487539768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6483043432235718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3522222936153412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.30297553539276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.58695387840271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5840164422988892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7659361958503723
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9909963011741638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.973022937774658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2291538715362549
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4540241956710815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2766863107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3411065936088562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7916204333305359
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4798316955566406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9912086129188538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9218015670776367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35378360748291016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5327728986740112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43188759684562683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6654280424118042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6154849529266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5720614194869995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6070395708084106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5449575185775757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6053451299667358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.101793885231018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7024364471435547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6182469725608826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35556259751319885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8366860747337341
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6519403457641602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3287557363510132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6011383533477783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7916303873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0357041358947754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7320536375045776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.404215693473816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3776668310165405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8610575199127197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4470429420471191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6325455904006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.697548508644104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8324694633483887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4766221046447754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9916785359382629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8694920539855957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8591225147247314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9790499210357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36103832721710205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5666847229003906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6452176570892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9692248702049255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8506127595901489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7282983064651489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5662693977355957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9414695501327515
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.951157569885254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.248195767402649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5625933408737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4605814218521118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5605360269546509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2263574600219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46429362893104553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3248788118362427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7831666469573975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9982535243034363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3873984813690186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7534872889518738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.973092257976532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1923158168792725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7712101936340332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5476447343826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7701787948608398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8508366942405701
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6474873423576355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2758302688598633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6466280221939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7049657106399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0277777910232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9372411966323853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8598870635032654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36949893832206726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0751525163650513
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6455182433128357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3430333733558655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4215089082717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2522201538085938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9830251932144165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5814486742019653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3161511421203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.958745002746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7243138551712036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2279835939407349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6352370977401733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6244856119155884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8044031858444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6507783532142639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3549010753631592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3004438877105713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0530575513839722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2242422103881836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1931145191192627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4554169178009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8089470863342285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7472400665283203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5755934715270996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7411458492279053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9105552434921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7591139078140259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240227222442627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5428098440170288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.416059136390686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.983664631843567
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4947848320007324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8311291933059692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2440540790557861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7747422456741333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8776134848594666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5651540756225586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.314098834991455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5513032674789429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0685786008834839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9753953218460083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36607053875923157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6117483377456665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8601417541503906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6246640086174011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46010473370552063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.778961181640625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7782412767410278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0963342189788818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8907800912857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2277108430862427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5662935376167297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5375593304634094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6936481595039368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4691215753555298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.369267702102661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6866347193717957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7923498749732971
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39244136214256287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3634698390960693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9561967849731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5890932083129883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.026397705078125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4254555702209473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7874561548233032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7469468116760254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4407490491867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3112237453460693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7553021311759949
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5666875839233398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4483460187911987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.242274284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4917632341384888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.329352617263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.564487099647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5757402777671814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4171109199523926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.768534541130066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4232549667358398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2706772089004517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.524516224861145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9748821258544922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9445191621780396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9760985374450684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.959242343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6696187853813171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4393952488899231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8292482495307922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3256639838218689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7752286791801453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7584422826766968
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34339699149131775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.049720525741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0445361137390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6251012086868286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6337851285934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5846513509750366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8383848071098328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665283203125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.613127589225769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4032970666885376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.032787322998047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6836762428283691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0930427312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.602206289768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40391701459884644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6361476182937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4984357357025146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.020409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4136589765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6197787523269653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2603447437286377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8677461743354797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3405438661575317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7947578430175781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.498225450515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7567972540855408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40421614050865173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6181024312973022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6814073324203491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.554452657699585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40048500895500183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7844595909118652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3444618880748749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.648613452911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7238084673881531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7599031925201416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6682225465774536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9916396737098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0316218137741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7349162101745605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4160849153995514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.046588897705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4680882692337036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5389569997787476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.523488163948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1724622249603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5932625532150269
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6133649945259094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7381593585014343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8131476640701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7404406070709229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.502879023551941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.723722219467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8513426780700684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7608850002288818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36228635907173157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.460625648498535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46377524733543396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9112712144851685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37428730726242065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8137677907943726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.774492084980011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7290637493133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9876068830490112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8302468657493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.630181074142456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3319461345672607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37820398807525635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4043717682361603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8327845931053162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.589990258216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2241770029067993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.726132869720459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9696403741836548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.420113444328308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42013639211654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.022377610206604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7886150479316711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7741034030914307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3838563859462738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5815989971160889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3396495580673218
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9090932607650757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8162602186203003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6388137340545654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8022213578224182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.781329870223999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5751490592956543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.514626681804657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9523767232894897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5373958349227905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7270320057868958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6762096881866455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6332402229309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0732475519180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.390141487121582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6437234282493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7800247073173523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3846752643585205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6272174715995789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.32163405418396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.21129482984542847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.586179256439209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.439563125371933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7514451742172241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7747652530670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3448299467563629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1582159996032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3333988189697266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4907824993133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.449400782585144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3993699550628662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6002771258354187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5693511366844177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.075145959854126
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8610941767692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6308350563049316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6118475794792175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40158379077911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4185619354248047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4516199827194214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4913980960845947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1416707038879395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2561633586883545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4476773738861084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4030587077140808
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.792053699493408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0734412670135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6421562433242798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4663999676704407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7276452779769897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.900641918182373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6028015613555908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5982259511947632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41110679507255554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42027005553245544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4864838123321533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8907454013824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4111502170562744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.402340292930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35686028003692627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4147472381591797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.711576223373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.565181016921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34108027815818787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6795551776885986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.459181547164917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9577229022979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.720046877861023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3579804301261902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.710608184337616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5166860222816467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0126800537109375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4282106161117554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0174788236618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3575717806816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.145258665084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6340231895446777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0162248611450195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.894523024559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066911220550537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8523602485656738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7606009244918823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4030592739582062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8628367185592651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8843993544578552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0885932445526123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4752001762390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228547692298889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4205107688903809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40471845865249634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5405693054199219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7219409942626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3984529674053192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4736682176589966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.385885238647461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4563218355178833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.53666090965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5685760378837585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.502248764038086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5457289814949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5136020183563232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.582065224647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44763943552970886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4712122678756714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3374873399734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39908716082572937
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6467806100845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7112005352973938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.760057270526886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3830558061599731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.035431146621704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1556732654571533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6359806060791016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6238471269607544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6754226088523865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44491109251976013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9576798677444458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8882998824119568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3478754162788391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7091346979141235
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.797820806503296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.471960186958313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2690750360488892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2584301233291626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5179097652435303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8126142024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2850993871688843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7425968647003174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5905001163482666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0296159982681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7395321726799011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1934101581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9719692468643188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.540339708328247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4056015014648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37755054235458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3144259452819824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7010229229927063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.695639967918396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.625328540802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7701222896575928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3357555866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34285277128219604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2610690593719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9252875447273254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.765299916267395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.27059587836265564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8080669045448303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8122939467430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35386863350868225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4072418212890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0425870418548584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0595438480377197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7225139141082764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3023816645145416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1698124408721924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3084279000759125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7919227480888367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.61929452419281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.48201322555542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38836196064949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4177500009536743
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.374098539352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8500826358795166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5755051970481873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.63107168674469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4874016046524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.18831729888916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9936830997467041
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7584209442138672
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4840253591537476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40633466839790344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2058695554733276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9875727891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7834821939468384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4526822566986084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4287527799606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47897839546203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5593293905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4308011531829834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8850980401039124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1583575010299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8101300001144409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4568876624107361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671314239501953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.413914203643799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.777758777141571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.581936240196228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8805257081985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4165905714035034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4278037548065186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.709323763847351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8062381148338318
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8662177324295044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2431646585464478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32090693712234497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1993480920791626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8030465841293335
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44416192173957825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46804165840148926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6568792462348938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6819027662277222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6498901844024658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4870329797267914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7563793659210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32796046137809753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2558026313781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5461276769638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4293005466461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6783961057662964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9525097608566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4169980585575104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4640733599662781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6674404144287109
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5445137023925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3757299780845642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.806933045387268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9193013906478882
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7794812917709351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6636112928390503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6968878507614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.239403486251831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5807002782821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8288334608078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5476038455963135
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7121552228927612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9406863451004028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8727741241455078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5393797159194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.670717477798462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7055889964103699
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8123695254325867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0323017835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6784793138504028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5541542768478394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4863721132278442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0457321405410767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6689491271972656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7940341234207153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8808707594871521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6813220977783203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8378325700759888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6422590017318726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2940657138824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5769797563552856
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4056125283241272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3504929542541504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9757694005966187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7179198861122131
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2444254159927368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5013307332992554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.394135057926178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7560781240463257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8117061853408813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7573834657669067
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6213895082473755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.680708646774292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.544503927230835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32722094655036926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9832199811935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.547769546508789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9905620217323303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0742263793945312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7622519731521606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.568966031074524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7302920818328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9679303169250488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.720924437046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39446204900741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6024677753448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0523303747177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7188951969146729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.527730941772461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6405904293060303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7018992900848389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2593106031417847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5845354795455933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36652061343193054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7697646617889404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5608266592025757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37268394231796265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2879669964313507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2996288239955902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.883037805557251
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3182452917098999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8097995519638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3573378324508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2692341804504395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6440826654434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4112391471862793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46555259823799133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2531660795211792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6321699619293213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5699089765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4974125623703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.843003988265991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4671661853790283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6082481145858765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.136867880821228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7297768592834473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2299137115478516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8741278648376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5880756378173828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.569166660308838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9450560808181763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.363964706659317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5386524200439453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1393203735351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6136868000030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5992317199707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41891348361968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4569891691207886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.230286955833435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8288721442222595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.837200403213501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.08139705657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49234095215797424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6916118264198303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5557929873466492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2041568756103516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3897384405136108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.152139902114868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3860384225845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4305590093135834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.262101411819458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9838213324546814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0077457427978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6422637701034546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5494192838668823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.969398021697998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43133479356765747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5759233236312866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39665690064430237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.973946571350098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3681704998016357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8551101684570312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6760246157646179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7670828104019165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48388850688934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6996278762817383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4923441410064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7102556228637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2234066724777222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5795189142227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.680446207523346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2711927890777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6743077039718628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.084286689758301
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7951791286468506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5469071865081787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2535070180892944
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4069277048110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4128808975219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6487712860107422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5913000106811523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9559862613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.482662558555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.799980878829956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7452152967453003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4577124118804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9192917346954346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37367063760757446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.24222993850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4666450023651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6006174087524414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9657319188117981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3255058526992798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2268807888031006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8958691358566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.570173978805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5881142616271973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1903181076049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5951499938964844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9628352522850037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3326478600502014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8753592371940613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.758183479309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32107675075531006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9254249334335327
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.23130206763744354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7254481911659241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.152736186981201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.850250005722046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5191419124603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9653328061103821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4426642656326294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4303087294101715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4691109657287598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2981880009174347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6796214580535889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.016237497329712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.831328809261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4976661205291748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6027759313583374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1193156242370605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9852769374847412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6645898818969727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.9109926223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3484523296356201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.694117784500122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.423279047012329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8485309481620789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4184650182724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3088884353637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4420990943908691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0209593772888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.325864553451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7325084209442139
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8315035104751587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6349092721939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.582019567489624
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8329448699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7595263719558716
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9921271204948425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6033120155334473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8828776478767395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.590954065322876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9440957307815552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.791540503501892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7623207569122314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4686009883880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5371512174606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.30158546566963196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6052840948104858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1638243198394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7947628498077393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37558022141456604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1411571502685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.022094249725342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3143916130065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0141592025756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5068724155426025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3796137571334839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33991557359695435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6190791726112366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4440841674804688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33557868003845215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4128634929656982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3152402341365814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5611568689346313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5962826013565063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7822790741920471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8995947241783142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6002585887908936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3725796937942505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9470542073249817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7568663954734802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.364181399345398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7816372513771057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6615431904792786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.182289958000183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525961875915527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4505038857460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7678974866867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.441716194152832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36058124899864197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.630165696144104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4562393426895142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.506563425064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38083410263061523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3658680319786072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0327008962631226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43407607078552246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.459306001663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3932439088821411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6754852533340454
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8358919620513916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5056216716766357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4820255637168884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4749283790588379
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7593108415603638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.743271827697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9413435459136963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7256156206130981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5547402501106262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3483039140701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0171505212783813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8487038016319275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0536229610443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.024095058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8916586637496948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3168137073516846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8048022985458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9364317655563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.25417861342430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.471035361289978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39883390069007874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3970581591129303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6560418605804443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5522211790084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.037818431854248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5147007703781128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4688371419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.776477575302124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7752277851104736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4194839298725128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5674996376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.748849630355835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5422723293304443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0087414979934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6352989673614502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4034584164619446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4862627983093262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33216485381126404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6454908847808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5834897756576538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806429862976074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4325815439224243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8176931738853455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2766270637512207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6152154207229614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.803326964378357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9721006751060486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1709693670272827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42735350131988525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44303062558174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2706246376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8076298236846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37811046838760376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6209900379180908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3623678386211395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5528593063354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8402389287948608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.27438557147979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6488789319992065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.766560435295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3483111262321472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3457176983356476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5576494932174683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6925314664840698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9608209133148193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3185371458530426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8533501625061035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1820383071899414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4348174035549164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44428813457489014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35642480850219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4095457792282104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.871975064277649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8774486780166626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 8.94467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7446633577346802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4677308797836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5511165857315063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2349612712860107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3714141249656677
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.318714141845703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6699780225753784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9147355556488037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4492369294166565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48813357949256897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6329214572906494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.350758671760559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.396630883216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.289009690284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2764984369277954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8369369506835938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3934462070465088
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.701889157295227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3223935067653656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5999150276184082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3410261869430542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4400861263275146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5132399201393127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5058635473251343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3855220079421997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4215404689311981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3612127304077148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6083650588989258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2455861568450928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8372429013252258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4173688590526581
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9631250500679016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42400556802749634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34365949034690857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5572525262832642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7292947769165039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2185604572296143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3553961515426636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6380313038825989
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4140013456344604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.431483507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.844842791557312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3535386621952057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3877326250076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.909652590751648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4671926498413086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2623006105422974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5620595216751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9110459685325623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4048643708229065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8975734114646912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3655409812927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8402953147888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.409817636013031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5923820734024048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7475221157073975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4543396234512329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.912071704864502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3156977891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2250535488128662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.631591558456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.646581768989563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4797163009643555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4988901615142822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36645352840423584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6319339275360107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44217947125434875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8523507118225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0633587837219238
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9021666049957275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5462956428527832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5180813074111938
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -1.969524621963501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43561726808547974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4519610404968262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9641892910003662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5626134872436523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8171894550323486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2674262523651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1141176223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.343743085861206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4975016117095947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4230313301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3624853789806366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.581705093383789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5514329671859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2336595058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4651262760162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.207026958465576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0675575733184814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.678705096244812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8709770441055298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.78672194480896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6527504324913025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4087531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.454714834690094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.359023779630661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.624739646911621
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2922104597091675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7778360843658447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9602226614952087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7052345871925354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.54694664478302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2220600843429565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3225919306278229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.0894467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5304155349731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9254564046859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3384650945663452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6911219358444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5387501120567322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4672236740589142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4480328559875488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3695451021194458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8472764492034912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4737792015075684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9335030913352966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.380415678024292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525693655014038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3590857982635498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.124477505683899
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7617459297180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5887134671211243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.411700963973999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4484045505523682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8072712421417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7005855441093445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5570918321609497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.574650764465332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5770521759986877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.053511381149292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2599449157714844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9776142835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.33055579662323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.187203288078308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7780948877334595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.388612151145935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.281343460083008
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7893273234367371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3912134170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8086865544319153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36148396134376526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4490581452846527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4606316089630127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5621498823165894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.273608684539795
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7539523839950562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5583831071853638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5928282737731934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8767104744911194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.069256067276001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3397226929664612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5382811427116394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4081785678863525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3774745464324951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5473474264144897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.309560775756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.350023865699768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6363584995269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3734915256500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.293305516242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.066418170928955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2759373188018799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5898023843765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.590487539768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6483043432235718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3522222936153412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.30297553539276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.58695387840271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5840164422988892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7659361958503723
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9909963011741638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.973022937774658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2291538715362549
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4540241956710815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2766863107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3411065936088562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7916204333305359
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4798316955566406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9912086129188538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9218015670776367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35378360748291016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5327728986740112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43188759684562683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6654280424118042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6154849529266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5720614194869995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6070395708084106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5449575185775757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6053451299667358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.101793885231018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7024364471435547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6182469725608826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35556259751319885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8366860747337341
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6519403457641602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3287557363510132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6011383533477783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7916303873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0357041358947754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7320536375045776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.404215693473816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3776668310165405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8610575199127197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4470429420471191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6325455904006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.697548508644104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8324694633483887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4766221046447754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9916785359382629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8694920539855957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8591225147247314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9790499210357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36103832721710205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5666847229003906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6452176570892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9692248702049255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8506127595901489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7282983064651489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5662693977355957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9414695501327515
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.951157569885254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.248195767402649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5625933408737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4605814218521118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5605360269546509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2263574600219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46429362893104553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3248788118362427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7831666469573975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9982535243034363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3873984813690186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7534872889518738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.973092257976532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1923158168792725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7712101936340332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5476447343826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7701787948608398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8508366942405701
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6474873423576355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2758302688598633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6466280221939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7049657106399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0277777910232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9372411966323853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8598870635032654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36949893832206726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0751525163650513
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6455182433128357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3430333733558655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4215089082717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2522201538085938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9830251932144165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5814486742019653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3161511421203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.958745002746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7243138551712036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2279835939407349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6352370977401733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6244856119155884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8044031858444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6507783532142639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3549010753631592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3004438877105713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0530575513839722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2242422103881836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1931145191192627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4554169178009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8089470863342285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7472400665283203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5755934715270996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7411458492279053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9105552434921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7591139078140259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240227222442627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5428098440170288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.416059136390686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.983664631843567
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4947848320007324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8311291933059692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2440540790557861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7747422456741333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8776134848594666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5651540756225586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.314098834991455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5513032674789429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0685786008834839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9753953218460083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36607053875923157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6117483377456665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8601417541503906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6246640086174011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46010473370552063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.778961181640625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7782412767410278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0963342189788818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8907800912857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2277108430862427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5662935376167297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5375593304634094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6936481595039368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4691215753555298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.369267702102661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6866347193717957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7923498749732971
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39244136214256287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3634698390960693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9561967849731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5890932083129883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.026397705078125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4254555702209473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7874561548233032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7469468116760254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4407490491867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3112237453460693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7553021311759949
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5666875839233398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4483460187911987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.242274284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4917632341384888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.329352617263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.564487099647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5757402777671814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4171109199523926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.768534541130066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4232549667358398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2706772089004517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.524516224861145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9748821258544922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9445191621780396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9760985374450684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.959242343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6696187853813171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4393952488899231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8292482495307922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3256639838218689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7752286791801453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7584422826766968
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34339699149131775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.049720525741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0445361137390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6251012086868286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6337851285934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5846513509750366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8383848071098328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665283203125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.613127589225769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4032970666885376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.032787322998047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6836762428283691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0930427312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.602206289768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40391701459884644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6361476182937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4984357357025146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.020409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4136589765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6197787523269653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2603447437286377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8677461743354797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3405438661575317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7947578430175781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.498225450515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7567972540855408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40421614050865173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6181024312973022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6814073324203491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.554452657699585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40048500895500183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7844595909118652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3444618880748749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.648613452911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7238084673881531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7599031925201416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6682225465774536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9916396737098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0316218137741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7349162101745605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4160849153995514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.046588897705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4680882692337036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5389569997787476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.523488163948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1724622249603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5932625532150269
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6133649945259094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7381593585014343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8131476640701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7404406070709229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.502879023551941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.723722219467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8513426780700684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7608850002288818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36228635907173157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.460625648498535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46377524733543396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9112712144851685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37428730726242065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8137677907943726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.774492084980011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7290637493133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9876068830490112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8302468657493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.630181074142456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3319461345672607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37820398807525635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4043717682361603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8327845931053162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.589990258216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2241770029067993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.726132869720459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9696403741836548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.420113444328308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42013639211654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.022377610206604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7886150479316711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7741034030914307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3838563859462738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5815989971160889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3396495580673218
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9090932607650757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8162602186203003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6388137340545654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8022213578224182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.781329870223999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5751490592956543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.514626681804657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9523767232894897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5373958349227905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7270320057868958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6762096881866455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6332402229309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0732475519180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.390141487121582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6437234282493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7800247073173523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3846752643585205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6272174715995789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.32163405418396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.21129482984542847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.586179256439209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.439563125371933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7514451742172241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7747652530670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3448299467563629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1582159996032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3333988189697266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4907824993133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.449400782585144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3993699550628662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6002771258354187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5693511366844177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.075145959854126
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8610941767692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6308350563049316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6118475794792175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40158379077911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4185619354248047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4516199827194214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4913980960845947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1416707038879395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2561633586883545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4476773738861084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4030587077140808
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.792053699493408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0734412670135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6421562433242798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4663999676704407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7276452779769897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.900641918182373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6028015613555908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5982259511947632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41110679507255554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42027005553245544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4864838123321533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8907454013824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4111502170562744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.402340292930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35686028003692627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4147472381591797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.711576223373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.565181016921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34108027815818787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6795551776885986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.459181547164917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9577229022979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.720046877861023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3579804301261902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.710608184337616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5166860222816467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0126800537109375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4282106161117554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0174788236618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3575717806816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.145258665084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6340231895446777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0162248611450195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.894523024559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066911220550537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8523602485656738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7606009244918823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4030592739582062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8628367185592651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8843993544578552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0885932445526123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4752001762390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228547692298889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4205107688903809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40471845865249634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5405693054199219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7219409942626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3984529674053192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4736682176589966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.385885238647461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4563218355178833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.53666090965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5685760378837585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.502248764038086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5457289814949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5136020183563232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.582065224647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44763943552970886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4712122678756714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3374873399734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39908716082572937
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6467806100845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7112005352973938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.760057270526886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3830558061599731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.035431146621704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1556732654571533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6359806060791016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6238471269607544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6754226088523865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44491109251976013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9576798677444458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8882998824119568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3478754162788391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7091346979141235
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.797820806503296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.471960186958313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2690750360488892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2584301233291626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5179097652435303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8126142024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2850993871688843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7425968647003174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5905001163482666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0296159982681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7395321726799011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1934101581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9719692468643188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.540339708328247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4056015014648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37755054235458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3144259452819824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7010229229927063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.695639967918396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.625328540802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7701222896575928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3357555866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34285277128219604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2610690593719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9252875447273254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.765299916267395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.27059587836265564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8080669045448303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8122939467430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35386863350868225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4072418212890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0425870418548584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0595438480377197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7225139141082764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3023816645145416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1698124408721924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3084279000759125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7919227480888367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.61929452419281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.48201322555542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38836196064949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4177500009536743
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.374098539352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8500826358795166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5755051970481873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.63107168674469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4874016046524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.18831729888916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9936830997467041
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7584209442138672
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4840253591537476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40633466839790344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2058695554733276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9875727891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7834821939468384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4526822566986084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4287527799606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47897839546203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5593293905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4308011531829834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8850980401039124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1583575010299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8101300001144409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4568876624107361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671314239501953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.413914203643799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.777758777141571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.581936240196228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8805257081985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4165905714035034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4278037548065186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.709323763847351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8062381148338318
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8662177324295044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2431646585464478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32090693712234497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1993480920791626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8030465841293335
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44416192173957825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46804165840148926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6568792462348938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6819027662277222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6498901844024658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4870329797267914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7563793659210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32796046137809753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2558026313781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5461276769638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4293005466461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6783961057662964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9525097608566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4169980585575104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4640733599662781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6674404144287109
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5445137023925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3757299780845642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.806933045387268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9193013906478882
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7794812917709351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6636112928390503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6968878507614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.239403486251831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5807002782821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8288334608078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5476038455963135
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7121552228927612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9406863451004028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8727741241455078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5393797159194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.670717477798462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7055889964103699
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8123695254325867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0323017835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6784793138504028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5541542768478394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4863721132278442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0457321405410767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6689491271972656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7940341234207153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8808707594871521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6813220977783203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8378325700759888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6422590017318726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2940657138824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5769797563552856
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4056125283241272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3504929542541504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9757694005966187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7179198861122131
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2444254159927368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5013307332992554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.394135057926178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7560781240463257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8117061853408813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7573834657669067
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6213895082473755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.680708646774292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.544503927230835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32722094655036926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9832199811935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.547769546508789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9905620217323303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0742263793945312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7622519731521606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.568966031074524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7302920818328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9679303169250488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.720924437046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39446204900741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6024677753448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0523303747177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7188951969146729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.527730941772461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6405904293060303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7018992900848389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2593106031417847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5845354795455933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36652061343193054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7697646617889404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5608266592025757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37268394231796265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2879669964313507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2996288239955902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.883037805557251
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3182452917098999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8097995519638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3573378324508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2692341804504395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6440826654434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4112391471862793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46555259823799133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2531660795211792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6321699619293213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5699089765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4974125623703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.843003988265991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4671661853790283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6082481145858765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.136867880821228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7297768592834473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2299137115478516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8741278648376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5880756378173828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.569166660308838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9450560808181763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.363964706659317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5386524200439453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1393203735351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6136868000030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5992317199707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41891348361968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4569891691207886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.230286955833435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8288721442222595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.837200403213501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.08139705657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49234095215797424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6916118264198303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5557929873466492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2041568756103516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3897384405136108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.152139902114868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3860384225845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4305590093135834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.262101411819458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9838213324546814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0077457427978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6422637701034546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5494192838668823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.969398021697998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43133479356765747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5759233236312866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39665690064430237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.973946571350098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3681704998016357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8551101684570312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6760246157646179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7670828104019165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48388850688934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6996278762817383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4923441410064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7102556228637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2234066724777222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5795189142227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.680446207523346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2711927890777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6743077039718628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.084286689758301
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7951791286468506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5469071865081787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2535070180892944
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4069277048110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4128808975219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6487712860107422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5913000106811523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9559862613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.482662558555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.799980878829956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7452152967453003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4577124118804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9192917346954346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37367063760757446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.24222993850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4666450023651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6006174087524414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9657319188117981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3255058526992798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2268807888031006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8958691358566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.570173978805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5881142616271973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1903181076049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5951499938964844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9628352522850037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3326478600502014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8753592371940613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.758183479309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.32107675075531006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9254249334335327
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.23130206763744354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7254481911659241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.152736186981201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.850250005722046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5191419124603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9653328061103821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4426642656326294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4303087294101715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4691109657287598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.2981880009174347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6796214580535889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.016237497329712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.831328809261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4976661205291748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6027759313583374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1193156242370605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9852769374847412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6645898818969727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.9109926223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3484523296356201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.694117784500122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.423279047012329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8485309481620789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4184650182724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3088884353637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4420990943908691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0209593772888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.325864553451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7325084209442139
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8315035104751587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6349092721939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.582019567489624
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8329448699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7595263719558716
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9921271204948425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6033120155334473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8828776478767395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.590954065322876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9440957307815552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.791540503501892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7623207569122314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4686009883880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5371512174606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.30158546566963196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6052840948104858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1638243198394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7947628498077393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37558022141456604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1411571502685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.022094249725342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3143916130065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0141592025756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5068724155426025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3796137571334839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33991557359695435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6190791726112366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4440841674804688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33557868003845215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4128634929656982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3152402341365814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5611568689346313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5962826013565063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7822790741920471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8995947241783142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6002585887908936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3725796937942505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9470542073249817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7568663954734802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.364181399345398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7816372513771057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6615431904792786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.182289958000183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525961875915527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4505038857460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7678974866867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.441716194152832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36058124899864197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.630165696144104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4562393426895142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.506563425064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38083410263061523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3658680319786072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0327008962631226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43407607078552246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.459306001663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3932439088821411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6754852533340454
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8358919620513916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5056216716766357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4820255637168884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4749283790588379
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7593108415603638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.743271827697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9413435459136963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7256156206130981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5547402501106262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3483039140701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0171505212783813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8487038016319275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0536229610443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.024095058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8916586637496948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3168137073516846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8048022985458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9364317655563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.25417861342430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.471035361289978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39883390069007874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3970581591129303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6560418605804443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5522211790084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.037818431854248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5147007703781128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4688371419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.776477575302124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7752277851104736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4194839298725128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5674996376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.748849630355835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5422723293304443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0087414979934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6352989673614502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4034584164619446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4862627983093262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33216485381126404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6454908847808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5834897756576538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806429862976074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4325815439224243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8176931738853455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2766270637512207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6152154207229614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.803326964378357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9721006751060486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1709693670272827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42735350131988525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44303062558174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2706246376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8076298236846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37811046838760376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6209900379180908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3623678386211395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5528593063354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8402389287948608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.27438557147979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6488789319992065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.766560435295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3483111262321472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3457176983356476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5576494932174683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6925314664840698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9608209133148193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3185371458530426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8533501625061035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1820383071899414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4348174035549164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44428813457489014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.35642480850219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4095457792282104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.871975064277649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8774486780166626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -8.94467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7446633577346802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4677308797836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5511165857315063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2349612712860107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3714141249656677
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.318714141845703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6699780225753784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9147355556488037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4492369294166565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48813357949256897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6329214572906494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.350758671760559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.396630883216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.289009690284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2764984369277954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8369369506835938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3934462070465088
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.701889157295227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3223935067653656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5999150276184082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3410261869430542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4400861263275146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5132399201393127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5058635473251343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3855220079421997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4215404689311981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3612127304077148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6083650588989258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2455861568450928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8372429013252258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4173688590526581
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9631250500679016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42400556802749634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34365949034690857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5572525262832642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7292947769165039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2185604572296143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3553961515426636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6380313038825989
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4140013456344604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.431483507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.844842791557312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3535386621952057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3877326250076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.909652590751648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4671926498413086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2623006105422974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5620595216751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9110459685325623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4048643708229065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8975734114646912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3655409812927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8402953147888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.409817636013031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5923820734024048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7475221157073975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4543396234512329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.912071704864502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3156977891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2250535488128662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.631591558456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.646581768989563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4797163009643555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4988901615142822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36645352840423584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6319339275360107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44217947125434875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8523507118225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0633587837219238
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9021666049957275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5462956428527832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5180813074111938
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 1.969524621963501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43561726808547974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4519610404968262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9641892910003662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5626134872436523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8171894550323486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2674262523651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1141176223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.343743085861206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4975016117095947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4230313301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3624853789806366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.581705093383789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5514329671859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2336595058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4651262760162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.207026958465576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0675575733184814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.678705096244812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8709770441055298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.78672194480896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6527504324913025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4087531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.454714834690094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.359023779630661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.624739646911621
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2922104597091675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7778360843658447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9602226614952087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7052345871925354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.54694664478302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2220600843429565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3225919306278229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.0894467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5304155349731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9254564046859741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3384650945663452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6911219358444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5387501120567322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4672236740589142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4480328559875488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3695451021194458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8472764492034912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4737792015075684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9335030913352966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.380415678024292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525693655014038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3590857982635498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.124477505683899
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7617459297180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5887134671211243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.411700963973999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4484045505523682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8072712421417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7005855441093445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5570918321609497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.574650764465332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5770521759986877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.053511381149292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2599449157714844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9776142835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.33055579662323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.187203288078308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7780948877334595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.388612151145935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.281343460083008
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7893273234367371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3912134170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8086865544319153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36148396134376526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4490581452846527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4606316089630127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5621498823165894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.273608684539795
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7539523839950562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5583831071853638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5928282737731934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8767104744911194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.069256067276001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3397226929664612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5382811427116394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4081785678863525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3774745464324951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5473474264144897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.309560775756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.350023865699768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6363584995269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3734915256500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.293305516242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.066418170928955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2759373188018799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5898023843765259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.590487539768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6483043432235718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3522222936153412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.30297553539276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.58695387840271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5840164422988892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7659361958503723
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9909963011741638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.973022937774658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2291538715362549
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4540241956710815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2766863107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3411065936088562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7916204333305359
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4798316955566406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9912086129188538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9218015670776367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35378360748291016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5327728986740112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43188759684562683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6654280424118042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6154849529266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5720614194869995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6070395708084106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5449575185775757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6053451299667358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.101793885231018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7024364471435547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6182469725608826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35556259751319885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8366860747337341
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6519403457641602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3287557363510132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6011383533477783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7916303873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0357041358947754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7320536375045776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.404215693473816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3776668310165405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8610575199127197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4470429420471191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6325455904006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.697548508644104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8324694633483887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4766221046447754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9916785359382629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8694920539855957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8591225147247314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9790499210357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36103832721710205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5666847229003906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6452176570892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9692248702049255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8506127595901489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7282983064651489
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5662693977355957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9414695501327515
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.951157569885254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.248195767402649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5625933408737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4605814218521118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5605360269546509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2263574600219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46429362893104553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3248788118362427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7831666469573975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9982535243034363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3873984813690186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7534872889518738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.973092257976532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1923158168792725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7712101936340332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5476447343826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7701787948608398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8508366942405701
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6474873423576355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2758302688598633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6466280221939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7049657106399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0277777910232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9372411966323853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8598870635032654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36949893832206726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0751525163650513
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6455182433128357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3430333733558655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4215089082717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2522201538085938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9830251932144165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5814486742019653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3161511421203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.958745002746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7243138551712036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2279835939407349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6352370977401733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6244856119155884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8044031858444214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6507783532142639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3549010753631592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3004438877105713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0530575513839722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2242422103881836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1931145191192627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4554169178009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8089470863342285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7472400665283203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5755934715270996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7411458492279053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9105552434921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7591139078140259
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240227222442627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5428098440170288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.416059136390686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.983664631843567
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4947848320007324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8311291933059692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2440540790557861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7747422456741333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8776134848594666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5651540756225586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.314098834991455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5513032674789429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0685786008834839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9753953218460083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36607053875923157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6117483377456665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8601417541503906
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6246640086174011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46010473370552063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.778961181640625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7782412767410278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0963342189788818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8907800912857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2277108430862427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5662935376167297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5375593304634094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6936481595039368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4691215753555298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.369267702102661
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6866347193717957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7923498749732971
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39244136214256287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3634698390960693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9561967849731445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5890932083129883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.026397705078125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4254555702209473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7874561548233032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7469468116760254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4407490491867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3112237453460693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7553021311759949
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5666875839233398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4483460187911987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.242274284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4917632341384888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.329352617263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.564487099647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5757402777671814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4171109199523926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.768534541130066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4232549667358398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2706772089004517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.524516224861145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9748821258544922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9445191621780396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9760985374450684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.959242343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6696187853813171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4393952488899231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8292482495307922
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3256639838218689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7752286791801453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7584422826766968
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34339699149131775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.049720525741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0445361137390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6251012086868286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6337851285934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5846513509750366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8383848071098328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665283203125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.613127589225769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4032970666885376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.032787322998047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6836762428283691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0930427312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.602206289768219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40391701459884644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6361476182937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4984357357025146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.020409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4136589765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6197787523269653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2603447437286377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8677461743354797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3405438661575317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7947578430175781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.498225450515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7567972540855408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40421614050865173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6181024312973022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6814073324203491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.554452657699585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40048500895500183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7844595909118652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3444618880748749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.648613452911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7238084673881531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7599031925201416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6682225465774536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9916396737098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0316218137741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7349162101745605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4160849153995514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.046588897705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4680882692337036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5389569997787476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.523488163948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1724622249603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5932625532150269
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6133649945259094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7381593585014343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8131476640701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7404406070709229
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.502879023551941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.723722219467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8513426780700684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7608850002288818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36228635907173157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.460625648498535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46377524733543396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9112712144851685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37428730726242065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8137677907943726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.774492084980011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7290637493133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9876068830490112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8302468657493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.630181074142456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3319461345672607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37820398807525635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4043717682361603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8327845931053162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.589990258216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2241770029067993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.726132869720459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9696403741836548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.420113444328308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42013639211654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.022377610206604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7886150479316711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7741034030914307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3838563859462738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5815989971160889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3396495580673218
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9090932607650757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8162602186203003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6388137340545654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8022213578224182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.781329870223999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5751490592956543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.514626681804657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9523767232894897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5373958349227905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7270320057868958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6762096881866455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6332402229309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0732475519180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.390141487121582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6437234282493591
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7800247073173523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3846752643585205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6272174715995789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.32163405418396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.21129482984542847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.586179256439209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.439563125371933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7514451742172241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7747652530670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3448299467563629
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1582159996032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3333988189697266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4907824993133545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.449400782585144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3993699550628662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6002771258354187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5693511366844177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.075145959854126
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8610941767692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6308350563049316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6118475794792175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40158379077911377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4185619354248047
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4516199827194214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4913980960845947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1416707038879395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2561633586883545
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4476773738861084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4030587077140808
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.792053699493408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0734412670135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6421562433242798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4663999676704407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7276452779769897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.900641918182373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6028015613555908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5982259511947632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41110679507255554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42027005553245544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4864838123321533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8907454013824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4111502170562744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.402340292930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35686028003692627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4147472381591797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.711576223373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.565181016921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34108027815818787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6795551776885986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.459181547164917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9577229022979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.720046877861023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3579804301261902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.710608184337616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5166860222816467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0126800537109375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4282106161117554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0174788236618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3575717806816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.145258665084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6340231895446777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0162248611450195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.894523024559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066911220550537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8523602485656738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7606009244918823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4030592739582062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8628367185592651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8843993544578552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0885932445526123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4752001762390137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228547692298889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4205107688903809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40471845865249634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5405693054199219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7219409942626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3984529674053192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4736682176589966
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.385885238647461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4563218355178833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.53666090965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5685760378837585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.502248764038086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5457289814949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5136020183563232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.582065224647522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44763943552970886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4712122678756714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3374873399734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39908716082572937
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6467806100845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7112005352973938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.760057270526886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3830558061599731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.035431146621704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1556732654571533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6359806060791016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6238471269607544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6754226088523865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44491109251976013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9576798677444458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8882998824119568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3478754162788391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7091346979141235
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.797820806503296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.471960186958313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2690750360488892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2584301233291626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5179097652435303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8126142024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2850993871688843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7425968647003174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5905001163482666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0296159982681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7395321726799011
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1934101581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9719692468643188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.540339708328247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4056015014648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37755054235458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3144259452819824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7010229229927063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.695639967918396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.625328540802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7701222896575928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3357555866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34285277128219604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2610690593719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9252875447273254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.765299916267395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.27059587836265564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8080669045448303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8122939467430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35386863350868225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4072418212890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0425870418548584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0595438480377197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7225139141082764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3023816645145416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1698124408721924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3084279000759125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7919227480888367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.61929452419281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.48201322555542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38836196064949036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4177500009536743
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.374098539352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8500826358795166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5755051970481873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.63107168674469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4874016046524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.18831729888916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9936830997467041
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7584209442138672
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4840253591537476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40633466839790344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2058695554733276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9875727891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7834821939468384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4526822566986084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4287527799606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47897839546203613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5593293905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4308011531829834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8850980401039124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1583575010299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8101300001144409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4568876624107361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671314239501953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.413914203643799
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.777758777141571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.581936240196228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8805257081985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4165905714035034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4278037548065186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.709323763847351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8062381148338318
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8662177324295044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2431646585464478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32090693712234497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1993480920791626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8030465841293335
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44416192173957825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46804165840148926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6568792462348938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6819027662277222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6498901844024658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4870329797267914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7563793659210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32796046137809753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2558026313781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5461276769638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4293005466461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6783961057662964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9525097608566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4169980585575104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4640733599662781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6674404144287109
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5445137023925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3757299780845642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.806933045387268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9193013906478882
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7794812917709351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6636112928390503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6968878507614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.239403486251831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5807002782821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8288334608078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5476038455963135
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7121552228927612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9406863451004028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8727741241455078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5393797159194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.670717477798462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7055889964103699
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8123695254325867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0323017835617065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6784793138504028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5541542768478394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4863721132278442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0457321405410767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6689491271972656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7940341234207153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8808707594871521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6813220977783203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8378325700759888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6422590017318726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2940657138824463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5769797563552856
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4056125283241272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3504929542541504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9757694005966187
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7179198861122131
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2444254159927368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5013307332992554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.394135057926178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7560781240463257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8117061853408813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7573834657669067
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6213895082473755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.680708646774292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.544503927230835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32722094655036926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9832199811935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.547769546508789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9905620217323303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0742263793945312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7622519731521606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.568966031074524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7302920818328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9679303169250488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.720924437046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39446204900741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6024677753448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0523303747177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7188951969146729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.527730941772461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6405904293060303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7018992900848389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2593106031417847
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5845354795455933
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36652061343193054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7697646617889404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5608266592025757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37268394231796265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2879669964313507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2996288239955902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.883037805557251
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3182452917098999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8097995519638062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3573378324508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2692341804504395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6440826654434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4112391471862793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46555259823799133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2531660795211792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6321699619293213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5699089765548706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4974125623703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.843003988265991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4671661853790283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6082481145858765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.136867880821228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7297768592834473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2299137115478516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8741278648376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5880756378173828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.569166660308838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9450560808181763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.363964706659317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5386524200439453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1393203735351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6136868000030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5992317199707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41891348361968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4569891691207886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.230286955833435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8288721442222595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.837200403213501
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.08139705657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49234095215797424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6916118264198303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5557929873466492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2041568756103516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3897384405136108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.152139902114868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3860384225845337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4305590093135834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.262101411819458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9838213324546814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0077457427978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6422637701034546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5494192838668823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.969398021697998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43133479356765747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5759233236312866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39665690064430237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.973946571350098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3681704998016357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8551101684570312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6760246157646179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7670828104019165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48388850688934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6996278762817383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4923441410064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7102556228637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2234066724777222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5795189142227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.680446207523346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2711927890777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6743077039718628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.084286689758301
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7951791286468506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5469071865081787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2535070180892944
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4069277048110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4128808975219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6487712860107422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5913000106811523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9559862613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.482662558555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.799980878829956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7452152967453003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4577124118804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9192917346954346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37367063760757446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.24222993850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4666450023651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6006174087524414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9657319188117981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3255058526992798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2268807888031006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8958691358566284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.570173978805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5881142616271973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1903181076049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5951499938964844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9628352522850037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3326478600502014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8753592371940613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.758183479309082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.32107675075531006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9254249334335327
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.23130206763744354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7254481911659241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.152736186981201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.850250005722046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5191419124603271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9653328061103821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4426642656326294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4303087294101715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4691109657287598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.2981880009174347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6796214580535889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.016237497329712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.831328809261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4976661205291748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6027759313583374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1193156242370605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9852769374847412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6645898818969727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.9109926223754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3484523296356201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.694117784500122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.423279047012329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8485309481620789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4184650182724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3088884353637695
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4420990943908691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0209593772888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.325864553451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7325084209442139
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8315035104751587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6349092721939087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.582019567489624
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8329448699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7595263719558716
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9921271204948425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6033120155334473
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8828776478767395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.590954065322876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9440957307815552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.791540503501892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7623207569122314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4686009883880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5371512174606323
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.30158546566963196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6052840948104858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1638243198394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7947628498077393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37558022141456604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1411571502685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.022094249725342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3143916130065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0141592025756836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5068724155426025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3796137571334839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33991557359695435
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6190791726112366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4440841674804688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33557868003845215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4128634929656982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3152402341365814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5611568689346313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5962826013565063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7822790741920471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8995947241783142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6002585887908936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3725796937942505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9470542073249817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7568663954734802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.364181399345398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7816372513771057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6615431904792786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.182289958000183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525961875915527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4505038857460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7678974866867065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.441716194152832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36058124899864197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.630165696144104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4562393426895142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.506563425064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38083410263061523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3658680319786072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0327008962631226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43407607078552246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.459306001663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3932439088821411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6754852533340454
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8358919620513916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5056216716766357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4820255637168884
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4749283790588379
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7593108415603638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.743271827697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9413435459136963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7256156206130981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5547402501106262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3483039140701294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0171505212783813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8487038016319275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0536229610443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.024095058441162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8916586637496948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3168137073516846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8048022985458374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9364317655563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.25417861342430115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.471035361289978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39883390069007874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3970581591129303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6560418605804443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5522211790084839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.037818431854248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5147007703781128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4688371419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.776477575302124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7752277851104736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4194839298725128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5674996376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.748849630355835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5422723293304443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0087414979934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6352989673614502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4034584164619446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4862627983093262
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33216485381126404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6454908847808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5834897756576538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806429862976074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4325815439224243
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8176931738853455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2766270637512207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6152154207229614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.803326964378357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9721006751060486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1709693670272827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42735350131988525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44303062558174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2706246376037598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8076298236846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37811046838760376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6209900379180908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3623678386211395
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5528593063354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8402389287948608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.27438557147979736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6488789319992065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.766560435295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3483111262321472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3457176983356476
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5576494932174683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6925314664840698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9608209133148193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3185371458530426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8533501625061035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1820383071899414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4348174035549164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44428813457489014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.35642480850219727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4095457792282104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.871975064277649
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8774486780166626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 8.94467830657959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7446633577346802
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4677308797836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5511165857315063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2349612712860107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3714141249656677
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.318714141845703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6699780225753784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9147355556488037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4492369294166565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48813357949256897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6329214572906494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.350758671760559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.396630883216858
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.289009690284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2764984369277954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8369369506835938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3934462070465088
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.701889157295227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3223935067653656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5999150276184082
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3410261869430542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4400861263275146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5132399201393127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5058635473251343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3855220079421997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4215404689311981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3612127304077148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6083650588989258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2455861568450928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8372429013252258
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4173688590526581
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9631250500679016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42400556802749634
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34365949034690857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5572525262832642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7292947769165039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2185604572296143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3553961515426636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6380313038825989
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4140013456344604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.431483507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.844842791557312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3535386621952057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3877326250076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.909652590751648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4671926498413086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2623006105422974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5620595216751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9110459685325623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4048643708229065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8975734114646912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3655409812927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8402953147888184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.409817636013031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5923820734024048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7475221157073975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4543396234512329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.912071704864502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3156977891921997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2250535488128662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.631591558456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.646581768989563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4797163009643555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4988901615142822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36645352840423584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6319339275360107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44217947125434875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8523507118225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0633587837219238
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9021666049957275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5462956428527832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5180813074111938
- ]
- ]
- ]
- ]
- ]
- },
- "/features/features.17/conv/conv.0/conv.0.2/Clip/fq_output_0": {
- "input_low": [
- [
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008057242957875133
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008015529601834714
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008027985459193587
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0007999999797903001
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008006702410057187
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0007999999797903001
- ]
- ],
- [
- [
- -0.0008056444930844009
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0876803770661354
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03191417083144188
- ]
- ],
- [
- [
- 0.49151936173439026
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014102596789598465
- ]
- ],
- [
- [
- 0.03859509527683258
- ]
- ],
- [
- [
- 0.11237303912639618
- ]
- ],
- [
- [
- 0.0018704384565353394
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0055714622139930725
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.8573315143585205
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026903383433818817
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12199955433607101
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04156064987182617
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0018381103873252869
- ]
- ],
- [
- [
- 2.4178848266601562
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9326454997062683
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0009965538047254086
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008687850087881088
- ]
- ],
- [
- [
- 0.03754870593547821
- ]
- ],
- [
- [
- 0.03696507588028908
- ]
- ],
- [
- [
- 0.04763723909854889
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.056357890367507935
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06563419848680496
- ]
- ],
- [
- [
- 2.228466510772705
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007778812199831009
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.081711545586586
- ]
- ],
- [
- [
- 0.10452877730131149
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00490211695432663
- ]
- ],
- [
- [
- 0.053270123898983
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.017510585486888885
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.4302749633789062
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.042598214000463486
- ]
- ],
- [
- [
- 2.0517616271972656
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05491345375776291
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22872185707092285
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.060083724558353424
- ]
- ],
- [
- [
- 0.030804116278886795
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.3018352687358856
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9216848611831665
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19743651151657104
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01545850932598114
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.024051211774349213
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0020355451852083206
- ]
- ],
- [
- [
- 0.30564337968826294
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01823197305202484
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03442609682679176
- ]
- ],
- [
- [
- 0.0011637932620942593
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07052917778491974
- ]
- ],
- [
- [
- 0.032380908727645874
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00937722623348236
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21315939724445343
- ]
- ],
- [
- [
- 0.011462196707725525
- ]
- ],
- [
- [
- 0.010587990283966064
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03370252251625061
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19759809970855713
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1525823473930359
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00571122020483017
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.004519723355770111
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04217040166258812
- ]
- ],
- [
- [
- 0.018376268446445465
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002071946859359741
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0013750060461461544
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0696713924407959
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.020306173712015152
- ]
- ],
- [
- [
- 0.03250164911150932
- ]
- ],
- [
- [
- 0.13099707663059235
- ]
- ],
- [
- [
- 0.0014173913514241576
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.039924539625644684
- ]
- ],
- [
- [
- 3.2175955772399902
- ]
- ],
- [
- [
- 0.061071522533893585
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04077465087175369
- ]
- ],
- [
- [
- 0.07793756574392319
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04153702035546303
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.022230712696909904
- ]
- ],
- [
- [
- 0.01831999607384205
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0037620440125465393
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.057783570140600204
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.15497125685214996
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23033593595027924
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0643458217382431
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6196128129959106
- ]
- ],
- [
- [
- 0.012946851551532745
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.016605280339717865
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026959210634231567
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11972109228372574
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007368739694356918
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.20329928398132324
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06200093775987625
- ]
- ],
- [
- [
- 0.003315528854727745
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008920499123632908
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.029229257255792618
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008551502600312233
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08723852038383484
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03015708737075329
- ]
- ],
- [
- [
- 0.015312127768993378
- ]
- ],
- [
- [
- 0.03912536799907684
- ]
- ],
- [
- [
- 0.3459475636482239
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026596631854772568
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12247934192419052
- ]
- ],
- [
- [
- 1.7452658414840698
- ]
- ],
- [
- [
- 0.021938582882285118
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03671751543879509
- ]
- ],
- [
- [
- 0.04656782001256943
- ]
- ],
- [
- [
- 0.05446742847561836
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.4009292125701904
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09641088545322418
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0872088298201561
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11568212509155273
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014660932123661041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.042493175715208054
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03422956541180611
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1260416507720947
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1475799083709717
- ]
- ],
- [
- [
- 0.15291249752044678
- ]
- ],
- [
- [
- 0.010137654840946198
- ]
- ],
- [
- [
- 0.05192377418279648
- ]
- ],
- [
- [
- 0.007479280233383179
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008585784584283829
- ]
- ],
- [
- [
- 0.0013570329174399376
- ]
- ],
- [
- [
- 0.018310047686100006
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.049290262162685394
- ]
- ],
- [
- [
- 0.032287247478961945
- ]
- ],
- [
- [
- 0.006833925843238831
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.173100546002388
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.051795247942209244
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07084520906209946
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0134222507476807
- ]
- ],
- [
- [
- 0.01142449676990509
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.661414623260498
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9562209844589233
- ]
- ],
- [
- [
- 0.0038150139153003693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.10223449766635895
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012940369546413422
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05567626655101776
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.311877727508545
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03783133625984192
- ]
- ],
- [
- [
- 2.500059127807617
- ]
- ],
- [
- [
- 1.9176889657974243
- ]
- ],
- [
- [
- 0.05389409884810448
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04698418453335762
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.167404890060425
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.021541856229305267
- ]
- ],
- [
- [
- 0.09829752892255783
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002226121723651886
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.013722982257604599
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014270041137933731
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002109851688146591
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5473377704620361
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007049456238746643
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.025792913511395454
- ]
- ],
- [
- [
- 0.00788377970457077
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00813060998916626
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22770559787750244
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.039982303977012634
- ]
- ],
- [
- [
- 0.40426334738731384
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19533060491085052
- ]
- ],
- [
- [
- 0.9605689644813538
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14193254709243774
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6930371522903442
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.0725637674331665
- ]
- ],
- [
- [
- 0.001022284384816885
- ]
- ],
- [
- [
- 1.9917352199554443
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1133604496717453
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5872494578361511
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012186504900455475
- ]
- ],
- [
- [
- 0.07284211367368698
- ]
- ],
- [
- [
- 0.13223278522491455
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04215312376618385
- ]
- ],
- [
- [
- 0.09034445881843567
- ]
- ],
- [
- [
- 0.025654006749391556
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0446431003510952
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.24281229078769684
- ]
- ],
- [
- [
- 0.016872361302375793
- ]
- ],
- [
- [
- 0.0012399852275848389
- ]
- ],
- [
- [
- 0.13858915865421295
- ]
- ],
- [
- [
- 0.0426848828792572
- ]
- ],
- [
- [
- 0.005672784522175789
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.074756920337677
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1704009771347046
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04656733199954033
- ]
- ],
- [
- [
- 0.09901445358991623
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02233925461769104
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03812789171934128
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011029468849301338
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.7141376733779907
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08617240935564041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0632937103509903
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.13649097084999084
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0034039542078971863
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12888973951339722
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05647002160549164
- ]
- ],
- [
- [
- 0.03375750780105591
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.020812083035707474
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19695577025413513
- ]
- ],
- [
- [
- 3.394392967224121
- ]
- ],
- [
- [
- 0.09743352234363556
- ]
- ],
- [
- [
- 0.011445567011833191
- ]
- ],
- [
- [
- 0.024420537054538727
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0032638907432556152
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04352591186761856
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.836713433265686
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.3982930183410645
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.010230056941509247
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.6723055839538574
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.022398103028535843
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02536514773964882
- ]
- ],
- [
- [
- 0.0015925318002700806
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1344383955001831
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2732059955596924
- ]
- ],
- [
- [
- 1.257373571395874
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.1028642654418945
- ]
- ],
- [
- [
- 0.030194103717803955
- ]
- ],
- [
- [
- 1.8018629550933838
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012994956225156784
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011659334413707256
- ]
- ],
- [
- [
- 0.020993690937757492
- ]
- ],
- [
- [
- 0.047577809542417526
- ]
- ],
- [
- [
- 0.004482554271817207
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.023320868611335754
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.1825013160705566
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01730024814605713
- ]
- ],
- [
- [
- 2.040971517562866
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.17486387491226196
- ]
- ],
- [
- [
- 0.04581276327371597
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05184002220630646
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.004983462393283844
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.127590149641037
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08234993368387222
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9543012380599976
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.017645513638854027
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.184520423412323
- ]
- ],
- [
- [
- 0.006161525845527649
- ]
- ],
- [
- [
- 0.1008877232670784
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.33276909589767456
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.060180068016052246
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026561342179775238
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.800042986869812
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05978558957576752
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1153151988983154
- ]
- ],
- [
- [
- 0.03487877547740936
- ]
- ],
- [
- [
- 0.003986254334449768
- ]
- ],
- [
- [
- 0.12933968007564545
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1068945825099945
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.003981921821832657
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014078645035624504
- ]
- ],
- [
- [
- 0.002357136458158493
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06072789058089256
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09981304407119751
- ]
- ],
- [
- [
- 0.24655428528785706
- ]
- ],
- [
- [
- 0.01260516606271267
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.5484532117843628
- ]
- ],
- [
- [
- 0.7212513089179993
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.005697466433048248
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.33237388730049133
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14230990409851074
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02555614709854126
- ]
- ],
- [
- [
- 2.5896871089935303
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.9116319417953491
- ]
- ],
- [
- [
- 0.0742558166384697
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.029437944293022156
- ]
- ],
- [
- [
- 2.0394952297210693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011249154806137085
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06968239694833755
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.7607043981552124
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05204354226589203
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07820098102092743
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.030920589342713356
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.053804293274879456
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2240801751613617
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.25153276324272156
- ]
- ],
- [
- [
- 0.50864577293396
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6956763863563538
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0424880981445312
- ]
- ],
- [
- [
- 2.3360836505889893
- ]
- ],
- [
- [
- 0.10077007859945297
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05242086574435234
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0184243805706501
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.768265962600708
- ]
- ],
- [
- [
- 0.05858661234378815
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0010715596145018935
- ]
- ],
- [
- [
- 0.0015557273291051388
- ]
- ],
- [
- [
- 0.03737913817167282
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21995630860328674
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01732093095779419
- ]
- ],
- [
- [
- 0.09289613366127014
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.13658636808395386
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.005670774728059769
- ]
- ],
- [
- [
- 1.0019519329071045
- ]
- ],
- [
- [
- 0.002069871872663498
- ]
- ],
- [
- [
- 0.9830914735794067
- ]
- ],
- [
- [
- 0.17485138773918152
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.39092251658439636
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7064986228942871
- ]
- ],
- [
- [
- 0.47206297516822815
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.036829497665166855
- ]
- ],
- [
- [
- 0.10467304289340973
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.041021332144737244
- ]
- ],
- [
- [
- 1.0620193481445312
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.028495175763964653
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0020609796047210693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.018293321132659912
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03152928501367569
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008057242957875133
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008015529601834714
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008027985459193587
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0007999999797903001
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008006702410057187
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0007999999797903001
- ]
- ],
- [
- [
- -0.0008056444930844009
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0876803770661354
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03191417083144188
- ]
- ],
- [
- [
- 0.49151936173439026
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014102596789598465
- ]
- ],
- [
- [
- 0.03859509527683258
- ]
- ],
- [
- [
- 0.11237303912639618
- ]
- ],
- [
- [
- 0.0018704384565353394
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0055714622139930725
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.8573315143585205
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026903383433818817
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12199955433607101
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04156064987182617
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0018381103873252869
- ]
- ],
- [
- [
- 2.4178848266601562
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9326454997062683
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0009965538047254086
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008687850087881088
- ]
- ],
- [
- [
- 0.03754870593547821
- ]
- ],
- [
- [
- 0.03696507588028908
- ]
- ],
- [
- [
- 0.04763723909854889
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.056357890367507935
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06563419848680496
- ]
- ],
- [
- [
- 2.228466510772705
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007778812199831009
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.081711545586586
- ]
- ],
- [
- [
- 0.10452877730131149
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00490211695432663
- ]
- ],
- [
- [
- 0.053270123898983
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.017510585486888885
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.4302749633789062
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.042598214000463486
- ]
- ],
- [
- [
- 2.0517616271972656
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05491345375776291
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22872185707092285
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.060083724558353424
- ]
- ],
- [
- [
- 0.030804116278886795
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.3018352687358856
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9216848611831665
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19743651151657104
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01545850932598114
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.024051211774349213
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0020355451852083206
- ]
- ],
- [
- [
- 0.30564337968826294
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01823197305202484
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03442609682679176
- ]
- ],
- [
- [
- 0.0011637932620942593
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07052917778491974
- ]
- ],
- [
- [
- 0.032380908727645874
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00937722623348236
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21315939724445343
- ]
- ],
- [
- [
- 0.011462196707725525
- ]
- ],
- [
- [
- 0.010587990283966064
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03370252251625061
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19759809970855713
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1525823473930359
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00571122020483017
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.004519723355770111
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04217040166258812
- ]
- ],
- [
- [
- 0.018376268446445465
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002071946859359741
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0013750060461461544
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0696713924407959
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.020306173712015152
- ]
- ],
- [
- [
- 0.03250164911150932
- ]
- ],
- [
- [
- 0.13099707663059235
- ]
- ],
- [
- [
- 0.0014173913514241576
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.039924539625644684
- ]
- ],
- [
- [
- 3.2175955772399902
- ]
- ],
- [
- [
- 0.061071522533893585
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04077465087175369
- ]
- ],
- [
- [
- 0.07793756574392319
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04153702035546303
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.022230712696909904
- ]
- ],
- [
- [
- 0.01831999607384205
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0037620440125465393
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.057783570140600204
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.15497125685214996
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23033593595027924
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0643458217382431
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6196128129959106
- ]
- ],
- [
- [
- 0.012946851551532745
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.016605280339717865
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026959210634231567
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11972109228372574
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007368739694356918
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.20329928398132324
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06200093775987625
- ]
- ],
- [
- [
- 0.003315528854727745
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008920499123632908
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.029229257255792618
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008551502600312233
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08723852038383484
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03015708737075329
- ]
- ],
- [
- [
- 0.015312127768993378
- ]
- ],
- [
- [
- 0.03912536799907684
- ]
- ],
- [
- [
- 0.3459475636482239
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026596631854772568
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12247934192419052
- ]
- ],
- [
- [
- 1.7452658414840698
- ]
- ],
- [
- [
- 0.021938582882285118
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03671751543879509
- ]
- ],
- [
- [
- 0.04656782001256943
- ]
- ],
- [
- [
- 0.05446742847561836
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.4009292125701904
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09641088545322418
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0872088298201561
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11568212509155273
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014660932123661041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.042493175715208054
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03422956541180611
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1260416507720947
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1475799083709717
- ]
- ],
- [
- [
- 0.15291249752044678
- ]
- ],
- [
- [
- 0.010137654840946198
- ]
- ],
- [
- [
- 0.05192377418279648
- ]
- ],
- [
- [
- 0.007479280233383179
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.008585784584283829
- ]
- ],
- [
- [
- 0.0013570329174399376
- ]
- ],
- [
- [
- 0.018310047686100006
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.049290262162685394
- ]
- ],
- [
- [
- 0.032287247478961945
- ]
- ],
- [
- [
- 0.006833925843238831
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.173100546002388
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.051795247942209244
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07084520906209946
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0134222507476807
- ]
- ],
- [
- [
- 0.01142449676990509
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.661414623260498
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9562209844589233
- ]
- ],
- [
- [
- 0.0038150139153003693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.10223449766635895
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012940369546413422
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05567626655101776
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.311877727508545
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03783133625984192
- ]
- ],
- [
- [
- 2.500059127807617
- ]
- ],
- [
- [
- 1.9176889657974243
- ]
- ],
- [
- [
- 0.05389409884810448
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04698418453335762
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.167404890060425
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.021541856229305267
- ]
- ],
- [
- [
- 0.09829752892255783
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002226121723651886
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.013722982257604599
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014270041137933731
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.002109851688146591
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5473377704620361
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.007049456238746643
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.025792913511395454
- ]
- ],
- [
- [
- 0.00788377970457077
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.00813060998916626
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22770559787750244
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.039982303977012634
- ]
- ],
- [
- [
- 0.40426334738731384
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19533060491085052
- ]
- ],
- [
- [
- 0.9605689644813538
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14193254709243774
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6930371522903442
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.0725637674331665
- ]
- ],
- [
- [
- 0.001022284384816885
- ]
- ],
- [
- [
- 1.9917352199554443
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1133604496717453
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5872494578361511
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012186504900455475
- ]
- ],
- [
- [
- 0.07284211367368698
- ]
- ],
- [
- [
- 0.13223278522491455
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04215312376618385
- ]
- ],
- [
- [
- 0.09034445881843567
- ]
- ],
- [
- [
- 0.025654006749391556
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0446431003510952
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.24281229078769684
- ]
- ],
- [
- [
- 0.016872361302375793
- ]
- ],
- [
- [
- 0.0012399852275848389
- ]
- ],
- [
- [
- 0.13858915865421295
- ]
- ],
- [
- [
- 0.0426848828792572
- ]
- ],
- [
- [
- 0.005672784522175789
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.074756920337677
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1704009771347046
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04656733199954033
- ]
- ],
- [
- [
- 0.09901445358991623
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02233925461769104
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03812789171934128
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011029468849301338
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.7141376733779907
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08617240935564041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0632937103509903
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.13649097084999084
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0034039542078971863
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.12888973951339722
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05647002160549164
- ]
- ],
- [
- [
- 0.03375750780105591
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.020812083035707474
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.19695577025413513
- ]
- ],
- [
- [
- 3.394392967224121
- ]
- ],
- [
- [
- 0.09743352234363556
- ]
- ],
- [
- [
- 0.011445567011833191
- ]
- ],
- [
- [
- 0.024420537054538727
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0032638907432556152
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.04352591186761856
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.836713433265686
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.3982930183410645
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.010230056941509247
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.6723055839538574
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.022398103028535843
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02536514773964882
- ]
- ],
- [
- [
- 0.0015925318002700806
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1344383955001831
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2732059955596924
- ]
- ],
- [
- [
- 1.257373571395874
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.1028642654418945
- ]
- ],
- [
- [
- 0.030194103717803955
- ]
- ],
- [
- [
- 1.8018629550933838
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.012994956225156784
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011659334413707256
- ]
- ],
- [
- [
- 0.020993690937757492
- ]
- ],
- [
- [
- 0.047577809542417526
- ]
- ],
- [
- [
- 0.004482554271817207
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.023320868611335754
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.1825013160705566
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01730024814605713
- ]
- ],
- [
- [
- 2.040971517562866
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.17486387491226196
- ]
- ],
- [
- [
- 0.04581276327371597
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05184002220630646
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.004983462393283844
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.127590149641037
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.08234993368387222
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9543012380599976
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.017645513638854027
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.184520423412323
- ]
- ],
- [
- [
- 0.006161525845527649
- ]
- ],
- [
- [
- 0.1008877232670784
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.33276909589767456
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.060180068016052246
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.026561342179775238
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.800042986869812
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05978558957576752
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1153151988983154
- ]
- ],
- [
- [
- 0.03487877547740936
- ]
- ],
- [
- [
- 0.003986254334449768
- ]
- ],
- [
- [
- 0.12933968007564545
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.1068945825099945
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.003981921821832657
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.014078645035624504
- ]
- ],
- [
- [
- 0.002357136458158493
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06072789058089256
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09981304407119751
- ]
- ],
- [
- [
- 0.24655428528785706
- ]
- ],
- [
- [
- 0.01260516606271267
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.5484532117843628
- ]
- ],
- [
- [
- 0.7212513089179993
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.005697466433048248
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.33237388730049133
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14230990409851074
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.02555614709854126
- ]
- ],
- [
- [
- 2.5896871089935303
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.9116319417953491
- ]
- ],
- [
- [
- 0.0742558166384697
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.029437944293022156
- ]
- ],
- [
- [
- 2.0394952297210693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.011249154806137085
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.06968239694833755
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.7607043981552124
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05204354226589203
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07820098102092743
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.030920589342713356
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.053804293274879456
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2240801751613617
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.25153276324272156
- ]
- ],
- [
- [
- 0.50864577293396
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6956763863563538
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0424880981445312
- ]
- ],
- [
- [
- 2.3360836505889893
- ]
- ],
- [
- [
- 0.10077007859945297
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.05242086574435234
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0184243805706501
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.768265962600708
- ]
- ],
- [
- [
- 0.05858661234378815
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0010715596145018935
- ]
- ],
- [
- [
- 0.0015557273291051388
- ]
- ],
- [
- [
- 0.03737913817167282
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21995630860328674
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.01732093095779419
- ]
- ],
- [
- [
- 0.09289613366127014
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.13658636808395386
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.005670774728059769
- ]
- ],
- [
- [
- 1.0019519329071045
- ]
- ],
- [
- [
- 0.002069871872663498
- ]
- ],
- [
- [
- 0.9830914735794067
- ]
- ],
- [
- [
- 0.17485138773918152
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.39092251658439636
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7064986228942871
- ]
- ],
- [
- [
- 0.47206297516822815
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.036829497665166855
- ]
- ],
- [
- [
- 0.10467304289340973
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.041021332144737244
- ]
- ],
- [
- [
- 1.0620193481445312
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.028495175763964653
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0020609796047210693
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.018293321132659912
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.03152928501367569
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ]
- ]
- ]
- },
- "/features/features.17/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.027616968378424644
- ]
- ]
- ],
- [
- [
- [
- -0.0530647374689579
- ]
- ]
- ],
- [
- [
- [
- -0.039037179201841354
- ]
- ]
- ],
- [
- [
- [
- -0.03589509055018425
- ]
- ]
- ],
- [
- [
- [
- -0.030653556808829308
- ]
- ]
- ],
- [
- [
- [
- -0.039838146418333054
- ]
- ]
- ],
- [
- [
- [
- -0.03743419796228409
- ]
- ]
- ],
- [
- [
- [
- -0.03647410124540329
- ]
- ]
- ],
- [
- [
- [
- -0.04025127366185188
- ]
- ]
- ],
- [
- [
- [
- -0.04448855668306351
- ]
- ]
- ],
- [
- [
- [
- -0.05869768187403679
- ]
- ]
- ],
- [
- [
- [
- -0.05831205099821091
- ]
- ]
- ],
- [
- [
- [
- -0.03918950632214546
- ]
- ]
- ],
- [
- [
- [
- -0.03166942298412323
- ]
- ]
- ],
- [
- [
- [
- -0.03254866600036621
- ]
- ]
- ],
- [
- [
- [
- -0.03690903261303902
- ]
- ]
- ],
- [
- [
- [
- -0.03573523834347725
- ]
- ]
- ],
- [
- [
- [
- -0.042106591165065765
- ]
- ]
- ],
- [
- [
- [
- -0.04072827473282814
- ]
- ]
- ],
- [
- [
- [
- -0.03590909764170647
- ]
- ]
- ],
- [
- [
- [
- -0.034544918686151505
- ]
- ]
- ],
- [
- [
- [
- -0.037732988595962524
- ]
- ]
- ],
- [
- [
- [
- -0.03669963777065277
- ]
- ]
- ],
- [
- [
- [
- -0.04676153510808945
- ]
- ]
- ],
- [
- [
- [
- -0.08379193395376205
- ]
- ]
- ],
- [
- [
- [
- -0.044293180108070374
- ]
- ]
- ],
- [
- [
- [
- -0.038472749292850494
- ]
- ]
- ],
- [
- [
- [
- -0.033899370580911636
- ]
- ]
- ],
- [
- [
- [
- -0.031266964972019196
- ]
- ]
- ],
- [
- [
- [
- -0.03392372280359268
- ]
- ]
- ],
- [
- [
- [
- -0.02585524320602417
- ]
- ]
- ],
- [
- [
- [
- -0.03908507153391838
- ]
- ]
- ],
- [
- [
- [
- -0.07240371406078339
- ]
- ]
- ],
- [
- [
- [
- -0.001318512368015945
- ]
- ]
- ],
- [
- [
- [
- -0.03685875982046127
- ]
- ]
- ],
- [
- [
- [
- -0.042306628078222275
- ]
- ]
- ],
- [
- [
- [
- -0.033369794487953186
- ]
- ]
- ],
- [
- [
- [
- -0.0403863824903965
- ]
- ]
- ],
- [
- [
- [
- -0.04263676702976227
- ]
- ]
- ],
- [
- [
- [
- -0.06768425554037094
- ]
- ]
- ],
- [
- [
- [
- -0.04602654650807381
- ]
- ]
- ],
- [
- [
- [
- -0.030592402443289757
- ]
- ]
- ],
- [
- [
- [
- -0.03437398374080658
- ]
- ]
- ],
- [
- [
- [
- -0.034407537430524826
- ]
- ]
- ],
- [
- [
- [
- -0.0335475392639637
- ]
- ]
- ],
- [
- [
- [
- -0.06372398138046265
- ]
- ]
- ],
- [
- [
- [
- -0.03924441337585449
- ]
- ]
- ],
- [
- [
- [
- -0.06466720998287201
- ]
- ]
- ],
- [
- [
- [
- -0.029706697911024094
- ]
- ]
- ],
- [
- [
- [
- -0.035307832062244415
- ]
- ]
- ],
- [
- [
- [
- -0.04933519661426544
- ]
- ]
- ],
- [
- [
- [
- -0.04103545472025871
- ]
- ]
- ],
- [
- [
- [
- -0.035182882100343704
- ]
- ]
- ],
- [
- [
- [
- -0.035908665508031845
- ]
- ]
- ],
- [
- [
- [
- -0.03710686042904854
- ]
- ]
- ],
- [
- [
- [
- -0.02980029210448265
- ]
- ]
- ],
- [
- [
- [
- -0.042527440935373306
- ]
- ]
- ],
- [
- [
- [
- -0.0370374396443367
- ]
- ]
- ],
- [
- [
- [
- -0.038971416652202606
- ]
- ]
- ],
- [
- [
- [
- -0.03145742416381836
- ]
- ]
- ],
- [
- [
- [
- -0.03242490068078041
- ]
- ]
- ],
- [
- [
- [
- -0.03573028743267059
- ]
- ]
- ],
- [
- [
- [
- -0.031025152653455734
- ]
- ]
- ],
- [
- [
- [
- -0.036063823848962784
- ]
- ]
- ],
- [
- [
- [
- -0.029943861067295074
- ]
- ]
- ],
- [
- [
- [
- -0.03726590424776077
- ]
- ]
- ],
- [
- [
- [
- -0.03551599383354187
- ]
- ]
- ],
- [
- [
- [
- -0.03273800387978554
- ]
- ]
- ],
- [
- [
- [
- -0.03837944194674492
- ]
- ]
- ],
- [
- [
- [
- -0.06597312539815903
- ]
- ]
- ],
- [
- [
- [
- -0.056382060050964355
- ]
- ]
- ],
- [
- [
- [
- -0.037078727036714554
- ]
- ]
- ],
- [
- [
- [
- -0.03269140049815178
- ]
- ]
- ],
- [
- [
- [
- -0.031640104949474335
- ]
- ]
- ],
- [
- [
- [
- -0.035206206142902374
- ]
- ]
- ],
- [
- [
- [
- -0.02918895147740841
- ]
- ]
- ],
- [
- [
- [
- -0.03296859934926033
- ]
- ]
- ],
- [
- [
- [
- -0.02776334248483181
- ]
- ]
- ],
- [
- [
- [
- -0.038346122950315475
- ]
- ]
- ],
- [
- [
- [
- -0.13185124099254608
- ]
- ]
- ],
- [
- [
- [
- -0.035449329763650894
- ]
- ]
- ],
- [
- [
- [
- -0.0382140576839447
- ]
- ]
- ],
- [
- [
- [
- -0.03644914925098419
- ]
- ]
- ],
- [
- [
- [
- -0.040693141520023346
- ]
- ]
- ],
- [
- [
- [
- -0.03847957402467728
- ]
- ]
- ],
- [
- [
- [
- -0.04129726439714432
- ]
- ]
- ],
- [
- [
- [
- -0.032721541821956635
- ]
- ]
- ],
- [
- [
- [
- -0.06397366523742676
- ]
- ]
- ],
- [
- [
- [
- -0.03541135787963867
- ]
- ]
- ],
- [
- [
- [
- -0.028400147333741188
- ]
- ]
- ],
- [
- [
- [
- -0.03122294507920742
- ]
- ]
- ],
- [
- [
- [
- -0.07238046079874039
- ]
- ]
- ],
- [
- [
- [
- -0.05590430274605751
- ]
- ]
- ],
- [
- [
- [
- -0.031627435237169266
- ]
- ]
- ],
- [
- [
- [
- -0.0783526673913002
- ]
- ]
- ],
- [
- [
- [
- -0.06162497028708458
- ]
- ]
- ],
- [
- [
- [
- -0.03184327855706215
- ]
- ]
- ],
- [
- [
- [
- -0.034841544926166534
- ]
- ]
- ],
- [
- [
- [
- -0.043654315173625946
- ]
- ]
- ],
- [
- [
- [
- -0.035193152725696564
- ]
- ]
- ],
- [
- [
- [
- -0.046486977487802505
- ]
- ]
- ],
- [
- [
- [
- -0.03893642872571945
- ]
- ]
- ],
- [
- [
- [
- -0.032380517572164536
- ]
- ]
- ],
- [
- [
- [
- -0.03541776165366173
- ]
- ]
- ],
- [
- [
- [
- -0.06673543155193329
- ]
- ]
- ],
- [
- [
- [
- -0.03960069641470909
- ]
- ]
- ],
- [
- [
- [
- -0.05024051293730736
- ]
- ]
- ],
- [
- [
- [
- -0.032752200961112976
- ]
- ]
- ],
- [
- [
- [
- -0.029434340074658394
- ]
- ]
- ],
- [
- [
- [
- -0.06655780225992203
- ]
- ]
- ],
- [
- [
- [
- -0.04042933136224747
- ]
- ]
- ],
- [
- [
- [
- -0.061406515538692474
- ]
- ]
- ],
- [
- [
- [
- -0.04283922538161278
- ]
- ]
- ],
- [
- [
- [
- -0.03731854259967804
- ]
- ]
- ],
- [
- [
- [
- -0.03296734392642975
- ]
- ]
- ],
- [
- [
- [
- -0.03025551326572895
- ]
- ]
- ],
- [
- [
- [
- -0.030198169872164726
- ]
- ]
- ],
- [
- [
- [
- -0.03319168463349342
- ]
- ]
- ],
- [
- [
- [
- -0.03713120520114899
- ]
- ]
- ],
- [
- [
- [
- -0.041741691529750824
- ]
- ]
- ],
- [
- [
- [
- -0.039743442088365555
- ]
- ]
- ],
- [
- [
- [
- -0.059548135846853256
- ]
- ]
- ],
- [
- [
- [
- -0.03580949082970619
- ]
- ]
- ],
- [
- [
- [
- -0.03992390260100365
- ]
- ]
- ],
- [
- [
- [
- -0.04293249174952507
- ]
- ]
- ],
- [
- [
- [
- -0.05820776894688606
- ]
- ]
- ],
- [
- [
- [
- -0.038250263780355453
- ]
- ]
- ],
- [
- [
- [
- -0.02628682740032673
- ]
- ]
- ],
- [
- [
- [
- -0.03370650112628937
- ]
- ]
- ],
- [
- [
- [
- -0.0418529286980629
- ]
- ]
- ],
- [
- [
- [
- -0.0350838229060173
- ]
- ]
- ],
- [
- [
- [
- -0.039126504212617874
- ]
- ]
- ],
- [
- [
- [
- -0.025574631989002228
- ]
- ]
- ],
- [
- [
- [
- -0.03207508847117424
- ]
- ]
- ],
- [
- [
- [
- -0.03578626736998558
- ]
- ]
- ],
- [
- [
- [
- -0.04208718240261078
- ]
- ]
- ],
- [
- [
- [
- -0.03357081115245819
- ]
- ]
- ],
- [
- [
- [
- -0.03778370842337608
- ]
- ]
- ],
- [
- [
- [
- -0.04973386973142624
- ]
- ]
- ],
- [
- [
- [
- -0.037573762238025665
- ]
- ]
- ],
- [
- [
- [
- -0.025094740092754364
- ]
- ]
- ],
- [
- [
- [
- -0.08208134770393372
- ]
- ]
- ],
- [
- [
- [
- -0.033963512629270554
- ]
- ]
- ],
- [
- [
- [
- -0.03686705231666565
- ]
- ]
- ],
- [
- [
- [
- -0.04185941442847252
- ]
- ]
- ],
- [
- [
- [
- -0.03385307267308235
- ]
- ]
- ],
- [
- [
- [
- -0.03537223860621452
- ]
- ]
- ],
- [
- [
- [
- -0.03300606086850166
- ]
- ]
- ],
- [
- [
- [
- -0.027304597198963165
- ]
- ]
- ],
- [
- [
- [
- -0.04091409593820572
- ]
- ]
- ],
- [
- [
- [
- -0.04222351685166359
- ]
- ]
- ],
- [
- [
- [
- -0.03818219155073166
- ]
- ]
- ],
- [
- [
- [
- -0.03380357846617699
- ]
- ]
- ],
- [
- [
- [
- -0.028451940044760704
- ]
- ]
- ],
- [
- [
- [
- -0.033317022025585175
- ]
- ]
- ],
- [
- [
- [
- -0.052942320704460144
- ]
- ]
- ],
- [
- [
- [
- -0.03452914208173752
- ]
- ]
- ],
- [
- [
- [
- -0.03669885918498039
- ]
- ]
- ],
- [
- [
- [
- -0.04293540120124817
- ]
- ]
- ],
- [
- [
- [
- -0.03791869059205055
- ]
- ]
- ],
- [
- [
- [
- -0.0327424630522728
- ]
- ]
- ],
- [
- [
- [
- -0.03331146761775017
- ]
- ]
- ],
- [
- [
- [
- -0.039880260825157166
- ]
- ]
- ],
- [
- [
- [
- -0.036329932510852814
- ]
- ]
- ],
- [
- [
- [
- -0.040265731513500214
- ]
- ]
- ],
- [
- [
- [
- -0.03345780819654465
- ]
- ]
- ],
- [
- [
- [
- -0.047255437821149826
- ]
- ]
- ],
- [
- [
- [
- -0.05114135518670082
- ]
- ]
- ],
- [
- [
- [
- -0.034694965928792953
- ]
- ]
- ],
- [
- [
- [
- -0.029019782319664955
- ]
- ]
- ],
- [
- [
- [
- -0.039482105523347855
- ]
- ]
- ],
- [
- [
- [
- -0.039883602410554886
- ]
- ]
- ],
- [
- [
- [
- -0.047125205397605896
- ]
- ]
- ],
- [
- [
- [
- -0.03315503150224686
- ]
- ]
- ],
- [
- [
- [
- -0.06052902713418007
- ]
- ]
- ],
- [
- [
- [
- -0.03200286254286766
- ]
- ]
- ],
- [
- [
- [
- -0.048093538731336594
- ]
- ]
- ],
- [
- [
- [
- -0.06116608902812004
- ]
- ]
- ],
- [
- [
- [
- -0.03220059722661972
- ]
- ]
- ],
- [
- [
- [
- -0.034642450511455536
- ]
- ]
- ],
- [
- [
- [
- -0.03780777007341385
- ]
- ]
- ],
- [
- [
- [
- -0.030568616464734077
- ]
- ]
- ],
- [
- [
- [
- -0.03160896152257919
- ]
- ]
- ],
- [
- [
- [
- -0.03924040496349335
- ]
- ]
- ],
- [
- [
- [
- -0.03592246398329735
- ]
- ]
- ],
- [
- [
- [
- -0.03756722807884216
- ]
- ]
- ],
- [
- [
- [
- -0.03603632003068924
- ]
- ]
- ],
- [
- [
- [
- -0.051258061081171036
- ]
- ]
- ],
- [
- [
- [
- -0.03205950930714607
- ]
- ]
- ],
- [
- [
- [
- -0.03254719451069832
- ]
- ]
- ],
- [
- [
- [
- -0.03436034172773361
- ]
- ]
- ],
- [
- [
- [
- -0.033242519944906235
- ]
- ]
- ],
- [
- [
- [
- -0.030306532979011536
- ]
- ]
- ],
- [
- [
- [
- -0.029331017285585403
- ]
- ]
- ],
- [
- [
- [
- -0.050272222608327866
- ]
- ]
- ],
- [
- [
- [
- -0.03367631882429123
- ]
- ]
- ],
- [
- [
- [
- -0.031178971752524376
- ]
- ]
- ],
- [
- [
- [
- -0.034512732177972794
- ]
- ]
- ],
- [
- [
- [
- -0.03322600573301315
- ]
- ]
- ],
- [
- [
- [
- -0.04220220819115639
- ]
- ]
- ],
- [
- [
- [
- -0.050839610397815704
- ]
- ]
- ],
- [
- [
- [
- -0.04620416462421417
- ]
- ]
- ],
- [
- [
- [
- -0.06644801050424576
- ]
- ]
- ],
- [
- [
- [
- -0.03092820942401886
- ]
- ]
- ],
- [
- [
- [
- -0.03293071314692497
- ]
- ]
- ],
- [
- [
- [
- -0.03656827285885811
- ]
- ]
- ],
- [
- [
- [
- -0.04048057645559311
- ]
- ]
- ],
- [
- [
- [
- -0.041733864694833755
- ]
- ]
- ],
- [
- [
- [
- -0.03774850443005562
- ]
- ]
- ],
- [
- [
- [
- -0.03264128044247627
- ]
- ]
- ],
- [
- [
- [
- -0.034176673740148544
- ]
- ]
- ],
- [
- [
- [
- -0.03341341018676758
- ]
- ]
- ],
- [
- [
- [
- -0.03735431656241417
- ]
- ]
- ],
- [
- [
- [
- -0.03956747055053711
- ]
- ]
- ],
- [
- [
- [
- -0.03177338093519211
- ]
- ]
- ],
- [
- [
- [
- -0.03713758662343025
- ]
- ]
- ],
- [
- [
- [
- -0.0628010481595993
- ]
- ]
- ],
- [
- [
- [
- -0.032783228904008865
- ]
- ]
- ],
- [
- [
- [
- -0.03855343163013458
- ]
- ]
- ],
- [
- [
- [
- -0.0414663664996624
- ]
- ]
- ],
- [
- [
- [
- -0.03646911680698395
- ]
- ]
- ],
- [
- [
- [
- -0.033654533326625824
- ]
- ]
- ],
- [
- [
- [
- -0.03340587764978409
- ]
- ]
- ],
- [
- [
- [
- -0.0329565554857254
- ]
- ]
- ],
- [
- [
- [
- -0.027662716805934906
- ]
- ]
- ],
- [
- [
- [
- -0.027366789057850838
- ]
- ]
- ],
- [
- [
- [
- -0.04144876077771187
- ]
- ]
- ],
- [
- [
- [
- -0.039641886949539185
- ]
- ]
- ],
- [
- [
- [
- -0.0431605726480484
- ]
- ]
- ],
- [
- [
- [
- -0.03584709018468857
- ]
- ]
- ],
- [
- [
- [
- -0.038403600454330444
- ]
- ]
- ],
- [
- [
- [
- -0.04188688099384308
- ]
- ]
- ],
- [
- [
- [
- -0.03198779746890068
- ]
- ]
- ],
- [
- [
- [
- -0.05518458038568497
- ]
- ]
- ],
- [
- [
- [
- -0.029979974031448364
- ]
- ]
- ],
- [
- [
- [
- -0.04568280652165413
- ]
- ]
- ],
- [
- [
- [
- -0.038186460733413696
- ]
- ]
- ],
- [
- [
- [
- -0.04580250382423401
- ]
- ]
- ],
- [
- [
- [
- -0.03924376145005226
- ]
- ]
- ],
- [
- [
- [
- -0.029565850272774696
- ]
- ]
- ],
- [
- [
- [
- -0.03199578821659088
- ]
- ]
- ],
- [
- [
- [
- -0.03992621600627899
- ]
- ]
- ],
- [
- [
- [
- -0.045633893460035324
- ]
- ]
- ],
- [
- [
- [
- -0.04349004849791527
- ]
- ]
- ],
- [
- [
- [
- -0.03889603540301323
- ]
- ]
- ],
- [
- [
- [
- -0.03464590013027191
- ]
- ]
- ],
- [
- [
- [
- -0.035488031804561615
- ]
- ]
- ],
- [
- [
- [
- -0.043248120695352554
- ]
- ]
- ],
- [
- [
- [
- -0.037834931164979935
- ]
- ]
- ],
- [
- [
- [
- -0.045288894325494766
- ]
- ]
- ],
- [
- [
- [
- -0.05533774942159653
- ]
- ]
- ],
- [
- [
- [
- -0.037075307220220566
- ]
- ]
- ],
- [
- [
- [
- -0.03716319054365158
- ]
- ]
- ],
- [
- [
- [
- -0.03078501857817173
- ]
- ]
- ],
- [
- [
- [
- -0.030628351494669914
- ]
- ]
- ],
- [
- [
- [
- -0.03583904355764389
- ]
- ]
- ],
- [
- [
- [
- -0.029445936903357506
- ]
- ]
- ],
- [
- [
- [
- -0.04016609117388725
- ]
- ]
- ],
- [
- [
- [
- -0.03953938186168671
- ]
- ]
- ],
- [
- [
- [
- -0.03640396147966385
- ]
- ]
- ],
- [
- [
- [
- -0.044447578489780426
- ]
- ]
- ],
- [
- [
- [
- -0.05050224810838699
- ]
- ]
- ],
- [
- [
- [
- -0.03498444706201553
- ]
- ]
- ],
- [
- [
- [
- -0.062107305973768234
- ]
- ]
- ],
- [
- [
- [
- -0.02925701253116131
- ]
- ]
- ],
- [
- [
- [
- -0.03288936987519264
- ]
- ]
- ],
- [
- [
- [
- -0.07241234183311462
- ]
- ]
- ],
- [
- [
- [
- -0.03259049728512764
- ]
- ]
- ],
- [
- [
- [
- -0.02964949421584606
- ]
- ]
- ],
- [
- [
- [
- -0.04181177541613579
- ]
- ]
- ],
- [
- [
- [
- -0.03697993978857994
- ]
- ]
- ],
- [
- [
- [
- -0.033927902579307556
- ]
- ]
- ],
- [
- [
- [
- -0.03363431245088577
- ]
- ]
- ],
- [
- [
- [
- -0.03606482222676277
- ]
- ]
- ],
- [
- [
- [
- -0.035203978419303894
- ]
- ]
- ],
- [
- [
- [
- -0.038813285529613495
- ]
- ]
- ],
- [
- [
- [
- -0.045425012707710266
- ]
- ]
- ],
- [
- [
- [
- -0.05796200409531593
- ]
- ]
- ],
- [
- [
- [
- -0.028005672618746758
- ]
- ]
- ],
- [
- [
- [
- -0.043457381427288055
- ]
- ]
- ],
- [
- [
- [
- -0.07537607848644257
- ]
- ]
- ],
- [
- [
- [
- -0.0320654921233654
- ]
- ]
- ],
- [
- [
- [
- -0.029459914192557335
- ]
- ]
- ],
- [
- [
- [
- -0.042944371700286865
- ]
- ]
- ],
- [
- [
- [
- -0.02788151055574417
- ]
- ]
- ],
- [
- [
- [
- -0.03439117223024368
- ]
- ]
- ],
- [
- [
- [
- -0.03546833246946335
- ]
- ]
- ],
- [
- [
- [
- -0.030581049621105194
- ]
- ]
- ],
- [
- [
- [
- -0.03856305405497551
- ]
- ]
- ],
- [
- [
- [
- -0.037279874086380005
- ]
- ]
- ],
- [
- [
- [
- -0.03286551311612129
- ]
- ]
- ],
- [
- [
- [
- -0.04092445597052574
- ]
- ]
- ],
- [
- [
- [
- -0.05101185664534569
- ]
- ]
- ],
- [
- [
- [
- -0.04073019325733185
- ]
- ]
- ],
- [
- [
- [
- -0.04229498654603958
- ]
- ]
- ],
- [
- [
- [
- -0.04096459969878197
- ]
- ]
- ],
- [
- [
- [
- -0.055894091725349426
- ]
- ]
- ],
- [
- [
- [
- -0.0356546975672245
- ]
- ]
- ],
- [
- [
- [
- -0.06266120076179504
- ]
- ]
- ],
- [
- [
- [
- -0.04905158281326294
- ]
- ]
- ],
- [
- [
- [
- -0.043701086193323135
- ]
- ]
- ],
- [
- [
- [
- -0.0482654795050621
- ]
- ]
- ],
- [
- [
- [
- -0.034845076501369476
- ]
- ]
- ],
- [
- [
- [
- -0.033355314284563065
- ]
- ]
- ],
- [
- [
- [
- -0.02565440535545349
- ]
- ]
- ],
- [
- [
- [
- -0.0499095544219017
- ]
- ]
- ],
- [
- [
- [
- -0.06536515802145004
- ]
- ]
- ],
- [
- [
- [
- -0.05017659068107605
- ]
- ]
- ],
- [
- [
- [
- -0.040875498205423355
- ]
- ]
- ],
- [
- [
- [
- -0.032254889607429504
- ]
- ]
- ],
- [
- [
- [
- -0.027056077495217323
- ]
- ]
- ],
- [
- [
- [
- -0.03683463856577873
- ]
- ]
- ],
- [
- [
- [
- -0.03712119907140732
- ]
- ]
- ],
- [
- [
- [
- -0.051835138350725174
- ]
- ]
- ],
- [
- [
- [
- -0.04251693934202194
- ]
- ]
- ],
- [
- [
- [
- -0.030167631804943085
- ]
- ]
- ],
- [
- [
- [
- -0.0455087311565876
- ]
- ]
- ],
- [
- [
- [
- -0.035167865455150604
- ]
- ]
- ],
- [
- [
- [
- -0.03396354615688324
- ]
- ]
- ],
- [
- [
- [
- -0.04180384427309036
- ]
- ]
- ],
- [
- [
- [
- -0.03496631979942322
- ]
- ]
- ],
- [
- [
- [
- -0.054565057158470154
- ]
- ]
- ],
- [
- [
- [
- -0.04563112184405327
- ]
- ]
- ],
- [
- [
- [
- -0.06690599024295807
- ]
- ]
- ],
- [
- [
- [
- -0.03510822728276253
- ]
- ]
- ],
- [
- [
- [
- -0.1025245413184166
- ]
- ]
- ],
- [
- [
- [
- -0.03200192004442215
- ]
- ]
- ],
- [
- [
- [
- -0.03865857794880867
- ]
- ]
- ],
- [
- [
- [
- -0.04680703207850456
- ]
- ]
- ],
- [
- [
- [
- -0.03826065734028816
- ]
- ]
- ],
- [
- [
- [
- -0.03217551112174988
- ]
- ]
- ],
- [
- [
- [
- -0.0353720486164093
- ]
- ]
- ],
- [
- [
- [
- -0.03524888679385185
- ]
- ]
- ],
- [
- [
- [
- -0.054701801389455795
- ]
- ]
- ],
- [
- [
- [
- -0.06050343066453934
- ]
- ]
- ],
- [
- [
- [
- -0.030564799904823303
- ]
- ]
- ],
- [
- [
- [
- -0.04061434417963028
- ]
- ]
- ],
- [
- [
- [
- -0.03820385783910751
- ]
- ]
- ],
- [
- [
- [
- -0.03137297183275223
- ]
- ]
- ],
- [
- [
- [
- -0.03018290176987648
- ]
- ]
- ],
- [
- [
- [
- -0.034544937312603
- ]
- ]
- ],
- [
- [
- [
- -0.05858512967824936
- ]
- ]
- ],
- [
- [
- [
- -0.037210818380117416
- ]
- ]
- ],
- [
- [
- [
- -0.03873147442936897
- ]
- ]
- ],
- [
- [
- [
- -0.03468357026576996
- ]
- ]
- ],
- [
- [
- [
- -0.05646161362528801
- ]
- ]
- ],
- [
- [
- [
- -0.03869690001010895
- ]
- ]
- ],
- [
- [
- [
- -0.039614710956811905
- ]
- ]
- ],
- [
- [
- [
- -0.03844744712114334
- ]
- ]
- ],
- [
- [
- [
- -0.03755709156394005
- ]
- ]
- ],
- [
- [
- [
- -0.04222511500120163
- ]
- ]
- ],
- [
- [
- [
- -0.03467971086502075
- ]
- ]
- ],
- [
- [
- [
- -0.04558422043919563
- ]
- ]
- ],
- [
- [
- [
- -0.038851067423820496
- ]
- ]
- ],
- [
- [
- [
- -0.05871186777949333
- ]
- ]
- ],
- [
- [
- [
- -0.037491947412490845
- ]
- ]
- ],
- [
- [
- [
- -0.04478742927312851
- ]
- ]
- ],
- [
- [
- [
- -0.04191657900810242
- ]
- ]
- ],
- [
- [
- [
- -0.03810896351933479
- ]
- ]
- ],
- [
- [
- [
- -0.03494725376367569
- ]
- ]
- ],
- [
- [
- [
- -0.028281066566705704
- ]
- ]
- ],
- [
- [
- [
- -0.03362400829792023
- ]
- ]
- ],
- [
- [
- [
- -0.040158942341804504
- ]
- ]
- ],
- [
- [
- [
- -0.03781546279788017
- ]
- ]
- ],
- [
- [
- [
- -0.05227505788207054
- ]
- ]
- ],
- [
- [
- [
- -0.053443793207407
- ]
- ]
- ],
- [
- [
- [
- -0.04495891183614731
- ]
- ]
- ],
- [
- [
- [
- -0.07577130943536758
- ]
- ]
- ],
- [
- [
- [
- -0.036623526364564896
- ]
- ]
- ],
- [
- [
- [
- -0.044337671250104904
- ]
- ]
- ],
- [
- [
- [
- -0.045028913766145706
- ]
- ]
- ],
- [
- [
- [
- -0.03656711429357529
- ]
- ]
- ],
- [
- [
- [
- -0.06586629897356033
- ]
- ]
- ],
- [
- [
- [
- -0.037347570061683655
- ]
- ]
- ],
- [
- [
- [
- -0.03627286106348038
- ]
- ]
- ],
- [
- [
- [
- -0.03502471372485161
- ]
- ]
- ],
- [
- [
- [
- -0.03486394137144089
- ]
- ]
- ],
- [
- [
- [
- -0.06753896176815033
- ]
- ]
- ],
- [
- [
- [
- -0.04147156700491905
- ]
- ]
- ],
- [
- [
- [
- -0.03868725895881653
- ]
- ]
- ],
- [
- [
- [
- -0.04142829775810242
- ]
- ]
- ],
- [
- [
- [
- -0.038004085421562195
- ]
- ]
- ],
- [
- [
- [
- -0.032040853053331375
- ]
- ]
- ],
- [
- [
- [
- -0.03667396306991577
- ]
- ]
- ],
- [
- [
- [
- -0.056314025074243546
- ]
- ]
- ],
- [
- [
- [
- -0.03003465197980404
- ]
- ]
- ],
- [
- [
- [
- -0.02690730057656765
- ]
- ]
- ],
- [
- [
- [
- -0.04464823752641678
- ]
- ]
- ],
- [
- [
- [
- -0.03623577207326889
- ]
- ]
- ],
- [
- [
- [
- -0.03491956740617752
- ]
- ]
- ],
- [
- [
- [
- -0.024354903027415276
- ]
- ]
- ],
- [
- [
- [
- -0.06594093888998032
- ]
- ]
- ],
- [
- [
- [
- -0.05639723688364029
- ]
- ]
- ],
- [
- [
- [
- -0.03724018856883049
- ]
- ]
- ],
- [
- [
- [
- -0.046436816453933716
- ]
- ]
- ],
- [
- [
- [
- -0.044450316578149796
- ]
- ]
- ],
- [
- [
- [
- -0.03475113958120346
- ]
- ]
- ],
- [
- [
- [
- -0.03232420235872269
- ]
- ]
- ],
- [
- [
- [
- -0.04301406070590019
- ]
- ]
- ],
- [
- [
- [
- -0.035926997661590576
- ]
- ]
- ],
- [
- [
- [
- -0.05586111545562744
- ]
- ]
- ],
- [
- [
- [
- -0.06060151010751724
- ]
- ]
- ],
- [
- [
- [
- -0.04344186931848526
- ]
- ]
- ],
- [
- [
- [
- -0.04946756362915039
- ]
- ]
- ],
- [
- [
- [
- -0.06633355468511581
- ]
- ]
- ],
- [
- [
- [
- -0.0370912067592144
- ]
- ]
- ],
- [
- [
- [
- -0.0830923467874527
- ]
- ]
- ],
- [
- [
- [
- -0.06716733425855637
- ]
- ]
- ],
- [
- [
- [
- -0.03640762344002724
- ]
- ]
- ],
- [
- [
- [
- -0.029078008607029915
- ]
- ]
- ],
- [
- [
- [
- -0.05142870172858238
- ]
- ]
- ],
- [
- [
- [
- -0.034790147095918655
- ]
- ]
- ],
- [
- [
- [
- -0.032619770616292953
- ]
- ]
- ],
- [
- [
- [
- -0.044493772089481354
- ]
- ]
- ],
- [
- [
- [
- -0.039537183940410614
- ]
- ]
- ],
- [
- [
- [
- -0.05771690607070923
- ]
- ]
- ],
- [
- [
- [
- -0.04061007872223854
- ]
- ]
- ],
- [
- [
- [
- -0.0516488216817379
- ]
- ]
- ],
- [
- [
- [
- -0.03870105370879173
- ]
- ]
- ],
- [
- [
- [
- -0.03722478821873665
- ]
- ]
- ],
- [
- [
- [
- -0.03233969211578369
- ]
- ]
- ],
- [
- [
- [
- -0.06962307542562485
- ]
- ]
- ],
- [
- [
- [
- -0.04285705089569092
- ]
- ]
- ],
- [
- [
- [
- -0.043680913746356964
- ]
- ]
- ],
- [
- [
- [
- -0.030660370364785194
- ]
- ]
- ],
- [
- [
- [
- -0.0317404679954052
- ]
- ]
- ],
- [
- [
- [
- -0.029225680977106094
- ]
- ]
- ],
- [
- [
- [
- -0.03536823019385338
- ]
- ]
- ],
- [
- [
- [
- -0.0382460355758667
- ]
- ]
- ],
- [
- [
- [
- -0.05842171236872673
- ]
- ]
- ],
- [
- [
- [
- -0.03329859673976898
- ]
- ]
- ],
- [
- [
- [
- -0.029414990916848183
- ]
- ]
- ],
- [
- [
- [
- -0.035236094146966934
- ]
- ]
- ],
- [
- [
- [
- -0.02771538868546486
- ]
- ]
- ],
- [
- [
- [
- -0.049047231674194336
- ]
- ]
- ],
- [
- [
- [
- -0.0381055548787117
- ]
- ]
- ],
- [
- [
- [
- -0.04481690004467964
- ]
- ]
- ],
- [
- [
- [
- -0.04134872928261757
- ]
- ]
- ],
- [
- [
- [
- -0.033979594707489014
- ]
- ]
- ],
- [
- [
- [
- -0.038507986813783646
- ]
- ]
- ],
- [
- [
- [
- -0.046335987746715546
- ]
- ]
- ],
- [
- [
- [
- -0.019298044964671135
- ]
- ]
- ],
- [
- [
- [
- -0.02755465731024742
- ]
- ]
- ],
- [
- [
- [
- -0.042554765939712524
- ]
- ]
- ],
- [
- [
- [
- -0.034139253199100494
- ]
- ]
- ],
- [
- [
- [
- -0.03714199364185333
- ]
- ]
- ],
- [
- [
- [
- -0.04167892411351204
- ]
- ]
- ],
- [
- [
- [
- -0.040669627487659454
- ]
- ]
- ],
- [
- [
- [
- -0.046107515692710876
- ]
- ]
- ],
- [
- [
- [
- -0.05236728861927986
- ]
- ]
- ],
- [
- [
- [
- -0.04518190026283264
- ]
- ]
- ],
- [
- [
- [
- -0.037280455231666565
- ]
- ]
- ],
- [
- [
- [
- -0.0756673514842987
- ]
- ]
- ],
- [
- [
- [
- -0.036026690155267715
- ]
- ]
- ],
- [
- [
- [
- -0.03412859886884689
- ]
- ]
- ],
- [
- [
- [
- -0.04209030792117119
- ]
- ]
- ],
- [
- [
- [
- -0.03164730966091156
- ]
- ]
- ],
- [
- [
- [
- -0.032094553112983704
- ]
- ]
- ],
- [
- [
- [
- -0.03810131177306175
- ]
- ]
- ],
- [
- [
- [
- -0.02771913819015026
- ]
- ]
- ],
- [
- [
- [
- -0.03357061743736267
- ]
- ]
- ],
- [
- [
- [
- -0.03505298122763634
- ]
- ]
- ],
- [
- [
- [
- -0.06212979182600975
- ]
- ]
- ],
- [
- [
- [
- -0.03581423684954643
- ]
- ]
- ],
- [
- [
- [
- -0.030637452378869057
- ]
- ]
- ],
- [
- [
- [
- -0.04505368694663048
- ]
- ]
- ],
- [
- [
- [
- -0.038616590201854706
- ]
- ]
- ],
- [
- [
- [
- -0.03270649537444115
- ]
- ]
- ],
- [
- [
- [
- -0.035444460809230804
- ]
- ]
- ],
- [
- [
- [
- -0.03683904558420181
- ]
- ]
- ],
- [
- [
- [
- -0.03164767101407051
- ]
- ]
- ],
- [
- [
- [
- -0.048190128058195114
- ]
- ]
- ],
- [
- [
- [
- -0.04172312468290329
- ]
- ]
- ],
- [
- [
- [
- -0.03968976065516472
- ]
- ]
- ],
- [
- [
- [
- -0.036394502967596054
- ]
- ]
- ],
- [
- [
- [
- -0.036441124975681305
- ]
- ]
- ],
- [
- [
- [
- -0.03075777366757393
- ]
- ]
- ],
- [
- [
- [
- -0.042357344180345535
- ]
- ]
- ],
- [
- [
- [
- -0.05425402894616127
- ]
- ]
- ],
- [
- [
- [
- -0.04285291209816933
- ]
- ]
- ],
- [
- [
- [
- -0.038705483078956604
- ]
- ]
- ],
- [
- [
- [
- -0.040995024144649506
- ]
- ]
- ],
- [
- [
- [
- -0.05983557179570198
- ]
- ]
- ],
- [
- [
- [
- -0.05537007376551628
- ]
- ]
- ],
- [
- [
- [
- -0.04154233634471893
- ]
- ]
- ],
- [
- [
- [
- -0.04117961600422859
- ]
- ]
- ],
- [
- [
- [
- -0.03946366906166077
- ]
- ]
- ],
- [
- [
- [
- -0.031163813546299934
- ]
- ]
- ],
- [
- [
- [
- -0.04542817175388336
- ]
- ]
- ],
- [
- [
- [
- -0.0907159224152565
- ]
- ]
- ],
- [
- [
- [
- -0.03212418407201767
- ]
- ]
- ],
- [
- [
- [
- -0.03939588740468025
- ]
- ]
- ],
- [
- [
- [
- -0.0390639528632164
- ]
- ]
- ],
- [
- [
- [
- -0.06853688508272171
- ]
- ]
- ],
- [
- [
- [
- -0.037842147052288055
- ]
- ]
- ],
- [
- [
- [
- -0.03119342029094696
- ]
- ]
- ],
- [
- [
- [
- -0.052754200994968414
- ]
- ]
- ],
- [
- [
- [
- -0.06210914999246597
- ]
- ]
- ],
- [
- [
- [
- -0.03193489462137222
- ]
- ]
- ],
- [
- [
- [
- -0.03900056704878807
- ]
- ]
- ],
- [
- [
- [
- -0.03312145173549652
- ]
- ]
- ],
- [
- [
- [
- -0.05922767147421837
- ]
- ]
- ],
- [
- [
- [
- -0.03970002755522728
- ]
- ]
- ],
- [
- [
- [
- -0.07441844791173935
- ]
- ]
- ],
- [
- [
- [
- -0.034485843032598495
- ]
- ]
- ],
- [
- [
- [
- -0.039073165506124496
- ]
- ]
- ],
- [
- [
- [
- -0.030020464211702347
- ]
- ]
- ],
- [
- [
- [
- -0.0640251412987709
- ]
- ]
- ],
- [
- [
- [
- -0.06430987268686295
- ]
- ]
- ],
- [
- [
- [
- -0.051140863448381424
- ]
- ]
- ],
- [
- [
- [
- -0.03822903707623482
- ]
- ]
- ],
- [
- [
- [
- -0.03774797171354294
- ]
- ]
- ],
- [
- [
- [
- -0.037639934569597244
- ]
- ]
- ],
- [
- [
- [
- -0.035608045756816864
- ]
- ]
- ],
- [
- [
- [
- -0.043284621089696884
- ]
- ]
- ],
- [
- [
- [
- -0.0370304211974144
- ]
- ]
- ],
- [
- [
- [
- -0.032314036041498184
- ]
- ]
- ],
- [
- [
- [
- -0.02660265564918518
- ]
- ]
- ],
- [
- [
- [
- -0.05411161482334137
- ]
- ]
- ],
- [
- [
- [
- -0.030090946704149246
- ]
- ]
- ],
- [
- [
- [
- -0.03494611382484436
- ]
- ]
- ],
- [
- [
- [
- -0.03035469725728035
- ]
- ]
- ],
- [
- [
- [
- -0.03276047855615616
- ]
- ]
- ],
- [
- [
- [
- -0.044150400906801224
- ]
- ]
- ],
- [
- [
- [
- -0.05680425837635994
- ]
- ]
- ],
- [
- [
- [
- -0.03472881391644478
- ]
- ]
- ],
- [
- [
- [
- -0.03327135741710663
- ]
- ]
- ],
- [
- [
- [
- -0.03935960680246353
- ]
- ]
- ],
- [
- [
- [
- -0.03434077277779579
- ]
- ]
- ],
- [
- [
- [
- -0.037435129284858704
- ]
- ]
- ],
- [
- [
- [
- -0.06330116093158722
- ]
- ]
- ],
- [
- [
- [
- -0.02752861939370632
- ]
- ]
- ],
- [
- [
- [
- -0.04295704886317253
- ]
- ]
- ],
- [
- [
- [
- -0.032372258603572845
- ]
- ]
- ],
- [
- [
- [
- -0.03466672822833061
- ]
- ]
- ],
- [
- [
- [
- -0.03207859769463539
- ]
- ]
- ],
- [
- [
- [
- -0.03484901040792465
- ]
- ]
- ],
- [
- [
- [
- -0.041798289865255356
- ]
- ]
- ],
- [
- [
- [
- -0.034427329897880554
- ]
- ]
- ],
- [
- [
- [
- -0.031593453139066696
- ]
- ]
- ],
- [
- [
- [
- -0.03776877000927925
- ]
- ]
- ],
- [
- [
- [
- -0.02790505439043045
- ]
- ]
- ],
- [
- [
- [
- -0.06570174545049667
- ]
- ]
- ],
- [
- [
- [
- -0.02972835674881935
- ]
- ]
- ],
- [
- [
- [
- -0.033917978405952454
- ]
- ]
- ],
- [
- [
- [
- -0.05485783889889717
- ]
- ]
- ],
- [
- [
- [
- -0.0480397567152977
- ]
- ]
- ],
- [
- [
- [
- -0.04836508259177208
- ]
- ]
- ],
- [
- [
- [
- -0.04141492024064064
- ]
- ]
- ],
- [
- [
- [
- -0.041322898119688034
- ]
- ]
- ],
- [
- [
- [
- -0.07862960547208786
- ]
- ]
- ],
- [
- [
- [
- -0.03651628643274307
- ]
- ]
- ],
- [
- [
- [
- -0.07565409690141678
- ]
- ]
- ],
- [
- [
- [
- -0.034765273332595825
- ]
- ]
- ],
- [
- [
- [
- -0.034393783658742905
- ]
- ]
- ],
- [
- [
- [
- -0.04664672166109085
- ]
- ]
- ],
- [
- [
- [
- -0.04186774417757988
- ]
- ]
- ],
- [
- [
- [
- -0.029703667387366295
- ]
- ]
- ],
- [
- [
- [
- -0.06952790170907974
- ]
- ]
- ],
- [
- [
- [
- -0.050361502915620804
- ]
- ]
- ],
- [
- [
- [
- -0.04274629428982735
- ]
- ]
- ],
- [
- [
- [
- -0.03907494619488716
- ]
- ]
- ],
- [
- [
- [
- -0.06698577105998993
- ]
- ]
- ],
- [
- [
- [
- -0.03659119829535484
- ]
- ]
- ],
- [
- [
- [
- -0.047653812915086746
- ]
- ]
- ],
- [
- [
- [
- -0.027656814083456993
- ]
- ]
- ],
- [
- [
- [
- -0.034627415239810944
- ]
- ]
- ],
- [
- [
- [
- -0.03988649323582649
- ]
- ]
- ],
- [
- [
- [
- -0.03048333153128624
- ]
- ]
- ],
- [
- [
- [
- -0.03243991360068321
- ]
- ]
- ],
- [
- [
- [
- -0.04180580750107765
- ]
- ]
- ],
- [
- [
- [
- -0.033524397760629654
- ]
- ]
- ],
- [
- [
- [
- -0.032647132873535156
- ]
- ]
- ],
- [
- [
- [
- -0.03758316487073898
- ]
- ]
- ],
- [
- [
- [
- -0.029778894037008286
- ]
- ]
- ],
- [
- [
- [
- -0.03366637974977493
- ]
- ]
- ],
- [
- [
- [
- -0.03300342708826065
- ]
- ]
- ],
- [
- [
- [
- -0.03791321441531181
- ]
- ]
- ],
- [
- [
- [
- -0.034650448709726334
- ]
- ]
- ],
- [
- [
- [
- -0.05171716958284378
- ]
- ]
- ],
- [
- [
- [
- -0.03098304383456707
- ]
- ]
- ],
- [
- [
- [
- -0.04409071430563927
- ]
- ]
- ],
- [
- [
- [
- -0.03343130275607109
- ]
- ]
- ],
- [
- [
- [
- -0.02800634875893593
- ]
- ]
- ],
- [
- [
- [
- -0.03373754769563675
- ]
- ]
- ],
- [
- [
- [
- -0.035008613020181656
- ]
- ]
- ],
- [
- [
- [
- -0.03939009830355644
- ]
- ]
- ],
- [
- [
- [
- -0.03428308293223381
- ]
- ]
- ],
- [
- [
- [
- -0.03769834712147713
- ]
- ]
- ],
- [
- [
- [
- -0.034773606806993484
- ]
- ]
- ],
- [
- [
- [
- -0.041339267045259476
- ]
- ]
- ],
- [
- [
- [
- -0.03076154738664627
- ]
- ]
- ],
- [
- [
- [
- -0.04969344660639763
- ]
- ]
- ],
- [
- [
- [
- -0.03862404823303223
- ]
- ]
- ],
- [
- [
- [
- -0.04363154619932175
- ]
- ]
- ],
- [
- [
- [
- -0.03621627762913704
- ]
- ]
- ],
- [
- [
- [
- -0.04887732118368149
- ]
- ]
- ],
- [
- [
- [
- -0.04003177210688591
- ]
- ]
- ],
- [
- [
- [
- -0.0601038858294487
- ]
- ]
- ],
- [
- [
- [
- -0.03674643486738205
- ]
- ]
- ],
- [
- [
- [
- -0.034997910261154175
- ]
- ]
- ],
- [
- [
- [
- -0.041870396584272385
- ]
- ]
- ],
- [
- [
- [
- -0.031856611371040344
- ]
- ]
- ],
- [
- [
- [
- -0.035118360072374344
- ]
- ]
- ],
- [
- [
- [
- -0.031184392049908638
- ]
- ]
- ],
- [
- [
- [
- -0.06711138784885406
- ]
- ]
- ],
- [
- [
- [
- -0.037421729415655136
- ]
- ]
- ],
- [
- [
- [
- -0.02982216328382492
- ]
- ]
- ],
- [
- [
- [
- -0.03713086619973183
- ]
- ]
- ],
- [
- [
- [
- -0.04279274493455887
- ]
- ]
- ],
- [
- [
- [
- -0.03141489252448082
- ]
- ]
- ],
- [
- [
- [
- -0.0346524603664875
- ]
- ]
- ],
- [
- [
- [
- -0.03527962788939476
- ]
- ]
- ],
- [
- [
- [
- -0.035479653626680374
- ]
- ]
- ],
- [
- [
- [
- -0.03545263037085533
- ]
- ]
- ],
- [
- [
- [
- -0.04659697785973549
- ]
- ]
- ],
- [
- [
- [
- -0.04782481491565704
- ]
- ]
- ],
- [
- [
- [
- -0.03545992821455002
- ]
- ]
- ],
- [
- [
- [
- -0.033041320741176605
- ]
- ]
- ],
- [
- [
- [
- -0.03755947947502136
- ]
- ]
- ],
- [
- [
- [
- -0.037558868527412415
- ]
- ]
- ],
- [
- [
- [
- -0.032106831669807434
- ]
- ]
- ],
- [
- [
- [
- -0.03432776778936386
- ]
- ]
- ],
- [
- [
- [
- -0.05079035833477974
- ]
- ]
- ],
- [
- [
- [
- -0.07614286243915558
- ]
- ]
- ],
- [
- [
- [
- -0.03484952449798584
- ]
- ]
- ],
- [
- [
- [
- -0.033543672412633896
- ]
- ]
- ],
- [
- [
- [
- -0.04104761779308319
- ]
- ]
- ],
- [
- [
- [
- -0.06048652157187462
- ]
- ]
- ],
- [
- [
- [
- -0.07968276739120483
- ]
- ]
- ],
- [
- [
- [
- -0.0435795895755291
- ]
- ]
- ],
- [
- [
- [
- -0.06549122929573059
- ]
- ]
- ],
- [
- [
- [
- -0.039801303297281265
- ]
- ]
- ],
- [
- [
- [
- -0.027248738333582878
- ]
- ]
- ],
- [
- [
- [
- -0.03597860038280487
- ]
- ]
- ],
- [
- [
- [
- -0.04769052565097809
- ]
- ]
- ],
- [
- [
- [
- -0.03415066748857498
- ]
- ]
- ],
- [
- [
- [
- -0.05259673297405243
- ]
- ]
- ],
- [
- [
- [
- -0.03124968521296978
- ]
- ]
- ],
- [
- [
- [
- -0.03382129594683647
- ]
- ]
- ],
- [
- [
- [
- -0.0427110493183136
- ]
- ]
- ],
- [
- [
- [
- -0.05859317630529404
- ]
- ]
- ],
- [
- [
- [
- -0.0458543598651886
- ]
- ]
- ],
- [
- [
- [
- -0.04076540097594261
- ]
- ]
- ],
- [
- [
- [
- -0.02689000964164734
- ]
- ]
- ],
- [
- [
- [
- -0.039229873567819595
- ]
- ]
- ],
- [
- [
- [
- -0.03878520801663399
- ]
- ]
- ],
- [
- [
- [
- -0.034435633569955826
- ]
- ]
- ],
- [
- [
- [
- -0.03984743729233742
- ]
- ]
- ],
- [
- [
- [
- -0.038396403193473816
- ]
- ]
- ],
- [
- [
- [
- -0.050103809684515
- ]
- ]
- ],
- [
- [
- [
- -0.032181497663259506
- ]
- ]
- ],
- [
- [
- [
- -0.07672063261270523
- ]
- ]
- ],
- [
- [
- [
- -0.03278270363807678
- ]
- ]
- ],
- [
- [
- [
- -0.032958947122097015
- ]
- ]
- ],
- [
- [
- [
- -0.028835413977503777
- ]
- ]
- ],
- [
- [
- [
- -0.03521037474274635
- ]
- ]
- ],
- [
- [
- [
- -0.06864071637392044
- ]
- ]
- ],
- [
- [
- [
- -0.029206182807683945
- ]
- ]
- ],
- [
- [
- [
- -0.03607212379574776
- ]
- ]
- ],
- [
- [
- [
- -0.03496142476797104
- ]
- ]
- ],
- [
- [
- [
- -0.03603910282254219
- ]
- ]
- ],
- [
- [
- [
- -0.04238876327872276
- ]
- ]
- ],
- [
- [
- [
- -0.053925685584545135
- ]
- ]
- ],
- [
- [
- [
- -0.035604532808065414
- ]
- ]
- ],
- [
- [
- [
- -0.041708528995513916
- ]
- ]
- ],
- [
- [
- [
- -0.03089599497616291
- ]
- ]
- ],
- [
- [
- [
- -0.030886288732290268
- ]
- ]
- ],
- [
- [
- [
- -0.03523436188697815
- ]
- ]
- ],
- [
- [
- [
- -0.06941303610801697
- ]
- ]
- ],
- [
- [
- [
- -0.056606415659189224
- ]
- ]
- ],
- [
- [
- [
- -0.04071033373475075
- ]
- ]
- ],
- [
- [
- [
- -0.038799598813056946
- ]
- ]
- ],
- [
- [
- [
- -0.03498181328177452
- ]
- ]
- ],
- [
- [
- [
- -0.036877263337373734
- ]
- ]
- ],
- [
- [
- [
- -0.03806427866220474
- ]
- ]
- ],
- [
- [
- [
- -0.049291208386421204
- ]
- ]
- ],
- [
- [
- [
- -0.051016926765441895
- ]
- ]
- ],
- [
- [
- [
- -0.028370734304189682
- ]
- ]
- ],
- [
- [
- [
- -0.05357551947236061
- ]
- ]
- ],
- [
- [
- [
- -0.012477648444473743
- ]
- ]
- ],
- [
- [
- [
- -0.026037951931357384
- ]
- ]
- ],
- [
- [
- [
- -0.037974677979946136
- ]
- ]
- ],
- [
- [
- [
- -0.037273526191711426
- ]
- ]
- ],
- [
- [
- [
- -0.030716653913259506
- ]
- ]
- ],
- [
- [
- [
- -0.05730998143553734
- ]
- ]
- ],
- [
- [
- [
- -0.038712549954652786
- ]
- ]
- ],
- [
- [
- [
- -0.025379862636327744
- ]
- ]
- ],
- [
- [
- [
- -0.04374555125832558
- ]
- ]
- ],
- [
- [
- [
- -0.03278234228491783
- ]
- ]
- ],
- [
- [
- [
- -0.05965641885995865
- ]
- ]
- ],
- [
- [
- [
- -0.039301104843616486
- ]
- ]
- ],
- [
- [
- [
- -0.03303905203938484
- ]
- ]
- ],
- [
- [
- [
- -0.03345690295100212
- ]
- ]
- ],
- [
- [
- [
- -0.042830921709537506
- ]
- ]
- ],
- [
- [
- [
- -0.03438234701752663
- ]
- ]
- ],
- [
- [
- [
- -0.03128546476364136
- ]
- ]
- ],
- [
- [
- [
- -0.024333810433745384
- ]
- ]
- ],
- [
- [
- [
- -0.03289274126291275
- ]
- ]
- ],
- [
- [
- [
- -0.05052318796515465
- ]
- ]
- ],
- [
- [
- [
- -0.03122764453291893
- ]
- ]
- ],
- [
- [
- [
- -0.041686251759529114
- ]
- ]
- ],
- [
- [
- [
- -0.038104161620140076
- ]
- ]
- ],
- [
- [
- [
- -0.04780889302492142
- ]
- ]
- ],
- [
- [
- [
- -0.0340031236410141
- ]
- ]
- ],
- [
- [
- [
- -0.038727037608623505
- ]
- ]
- ],
- [
- [
- [
- -0.028887221589684486
- ]
- ]
- ],
- [
- [
- [
- -0.0404561348259449
- ]
- ]
- ],
- [
- [
- [
- -0.06980665773153305
- ]
- ]
- ],
- [
- [
- [
- -0.043316423892974854
- ]
- ]
- ],
- [
- [
- [
- -0.037225302308797836
- ]
- ]
- ],
- [
- [
- [
- -0.037971653044223785
- ]
- ]
- ],
- [
- [
- [
- -0.027439963072538376
- ]
- ]
- ],
- [
- [
- [
- -0.08103181421756744
- ]
- ]
- ],
- [
- [
- [
- -0.03407220169901848
- ]
- ]
- ],
- [
- [
- [
- -0.039145853370428085
- ]
- ]
- ],
- [
- [
- [
- -0.0379805825650692
- ]
- ]
- ],
- [
- [
- [
- -0.03509172052145004
- ]
- ]
- ],
- [
- [
- [
- -0.044353827834129333
- ]
- ]
- ],
- [
- [
- [
- -0.034144215285778046
- ]
- ]
- ],
- [
- [
- [
- -0.030500812456011772
- ]
- ]
- ],
- [
- [
- [
- -0.06080946326255798
- ]
- ]
- ],
- [
- [
- [
- -0.0383259616792202
- ]
- ]
- ],
- [
- [
- [
- -0.033406294882297516
- ]
- ]
- ],
- [
- [
- [
- -0.06884738057851791
- ]
- ]
- ],
- [
- [
- [
- -0.036758266389369965
- ]
- ]
- ],
- [
- [
- [
- -0.12942034006118774
- ]
- ]
- ],
- [
- [
- [
- -0.0397239625453949
- ]
- ]
- ],
- [
- [
- [
- -0.03244343027472496
- ]
- ]
- ],
- [
- [
- [
- -0.0366375595331192
- ]
- ]
- ],
- [
- [
- [
- -0.03695637732744217
- ]
- ]
- ],
- [
- [
- [
- -0.04303962364792824
- ]
- ]
- ],
- [
- [
- [
- -0.04127557575702667
- ]
- ]
- ],
- [
- [
- [
- -0.05068061128258705
- ]
- ]
- ],
- [
- [
- [
- -0.03530259430408478
- ]
- ]
- ],
- [
- [
- [
- -0.07922579348087311
- ]
- ]
- ],
- [
- [
- [
- -0.03700695559382439
- ]
- ]
- ],
- [
- [
- [
- -0.05581717565655708
- ]
- ]
- ],
- [
- [
- [
- -0.04311869665980339
- ]
- ]
- ],
- [
- [
- [
- -0.03061428666114807
- ]
- ]
- ],
- [
- [
- [
- -0.03823637217283249
- ]
- ]
- ],
- [
- [
- [
- -0.02718937024474144
- ]
- ]
- ],
- [
- [
- [
- -0.03305919095873833
- ]
- ]
- ],
- [
- [
- [
- -0.03102000430226326
- ]
- ]
- ],
- [
- [
- [
- -0.10503868013620377
- ]
- ]
- ],
- [
- [
- [
- -0.03070424124598503
- ]
- ]
- ],
- [
- [
- [
- -0.03737448528409004
- ]
- ]
- ],
- [
- [
- [
- -0.036975469440221786
- ]
- ]
- ],
- [
- [
- [
- -0.03001571260392666
- ]
- ]
- ],
- [
- [
- [
- -0.02831878699362278
- ]
- ]
- ],
- [
- [
- [
- -0.03729076310992241
- ]
- ]
- ],
- [
- [
- [
- -0.035546980798244476
- ]
- ]
- ],
- [
- [
- [
- -0.038111355155706406
- ]
- ]
- ],
- [
- [
- [
- -0.04113825410604477
- ]
- ]
- ],
- [
- [
- [
- -0.03380250930786133
- ]
- ]
- ],
- [
- [
- [
- -0.03424890711903572
- ]
- ]
- ],
- [
- [
- [
- -0.03237059339880943
- ]
- ]
- ],
- [
- [
- [
- -0.035836681723594666
- ]
- ]
- ],
- [
- [
- [
- -0.028251394629478455
- ]
- ]
- ],
- [
- [
- [
- -0.044424451887607574
- ]
- ]
- ],
- [
- [
- [
- -0.030882731080055237
- ]
- ]
- ],
- [
- [
- [
- -0.05116137117147446
- ]
- ]
- ],
- [
- [
- [
- -0.04150106757879257
- ]
- ]
- ],
- [
- [
- [
- -0.05628727376461029
- ]
- ]
- ],
- [
- [
- [
- -0.030644262209534645
- ]
- ]
- ],
- [
- [
- [
- -0.0374220535159111
- ]
- ]
- ],
- [
- [
- [
- -0.032951902598142624
- ]
- ]
- ],
- [
- [
- [
- -0.03977156803011894
- ]
- ]
- ],
- [
- [
- [
- -0.034272629767656326
- ]
- ]
- ],
- [
- [
- [
- -0.05871386080980301
- ]
- ]
- ],
- [
- [
- [
- -0.04073125496506691
- ]
- ]
- ],
- [
- [
- [
- -0.04160197824239731
- ]
- ]
- ],
- [
- [
- [
- -0.03533739596605301
- ]
- ]
- ],
- [
- [
- [
- -0.06106550991535187
- ]
- ]
- ],
- [
- [
- [
- -0.02958003617823124
- ]
- ]
- ],
- [
- [
- [
- -0.04211927950382233
- ]
- ]
- ],
- [
- [
- [
- -0.03242926672101021
- ]
- ]
- ],
- [
- [
- [
- -0.03384038433432579
- ]
- ]
- ],
- [
- [
- [
- -0.04590848088264465
- ]
- ]
- ],
- [
- [
- [
- -0.03830850124359131
- ]
- ]
- ],
- [
- [
- [
- -0.07142779976129532
- ]
- ]
- ],
- [
- [
- [
- -0.04162156581878662
- ]
- ]
- ],
- [
- [
- [
- -0.02859834022819996
- ]
- ]
- ],
- [
- [
- [
- -0.06921238452196121
- ]
- ]
- ],
- [
- [
- [
- -0.03611631318926811
- ]
- ]
- ],
- [
- [
- [
- -0.051260966807603836
- ]
- ]
- ],
- [
- [
- [
- -0.0362793393433094
- ]
- ]
- ],
- [
- [
- [
- -0.030514264479279518
- ]
- ]
- ],
- [
- [
- [
- -0.03383981063961983
- ]
- ]
- ],
- [
- [
- [
- -0.03404109925031662
- ]
- ]
- ],
- [
- [
- [
- -0.03849002346396446
- ]
- ]
- ],
- [
- [
- [
- -0.03283355385065079
- ]
- ]
- ],
- [
- [
- [
- -0.03343402221798897
- ]
- ]
- ],
- [
- [
- [
- -0.04307730868458748
- ]
- ]
- ],
- [
- [
- [
- -0.037439122796058655
- ]
- ]
- ],
- [
- [
- [
- -0.044803764671087265
- ]
- ]
- ],
- [
- [
- [
- -0.03386695683002472
- ]
- ]
- ],
- [
- [
- [
- -0.03187674656510353
- ]
- ]
- ],
- [
- [
- [
- -0.03248756378889084
- ]
- ]
- ],
- [
- [
- [
- -0.06604462116956711
- ]
- ]
- ],
- [
- [
- [
- -0.03442730754613876
- ]
- ]
- ],
- [
- [
- [
- -0.04812945798039436
- ]
- ]
- ],
- [
- [
- [
- -0.06302954256534576
- ]
- ]
- ],
- [
- [
- [
- -0.05978774651885033
- ]
- ]
- ],
- [
- [
- [
- -0.03831271082162857
- ]
- ]
- ],
- [
- [
- [
- -0.03770030289888382
- ]
- ]
- ],
- [
- [
- [
- -0.05869532376527786
- ]
- ]
- ],
- [
- [
- [
- -0.07023829221725464
- ]
- ]
- ],
- [
- [
- [
- -0.032192423939704895
- ]
- ]
- ],
- [
- [
- [
- -0.05044644698500633
- ]
- ]
- ],
- [
- [
- [
- -0.03372843191027641
- ]
- ]
- ],
- [
- [
- [
- -0.06296705454587936
- ]
- ]
- ],
- [
- [
- [
- -0.03268309682607651
- ]
- ]
- ],
- [
- [
- [
- -0.043256305158138275
- ]
- ]
- ],
- [
- [
- [
- -0.0373028963804245
- ]
- ]
- ],
- [
- [
- [
- -0.05304780974984169
- ]
- ]
- ],
- [
- [
- [
- -0.07105700671672821
- ]
- ]
- ],
- [
- [
- [
- -0.038297705352306366
- ]
- ]
- ],
- [
- [
- [
- -0.030966049060225487
- ]
- ]
- ],
- [
- [
- [
- -0.04563850909471512
- ]
- ]
- ],
- [
- [
- [
- -0.04091161862015724
- ]
- ]
- ],
- [
- [
- [
- -0.04391777515411377
- ]
- ]
- ],
- [
- [
- [
- -0.0331270694732666
- ]
- ]
- ],
- [
- [
- [
- -0.04344095662236214
- ]
- ]
- ],
- [
- [
- [
- -0.03271510824561119
- ]
- ]
- ],
- [
- [
- [
- -0.033240221440792084
- ]
- ]
- ],
- [
- [
- [
- -0.040308792144060135
- ]
- ]
- ],
- [
- [
- [
- -0.037175025790929794
- ]
- ]
- ],
- [
- [
- [
- -0.03380199149250984
- ]
- ]
- ],
- [
- [
- [
- -0.04323612526059151
- ]
- ]
- ],
- [
- [
- [
- -0.04153027758002281
- ]
- ]
- ],
- [
- [
- [
- -0.08007393032312393
- ]
- ]
- ],
- [
- [
- [
- -0.040955670177936554
- ]
- ]
- ],
- [
- [
- [
- -0.06471940129995346
- ]
- ]
- ],
- [
- [
- [
- -0.0606420636177063
- ]
- ]
- ],
- [
- [
- [
- -0.04721680283546448
- ]
- ]
- ],
- [
- [
- [
- -0.034385718405246735
- ]
- ]
- ],
- [
- [
- [
- -0.032241370528936386
- ]
- ]
- ],
- [
- [
- [
- -0.03759273886680603
- ]
- ]
- ],
- [
- [
- [
- -0.04705129191279411
- ]
- ]
- ],
- [
- [
- [
- -0.041907746344804764
- ]
- ]
- ],
- [
- [
- [
- -0.03700495883822441
- ]
- ]
- ],
- [
- [
- [
- -0.054134566336870193
- ]
- ]
- ],
- [
- [
- [
- -0.03679701313376427
- ]
- ]
- ],
- [
- [
- [
- -0.027172571048140526
- ]
- ]
- ],
- [
- [
- [
- -0.03609693422913551
- ]
- ]
- ],
- [
- [
- [
- -0.027830850332975388
- ]
- ]
- ],
- [
- [
- [
- -0.038279708474874496
- ]
- ]
- ],
- [
- [
- [
- -0.04415452852845192
- ]
- ]
- ],
- [
- [
- [
- -0.032909851521253586
- ]
- ]
- ],
- [
- [
- [
- -0.084637850522995
- ]
- ]
- ],
- [
- [
- [
- -0.03384314104914665
- ]
- ]
- ],
- [
- [
- [
- -0.034919898957014084
- ]
- ]
- ],
- [
- [
- [
- -0.031461212784051895
- ]
- ]
- ],
- [
- [
- [
- -0.03606391325592995
- ]
- ]
- ],
- [
- [
- [
- -0.04785027727484703
- ]
- ]
- ],
- [
- [
- [
- -0.030733255669474602
- ]
- ]
- ],
- [
- [
- [
- -0.028861280530691147
- ]
- ]
- ],
- [
- [
- [
- -0.03426424041390419
- ]
- ]
- ],
- [
- [
- [
- -0.03281340003013611
- ]
- ]
- ],
- [
- [
- [
- -0.035501349717378616
- ]
- ]
- ],
- [
- [
- [
- -0.0565536804497242
- ]
- ]
- ],
- [
- [
- [
- -0.04713457450270653
- ]
- ]
- ],
- [
- [
- [
- -0.04047410190105438
- ]
- ]
- ],
- [
- [
- [
- -0.030533738434314728
- ]
- ]
- ],
- [
- [
- [
- -0.05733286961913109
- ]
- ]
- ],
- [
- [
- [
- -0.029280252754688263
- ]
- ]
- ],
- [
- [
- [
- -0.05995039641857147
- ]
- ]
- ],
- [
- [
- [
- -0.03414404019713402
- ]
- ]
- ],
- [
- [
- [
- -0.031162528321146965
- ]
- ]
- ],
- [
- [
- [
- -0.05529338866472244
- ]
- ]
- ],
- [
- [
- [
- -0.041553087532520294
- ]
- ]
- ],
- [
- [
- [
- -0.03407485783100128
- ]
- ]
- ],
- [
- [
- [
- -0.08021681010723114
- ]
- ]
- ],
- [
- [
- [
- -0.07208540290594101
- ]
- ]
- ],
- [
- [
- [
- -0.041135262697935104
- ]
- ]
- ],
- [
- [
- [
- -0.035251207649707794
- ]
- ]
- ],
- [
- [
- [
- -0.049896422773599625
- ]
- ]
- ],
- [
- [
- [
- -0.08242014795541763
- ]
- ]
- ],
- [
- [
- [
- -0.037995290011167526
- ]
- ]
- ],
- [
- [
- [
- -0.03501231223344803
- ]
- ]
- ],
- [
- [
- [
- -0.05200492590665817
- ]
- ]
- ],
- [
- [
- [
- -0.06204942241311073
- ]
- ]
- ],
- [
- [
- [
- -0.06910652667284012
- ]
- ]
- ],
- [
- [
- [
- -0.032587021589279175
- ]
- ]
- ],
- [
- [
- [
- -0.03392258286476135
- ]
- ]
- ],
- [
- [
- [
- -0.03342312574386597
- ]
- ]
- ],
- [
- [
- [
- -0.02373618446290493
- ]
- ]
- ],
- [
- [
- [
- -0.03866971284151077
- ]
- ]
- ],
- [
- [
- [
- -0.03260860964655876
- ]
- ]
- ],
- [
- [
- [
- -0.03314601257443428
- ]
- ]
- ],
- [
- [
- [
- -0.029359139502048492
- ]
- ]
- ],
- [
- [
- [
- -0.07682083547115326
- ]
- ]
- ],
- [
- [
- [
- -0.0342557393014431
- ]
- ]
- ],
- [
- [
- [
- -0.03469952195882797
- ]
- ]
- ],
- [
- [
- [
- -0.0314849391579628
- ]
- ]
- ],
- [
- [
- [
- -0.06117142736911774
- ]
- ]
- ],
- [
- [
- [
- -0.04416368901729584
- ]
- ]
- ],
- [
- [
- [
- -0.0345696359872818
- ]
- ]
- ],
- [
- [
- [
- -0.03480752184987068
- ]
- ]
- ],
- [
- [
- [
- -0.03985096886754036
- ]
- ]
- ],
- [
- [
- [
- -0.03637051209807396
- ]
- ]
- ],
- [
- [
- [
- -0.04126454144716263
- ]
- ]
- ],
- [
- [
- [
- -0.03977629169821739
- ]
- ]
- ],
- [
- [
- [
- -0.05400490015745163
- ]
- ]
- ],
- [
- [
- [
- -0.03173048794269562
- ]
- ]
- ],
- [
- [
- [
- -0.05865045636892319
- ]
- ]
- ],
- [
- [
- [
- -0.04508613795042038
- ]
- ]
- ],
- [
- [
- [
- -0.038319509476423264
- ]
- ]
- ],
- [
- [
- [
- -0.033879492431879044
- ]
- ]
- ],
- [
- [
- [
- -0.050934113562107086
- ]
- ]
- ],
- [
- [
- [
- -0.05498398840427399
- ]
- ]
- ],
- [
- [
- [
- -0.03843039274215698
- ]
- ]
- ],
- [
- [
- [
- -0.06002655252814293
- ]
- ]
- ],
- [
- [
- [
- -0.043717481195926666
- ]
- ]
- ],
- [
- [
- [
- -0.040958844125270844
- ]
- ]
- ],
- [
- [
- [
- -0.034725792706012726
- ]
- ]
- ],
- [
- [
- [
- -0.040714606642723083
- ]
- ]
- ],
- [
- [
- [
- -0.06383658945560455
- ]
- ]
- ],
- [
- [
- [
- -0.027538808062672615
- ]
- ]
- ],
- [
- [
- [
- -0.07063005119562149
- ]
- ]
- ],
- [
- [
- [
- -0.0694078579545021
- ]
- ]
- ],
- [
- [
- [
- -0.034045759588479996
- ]
- ]
- ],
- [
- [
- [
- -0.039702046662569046
- ]
- ]
- ],
- [
- [
- [
- -0.03575372323393822
- ]
- ]
- ],
- [
- [
- [
- -0.03476719930768013
- ]
- ]
- ],
- [
- [
- [
- -0.03487956523895264
- ]
- ]
- ],
- [
- [
- [
- -0.03509645536541939
- ]
- ]
- ],
- [
- [
- [
- -0.03416956216096878
- ]
- ]
- ],
- [
- [
- [
- -0.03450649976730347
- ]
- ]
- ],
- [
- [
- [
- -0.06434483081102371
- ]
- ]
- ],
- [
- [
- [
- -0.06497330963611603
- ]
- ]
- ],
- [
- [
- [
- -0.04397733882069588
- ]
- ]
- ],
- [
- [
- [
- -0.04017805680632591
- ]
- ]
- ],
- [
- [
- [
- -0.03514625132083893
- ]
- ]
- ],
- [
- [
- [
- -0.035985589027404785
- ]
- ]
- ],
- [
- [
- [
- -0.040099114179611206
- ]
- ]
- ],
- [
- [
- [
- -0.0674191564321518
- ]
- ]
- ],
- [
- [
- [
- -0.030339250341057777
- ]
- ]
- ],
- [
- [
- [
- -0.033812254667282104
- ]
- ]
- ],
- [
- [
- [
- -0.03639763221144676
- ]
- ]
- ],
- [
- [
- [
- -0.07950439304113388
- ]
- ]
- ],
- [
- [
- [
- -0.0388793908059597
- ]
- ]
- ],
- [
- [
- [
- -0.02936490997672081
- ]
- ]
- ],
- [
- [
- [
- -0.04564407840371132
- ]
- ]
- ],
- [
- [
- [
- -0.0515303872525692
- ]
- ]
- ],
- [
- [
- [
- -0.03721581771969795
- ]
- ]
- ],
- [
- [
- [
- -0.03273606672883034
- ]
- ]
- ],
- [
- [
- [
- -0.042879387736320496
- ]
- ]
- ],
- [
- [
- [
- -0.03232676163315773
- ]
- ]
- ],
- [
- [
- [
- -0.034471284598112106
- ]
- ]
- ],
- [
- [
- [
- -0.03294673562049866
- ]
- ]
- ],
- [
- [
- [
- -0.07672514766454697
- ]
- ]
- ],
- [
- [
- [
- -0.039100002497434616
- ]
- ]
- ],
- [
- [
- [
- -0.053071994334459305
- ]
- ]
- ],
- [
- [
- [
- -0.035070307552814484
- ]
- ]
- ],
- [
- [
- [
- -0.029490862041711807
- ]
- ]
- ],
- [
- [
- [
- -0.023629380390048027
- ]
- ]
- ],
- [
- [
- [
- -0.03346939757466316
- ]
- ]
- ],
- [
- [
- [
- -0.03268720954656601
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.027616968378424644
- ]
- ]
- ],
- [
- [
- [
- 0.0530647374689579
- ]
- ]
- ],
- [
- [
- [
- 0.039037179201841354
- ]
- ]
- ],
- [
- [
- [
- 0.03589509055018425
- ]
- ]
- ],
- [
- [
- [
- 0.030653556808829308
- ]
- ]
- ],
- [
- [
- [
- 0.039838146418333054
- ]
- ]
- ],
- [
- [
- [
- 0.03743419796228409
- ]
- ]
- ],
- [
- [
- [
- 0.03647410124540329
- ]
- ]
- ],
- [
- [
- [
- 0.04025127366185188
- ]
- ]
- ],
- [
- [
- [
- 0.04448855668306351
- ]
- ]
- ],
- [
- [
- [
- 0.05869768187403679
- ]
- ]
- ],
- [
- [
- [
- 0.05831205099821091
- ]
- ]
- ],
- [
- [
- [
- 0.03918950632214546
- ]
- ]
- ],
- [
- [
- [
- 0.03166942298412323
- ]
- ]
- ],
- [
- [
- [
- 0.03254866600036621
- ]
- ]
- ],
- [
- [
- [
- 0.03690903261303902
- ]
- ]
- ],
- [
- [
- [
- 0.03573523834347725
- ]
- ]
- ],
- [
- [
- [
- 0.042106591165065765
- ]
- ]
- ],
- [
- [
- [
- 0.04072827473282814
- ]
- ]
- ],
- [
- [
- [
- 0.03590909764170647
- ]
- ]
- ],
- [
- [
- [
- 0.034544918686151505
- ]
- ]
- ],
- [
- [
- [
- 0.037732988595962524
- ]
- ]
- ],
- [
- [
- [
- 0.03669963777065277
- ]
- ]
- ],
- [
- [
- [
- 0.04676153510808945
- ]
- ]
- ],
- [
- [
- [
- 0.08379193395376205
- ]
- ]
- ],
- [
- [
- [
- 0.044293180108070374
- ]
- ]
- ],
- [
- [
- [
- 0.038472749292850494
- ]
- ]
- ],
- [
- [
- [
- 0.033899370580911636
- ]
- ]
- ],
- [
- [
- [
- 0.031266964972019196
- ]
- ]
- ],
- [
- [
- [
- 0.03392372280359268
- ]
- ]
- ],
- [
- [
- [
- 0.02585524320602417
- ]
- ]
- ],
- [
- [
- [
- 0.03908507153391838
- ]
- ]
- ],
- [
- [
- [
- 0.07240371406078339
- ]
- ]
- ],
- [
- [
- [
- 0.001318512368015945
- ]
- ]
- ],
- [
- [
- [
- 0.03685875982046127
- ]
- ]
- ],
- [
- [
- [
- 0.042306628078222275
- ]
- ]
- ],
- [
- [
- [
- 0.033369794487953186
- ]
- ]
- ],
- [
- [
- [
- 0.0403863824903965
- ]
- ]
- ],
- [
- [
- [
- 0.04263676702976227
- ]
- ]
- ],
- [
- [
- [
- 0.06768425554037094
- ]
- ]
- ],
- [
- [
- [
- 0.04602654650807381
- ]
- ]
- ],
- [
- [
- [
- 0.030592402443289757
- ]
- ]
- ],
- [
- [
- [
- 0.03437398374080658
- ]
- ]
- ],
- [
- [
- [
- 0.034407537430524826
- ]
- ]
- ],
- [
- [
- [
- 0.0335475392639637
- ]
- ]
- ],
- [
- [
- [
- 0.06372398138046265
- ]
- ]
- ],
- [
- [
- [
- 0.03924441337585449
- ]
- ]
- ],
- [
- [
- [
- 0.06466720998287201
- ]
- ]
- ],
- [
- [
- [
- 0.029706697911024094
- ]
- ]
- ],
- [
- [
- [
- 0.035307832062244415
- ]
- ]
- ],
- [
- [
- [
- 0.04933519661426544
- ]
- ]
- ],
- [
- [
- [
- 0.04103545472025871
- ]
- ]
- ],
- [
- [
- [
- 0.035182882100343704
- ]
- ]
- ],
- [
- [
- [
- 0.035908665508031845
- ]
- ]
- ],
- [
- [
- [
- 0.03710686042904854
- ]
- ]
- ],
- [
- [
- [
- 0.02980029210448265
- ]
- ]
- ],
- [
- [
- [
- 0.042527440935373306
- ]
- ]
- ],
- [
- [
- [
- 0.0370374396443367
- ]
- ]
- ],
- [
- [
- [
- 0.038971416652202606
- ]
- ]
- ],
- [
- [
- [
- 0.03145742416381836
- ]
- ]
- ],
- [
- [
- [
- 0.03242490068078041
- ]
- ]
- ],
- [
- [
- [
- 0.03573028743267059
- ]
- ]
- ],
- [
- [
- [
- 0.031025152653455734
- ]
- ]
- ],
- [
- [
- [
- 0.036063823848962784
- ]
- ]
- ],
- [
- [
- [
- 0.029943861067295074
- ]
- ]
- ],
- [
- [
- [
- 0.03726590424776077
- ]
- ]
- ],
- [
- [
- [
- 0.03551599383354187
- ]
- ]
- ],
- [
- [
- [
- 0.03273800387978554
- ]
- ]
- ],
- [
- [
- [
- 0.03837944194674492
- ]
- ]
- ],
- [
- [
- [
- 0.06597312539815903
- ]
- ]
- ],
- [
- [
- [
- 0.056382060050964355
- ]
- ]
- ],
- [
- [
- [
- 0.037078727036714554
- ]
- ]
- ],
- [
- [
- [
- 0.03269140049815178
- ]
- ]
- ],
- [
- [
- [
- 0.031640104949474335
- ]
- ]
- ],
- [
- [
- [
- 0.035206206142902374
- ]
- ]
- ],
- [
- [
- [
- 0.02918895147740841
- ]
- ]
- ],
- [
- [
- [
- 0.03296859934926033
- ]
- ]
- ],
- [
- [
- [
- 0.02776334248483181
- ]
- ]
- ],
- [
- [
- [
- 0.038346122950315475
- ]
- ]
- ],
- [
- [
- [
- 0.13185124099254608
- ]
- ]
- ],
- [
- [
- [
- 0.035449329763650894
- ]
- ]
- ],
- [
- [
- [
- 0.0382140576839447
- ]
- ]
- ],
- [
- [
- [
- 0.03644914925098419
- ]
- ]
- ],
- [
- [
- [
- 0.040693141520023346
- ]
- ]
- ],
- [
- [
- [
- 0.03847957402467728
- ]
- ]
- ],
- [
- [
- [
- 0.04129726439714432
- ]
- ]
- ],
- [
- [
- [
- 0.032721541821956635
- ]
- ]
- ],
- [
- [
- [
- 0.06397366523742676
- ]
- ]
- ],
- [
- [
- [
- 0.03541135787963867
- ]
- ]
- ],
- [
- [
- [
- 0.028400147333741188
- ]
- ]
- ],
- [
- [
- [
- 0.03122294507920742
- ]
- ]
- ],
- [
- [
- [
- 0.07238046079874039
- ]
- ]
- ],
- [
- [
- [
- 0.05590430274605751
- ]
- ]
- ],
- [
- [
- [
- 0.031627435237169266
- ]
- ]
- ],
- [
- [
- [
- 0.0783526673913002
- ]
- ]
- ],
- [
- [
- [
- 0.06162497028708458
- ]
- ]
- ],
- [
- [
- [
- 0.03184327855706215
- ]
- ]
- ],
- [
- [
- [
- 0.034841544926166534
- ]
- ]
- ],
- [
- [
- [
- 0.043654315173625946
- ]
- ]
- ],
- [
- [
- [
- 0.035193152725696564
- ]
- ]
- ],
- [
- [
- [
- 0.046486977487802505
- ]
- ]
- ],
- [
- [
- [
- 0.03893642872571945
- ]
- ]
- ],
- [
- [
- [
- 0.032380517572164536
- ]
- ]
- ],
- [
- [
- [
- 0.03541776165366173
- ]
- ]
- ],
- [
- [
- [
- 0.06673543155193329
- ]
- ]
- ],
- [
- [
- [
- 0.03960069641470909
- ]
- ]
- ],
- [
- [
- [
- 0.05024051293730736
- ]
- ]
- ],
- [
- [
- [
- 0.032752200961112976
- ]
- ]
- ],
- [
- [
- [
- 0.029434340074658394
- ]
- ]
- ],
- [
- [
- [
- 0.06655780225992203
- ]
- ]
- ],
- [
- [
- [
- 0.04042933136224747
- ]
- ]
- ],
- [
- [
- [
- 0.061406515538692474
- ]
- ]
- ],
- [
- [
- [
- 0.04283922538161278
- ]
- ]
- ],
- [
- [
- [
- 0.03731854259967804
- ]
- ]
- ],
- [
- [
- [
- 0.03296734392642975
- ]
- ]
- ],
- [
- [
- [
- 0.03025551326572895
- ]
- ]
- ],
- [
- [
- [
- 0.030198169872164726
- ]
- ]
- ],
- [
- [
- [
- 0.03319168463349342
- ]
- ]
- ],
- [
- [
- [
- 0.03713120520114899
- ]
- ]
- ],
- [
- [
- [
- 0.041741691529750824
- ]
- ]
- ],
- [
- [
- [
- 0.039743442088365555
- ]
- ]
- ],
- [
- [
- [
- 0.059548135846853256
- ]
- ]
- ],
- [
- [
- [
- 0.03580949082970619
- ]
- ]
- ],
- [
- [
- [
- 0.03992390260100365
- ]
- ]
- ],
- [
- [
- [
- 0.04293249174952507
- ]
- ]
- ],
- [
- [
- [
- 0.05820776894688606
- ]
- ]
- ],
- [
- [
- [
- 0.038250263780355453
- ]
- ]
- ],
- [
- [
- [
- 0.02628682740032673
- ]
- ]
- ],
- [
- [
- [
- 0.03370650112628937
- ]
- ]
- ],
- [
- [
- [
- 0.0418529286980629
- ]
- ]
- ],
- [
- [
- [
- 0.0350838229060173
- ]
- ]
- ],
- [
- [
- [
- 0.039126504212617874
- ]
- ]
- ],
- [
- [
- [
- 0.025574631989002228
- ]
- ]
- ],
- [
- [
- [
- 0.03207508847117424
- ]
- ]
- ],
- [
- [
- [
- 0.03578626736998558
- ]
- ]
- ],
- [
- [
- [
- 0.04208718240261078
- ]
- ]
- ],
- [
- [
- [
- 0.03357081115245819
- ]
- ]
- ],
- [
- [
- [
- 0.03778370842337608
- ]
- ]
- ],
- [
- [
- [
- 0.04973386973142624
- ]
- ]
- ],
- [
- [
- [
- 0.037573762238025665
- ]
- ]
- ],
- [
- [
- [
- 0.025094740092754364
- ]
- ]
- ],
- [
- [
- [
- 0.08208134770393372
- ]
- ]
- ],
- [
- [
- [
- 0.033963512629270554
- ]
- ]
- ],
- [
- [
- [
- 0.03686705231666565
- ]
- ]
- ],
- [
- [
- [
- 0.04185941442847252
- ]
- ]
- ],
- [
- [
- [
- 0.03385307267308235
- ]
- ]
- ],
- [
- [
- [
- 0.03537223860621452
- ]
- ]
- ],
- [
- [
- [
- 0.03300606086850166
- ]
- ]
- ],
- [
- [
- [
- 0.027304597198963165
- ]
- ]
- ],
- [
- [
- [
- 0.04091409593820572
- ]
- ]
- ],
- [
- [
- [
- 0.04222351685166359
- ]
- ]
- ],
- [
- [
- [
- 0.03818219155073166
- ]
- ]
- ],
- [
- [
- [
- 0.03380357846617699
- ]
- ]
- ],
- [
- [
- [
- 0.028451940044760704
- ]
- ]
- ],
- [
- [
- [
- 0.033317022025585175
- ]
- ]
- ],
- [
- [
- [
- 0.052942320704460144
- ]
- ]
- ],
- [
- [
- [
- 0.03452914208173752
- ]
- ]
- ],
- [
- [
- [
- 0.03669885918498039
- ]
- ]
- ],
- [
- [
- [
- 0.04293540120124817
- ]
- ]
- ],
- [
- [
- [
- 0.03791869059205055
- ]
- ]
- ],
- [
- [
- [
- 0.0327424630522728
- ]
- ]
- ],
- [
- [
- [
- 0.03331146761775017
- ]
- ]
- ],
- [
- [
- [
- 0.039880260825157166
- ]
- ]
- ],
- [
- [
- [
- 0.036329932510852814
- ]
- ]
- ],
- [
- [
- [
- 0.040265731513500214
- ]
- ]
- ],
- [
- [
- [
- 0.03345780819654465
- ]
- ]
- ],
- [
- [
- [
- 0.047255437821149826
- ]
- ]
- ],
- [
- [
- [
- 0.05114135518670082
- ]
- ]
- ],
- [
- [
- [
- 0.034694965928792953
- ]
- ]
- ],
- [
- [
- [
- 0.029019782319664955
- ]
- ]
- ],
- [
- [
- [
- 0.039482105523347855
- ]
- ]
- ],
- [
- [
- [
- 0.039883602410554886
- ]
- ]
- ],
- [
- [
- [
- 0.047125205397605896
- ]
- ]
- ],
- [
- [
- [
- 0.03315503150224686
- ]
- ]
- ],
- [
- [
- [
- 0.06052902713418007
- ]
- ]
- ],
- [
- [
- [
- 0.03200286254286766
- ]
- ]
- ],
- [
- [
- [
- 0.048093538731336594
- ]
- ]
- ],
- [
- [
- [
- 0.06116608902812004
- ]
- ]
- ],
- [
- [
- [
- 0.03220059722661972
- ]
- ]
- ],
- [
- [
- [
- 0.034642450511455536
- ]
- ]
- ],
- [
- [
- [
- 0.03780777007341385
- ]
- ]
- ],
- [
- [
- [
- 0.030568616464734077
- ]
- ]
- ],
- [
- [
- [
- 0.03160896152257919
- ]
- ]
- ],
- [
- [
- [
- 0.03924040496349335
- ]
- ]
- ],
- [
- [
- [
- 0.03592246398329735
- ]
- ]
- ],
- [
- [
- [
- 0.03756722807884216
- ]
- ]
- ],
- [
- [
- [
- 0.03603632003068924
- ]
- ]
- ],
- [
- [
- [
- 0.051258061081171036
- ]
- ]
- ],
- [
- [
- [
- 0.03205950930714607
- ]
- ]
- ],
- [
- [
- [
- 0.03254719451069832
- ]
- ]
- ],
- [
- [
- [
- 0.03436034172773361
- ]
- ]
- ],
- [
- [
- [
- 0.033242519944906235
- ]
- ]
- ],
- [
- [
- [
- 0.030306532979011536
- ]
- ]
- ],
- [
- [
- [
- 0.029331017285585403
- ]
- ]
- ],
- [
- [
- [
- 0.050272222608327866
- ]
- ]
- ],
- [
- [
- [
- 0.03367631882429123
- ]
- ]
- ],
- [
- [
- [
- 0.031178971752524376
- ]
- ]
- ],
- [
- [
- [
- 0.034512732177972794
- ]
- ]
- ],
- [
- [
- [
- 0.03322600573301315
- ]
- ]
- ],
- [
- [
- [
- 0.04220220819115639
- ]
- ]
- ],
- [
- [
- [
- 0.050839610397815704
- ]
- ]
- ],
- [
- [
- [
- 0.04620416462421417
- ]
- ]
- ],
- [
- [
- [
- 0.06644801050424576
- ]
- ]
- ],
- [
- [
- [
- 0.03092820942401886
- ]
- ]
- ],
- [
- [
- [
- 0.03293071314692497
- ]
- ]
- ],
- [
- [
- [
- 0.03656827285885811
- ]
- ]
- ],
- [
- [
- [
- 0.04048057645559311
- ]
- ]
- ],
- [
- [
- [
- 0.041733864694833755
- ]
- ]
- ],
- [
- [
- [
- 0.03774850443005562
- ]
- ]
- ],
- [
- [
- [
- 0.03264128044247627
- ]
- ]
- ],
- [
- [
- [
- 0.034176673740148544
- ]
- ]
- ],
- [
- [
- [
- 0.03341341018676758
- ]
- ]
- ],
- [
- [
- [
- 0.03735431656241417
- ]
- ]
- ],
- [
- [
- [
- 0.03956747055053711
- ]
- ]
- ],
- [
- [
- [
- 0.03177338093519211
- ]
- ]
- ],
- [
- [
- [
- 0.03713758662343025
- ]
- ]
- ],
- [
- [
- [
- 0.0628010481595993
- ]
- ]
- ],
- [
- [
- [
- 0.032783228904008865
- ]
- ]
- ],
- [
- [
- [
- 0.03855343163013458
- ]
- ]
- ],
- [
- [
- [
- 0.0414663664996624
- ]
- ]
- ],
- [
- [
- [
- 0.03646911680698395
- ]
- ]
- ],
- [
- [
- [
- 0.033654533326625824
- ]
- ]
- ],
- [
- [
- [
- 0.03340587764978409
- ]
- ]
- ],
- [
- [
- [
- 0.0329565554857254
- ]
- ]
- ],
- [
- [
- [
- 0.027662716805934906
- ]
- ]
- ],
- [
- [
- [
- 0.027366789057850838
- ]
- ]
- ],
- [
- [
- [
- 0.04144876077771187
- ]
- ]
- ],
- [
- [
- [
- 0.039641886949539185
- ]
- ]
- ],
- [
- [
- [
- 0.0431605726480484
- ]
- ]
- ],
- [
- [
- [
- 0.03584709018468857
- ]
- ]
- ],
- [
- [
- [
- 0.038403600454330444
- ]
- ]
- ],
- [
- [
- [
- 0.04188688099384308
- ]
- ]
- ],
- [
- [
- [
- 0.03198779746890068
- ]
- ]
- ],
- [
- [
- [
- 0.05518458038568497
- ]
- ]
- ],
- [
- [
- [
- 0.029979974031448364
- ]
- ]
- ],
- [
- [
- [
- 0.04568280652165413
- ]
- ]
- ],
- [
- [
- [
- 0.038186460733413696
- ]
- ]
- ],
- [
- [
- [
- 0.04580250382423401
- ]
- ]
- ],
- [
- [
- [
- 0.03924376145005226
- ]
- ]
- ],
- [
- [
- [
- 0.029565850272774696
- ]
- ]
- ],
- [
- [
- [
- 0.03199578821659088
- ]
- ]
- ],
- [
- [
- [
- 0.03992621600627899
- ]
- ]
- ],
- [
- [
- [
- 0.045633893460035324
- ]
- ]
- ],
- [
- [
- [
- 0.04349004849791527
- ]
- ]
- ],
- [
- [
- [
- 0.03889603540301323
- ]
- ]
- ],
- [
- [
- [
- 0.03464590013027191
- ]
- ]
- ],
- [
- [
- [
- 0.035488031804561615
- ]
- ]
- ],
- [
- [
- [
- 0.043248120695352554
- ]
- ]
- ],
- [
- [
- [
- 0.037834931164979935
- ]
- ]
- ],
- [
- [
- [
- 0.045288894325494766
- ]
- ]
- ],
- [
- [
- [
- 0.05533774942159653
- ]
- ]
- ],
- [
- [
- [
- 0.037075307220220566
- ]
- ]
- ],
- [
- [
- [
- 0.03716319054365158
- ]
- ]
- ],
- [
- [
- [
- 0.03078501857817173
- ]
- ]
- ],
- [
- [
- [
- 0.030628351494669914
- ]
- ]
- ],
- [
- [
- [
- 0.03583904355764389
- ]
- ]
- ],
- [
- [
- [
- 0.029445936903357506
- ]
- ]
- ],
- [
- [
- [
- 0.04016609117388725
- ]
- ]
- ],
- [
- [
- [
- 0.03953938186168671
- ]
- ]
- ],
- [
- [
- [
- 0.03640396147966385
- ]
- ]
- ],
- [
- [
- [
- 0.044447578489780426
- ]
- ]
- ],
- [
- [
- [
- 0.05050224810838699
- ]
- ]
- ],
- [
- [
- [
- 0.03498444706201553
- ]
- ]
- ],
- [
- [
- [
- 0.062107305973768234
- ]
- ]
- ],
- [
- [
- [
- 0.02925701253116131
- ]
- ]
- ],
- [
- [
- [
- 0.03288936987519264
- ]
- ]
- ],
- [
- [
- [
- 0.07241234183311462
- ]
- ]
- ],
- [
- [
- [
- 0.03259049728512764
- ]
- ]
- ],
- [
- [
- [
- 0.02964949421584606
- ]
- ]
- ],
- [
- [
- [
- 0.04181177541613579
- ]
- ]
- ],
- [
- [
- [
- 0.03697993978857994
- ]
- ]
- ],
- [
- [
- [
- 0.033927902579307556
- ]
- ]
- ],
- [
- [
- [
- 0.03363431245088577
- ]
- ]
- ],
- [
- [
- [
- 0.03606482222676277
- ]
- ]
- ],
- [
- [
- [
- 0.035203978419303894
- ]
- ]
- ],
- [
- [
- [
- 0.038813285529613495
- ]
- ]
- ],
- [
- [
- [
- 0.045425012707710266
- ]
- ]
- ],
- [
- [
- [
- 0.05796200409531593
- ]
- ]
- ],
- [
- [
- [
- 0.028005672618746758
- ]
- ]
- ],
- [
- [
- [
- 0.043457381427288055
- ]
- ]
- ],
- [
- [
- [
- 0.07537607848644257
- ]
- ]
- ],
- [
- [
- [
- 0.0320654921233654
- ]
- ]
- ],
- [
- [
- [
- 0.029459914192557335
- ]
- ]
- ],
- [
- [
- [
- 0.042944371700286865
- ]
- ]
- ],
- [
- [
- [
- 0.02788151055574417
- ]
- ]
- ],
- [
- [
- [
- 0.03439117223024368
- ]
- ]
- ],
- [
- [
- [
- 0.03546833246946335
- ]
- ]
- ],
- [
- [
- [
- 0.030581049621105194
- ]
- ]
- ],
- [
- [
- [
- 0.03856305405497551
- ]
- ]
- ],
- [
- [
- [
- 0.037279874086380005
- ]
- ]
- ],
- [
- [
- [
- 0.03286551311612129
- ]
- ]
- ],
- [
- [
- [
- 0.04092445597052574
- ]
- ]
- ],
- [
- [
- [
- 0.05101185664534569
- ]
- ]
- ],
- [
- [
- [
- 0.04073019325733185
- ]
- ]
- ],
- [
- [
- [
- 0.04229498654603958
- ]
- ]
- ],
- [
- [
- [
- 0.04096459969878197
- ]
- ]
- ],
- [
- [
- [
- 0.055894091725349426
- ]
- ]
- ],
- [
- [
- [
- 0.0356546975672245
- ]
- ]
- ],
- [
- [
- [
- 0.06266120076179504
- ]
- ]
- ],
- [
- [
- [
- 0.04905158281326294
- ]
- ]
- ],
- [
- [
- [
- 0.043701086193323135
- ]
- ]
- ],
- [
- [
- [
- 0.0482654795050621
- ]
- ]
- ],
- [
- [
- [
- 0.034845076501369476
- ]
- ]
- ],
- [
- [
- [
- 0.033355314284563065
- ]
- ]
- ],
- [
- [
- [
- 0.02565440535545349
- ]
- ]
- ],
- [
- [
- [
- 0.0499095544219017
- ]
- ]
- ],
- [
- [
- [
- 0.06536515802145004
- ]
- ]
- ],
- [
- [
- [
- 0.05017659068107605
- ]
- ]
- ],
- [
- [
- [
- 0.040875498205423355
- ]
- ]
- ],
- [
- [
- [
- 0.032254889607429504
- ]
- ]
- ],
- [
- [
- [
- 0.027056077495217323
- ]
- ]
- ],
- [
- [
- [
- 0.03683463856577873
- ]
- ]
- ],
- [
- [
- [
- 0.03712119907140732
- ]
- ]
- ],
- [
- [
- [
- 0.051835138350725174
- ]
- ]
- ],
- [
- [
- [
- 0.04251693934202194
- ]
- ]
- ],
- [
- [
- [
- 0.030167631804943085
- ]
- ]
- ],
- [
- [
- [
- 0.0455087311565876
- ]
- ]
- ],
- [
- [
- [
- 0.035167865455150604
- ]
- ]
- ],
- [
- [
- [
- 0.03396354615688324
- ]
- ]
- ],
- [
- [
- [
- 0.04180384427309036
- ]
- ]
- ],
- [
- [
- [
- 0.03496631979942322
- ]
- ]
- ],
- [
- [
- [
- 0.054565057158470154
- ]
- ]
- ],
- [
- [
- [
- 0.04563112184405327
- ]
- ]
- ],
- [
- [
- [
- 0.06690599024295807
- ]
- ]
- ],
- [
- [
- [
- 0.03510822728276253
- ]
- ]
- ],
- [
- [
- [
- 0.1025245413184166
- ]
- ]
- ],
- [
- [
- [
- 0.03200192004442215
- ]
- ]
- ],
- [
- [
- [
- 0.03865857794880867
- ]
- ]
- ],
- [
- [
- [
- 0.04680703207850456
- ]
- ]
- ],
- [
- [
- [
- 0.03826065734028816
- ]
- ]
- ],
- [
- [
- [
- 0.03217551112174988
- ]
- ]
- ],
- [
- [
- [
- 0.0353720486164093
- ]
- ]
- ],
- [
- [
- [
- 0.03524888679385185
- ]
- ]
- ],
- [
- [
- [
- 0.054701801389455795
- ]
- ]
- ],
- [
- [
- [
- 0.06050343066453934
- ]
- ]
- ],
- [
- [
- [
- 0.030564799904823303
- ]
- ]
- ],
- [
- [
- [
- 0.04061434417963028
- ]
- ]
- ],
- [
- [
- [
- 0.03820385783910751
- ]
- ]
- ],
- [
- [
- [
- 0.03137297183275223
- ]
- ]
- ],
- [
- [
- [
- 0.03018290176987648
- ]
- ]
- ],
- [
- [
- [
- 0.034544937312603
- ]
- ]
- ],
- [
- [
- [
- 0.05858512967824936
- ]
- ]
- ],
- [
- [
- [
- 0.037210818380117416
- ]
- ]
- ],
- [
- [
- [
- 0.03873147442936897
- ]
- ]
- ],
- [
- [
- [
- 0.03468357026576996
- ]
- ]
- ],
- [
- [
- [
- 0.05646161362528801
- ]
- ]
- ],
- [
- [
- [
- 0.03869690001010895
- ]
- ]
- ],
- [
- [
- [
- 0.039614710956811905
- ]
- ]
- ],
- [
- [
- [
- 0.03844744712114334
- ]
- ]
- ],
- [
- [
- [
- 0.03755709156394005
- ]
- ]
- ],
- [
- [
- [
- 0.04222511500120163
- ]
- ]
- ],
- [
- [
- [
- 0.03467971086502075
- ]
- ]
- ],
- [
- [
- [
- 0.04558422043919563
- ]
- ]
- ],
- [
- [
- [
- 0.038851067423820496
- ]
- ]
- ],
- [
- [
- [
- 0.05871186777949333
- ]
- ]
- ],
- [
- [
- [
- 0.037491947412490845
- ]
- ]
- ],
- [
- [
- [
- 0.04478742927312851
- ]
- ]
- ],
- [
- [
- [
- 0.04191657900810242
- ]
- ]
- ],
- [
- [
- [
- 0.03810896351933479
- ]
- ]
- ],
- [
- [
- [
- 0.03494725376367569
- ]
- ]
- ],
- [
- [
- [
- 0.028281066566705704
- ]
- ]
- ],
- [
- [
- [
- 0.03362400829792023
- ]
- ]
- ],
- [
- [
- [
- 0.040158942341804504
- ]
- ]
- ],
- [
- [
- [
- 0.03781546279788017
- ]
- ]
- ],
- [
- [
- [
- 0.05227505788207054
- ]
- ]
- ],
- [
- [
- [
- 0.053443793207407
- ]
- ]
- ],
- [
- [
- [
- 0.04495891183614731
- ]
- ]
- ],
- [
- [
- [
- 0.07577130943536758
- ]
- ]
- ],
- [
- [
- [
- 0.036623526364564896
- ]
- ]
- ],
- [
- [
- [
- 0.044337671250104904
- ]
- ]
- ],
- [
- [
- [
- 0.045028913766145706
- ]
- ]
- ],
- [
- [
- [
- 0.03656711429357529
- ]
- ]
- ],
- [
- [
- [
- 0.06586629897356033
- ]
- ]
- ],
- [
- [
- [
- 0.037347570061683655
- ]
- ]
- ],
- [
- [
- [
- 0.03627286106348038
- ]
- ]
- ],
- [
- [
- [
- 0.03502471372485161
- ]
- ]
- ],
- [
- [
- [
- 0.03486394137144089
- ]
- ]
- ],
- [
- [
- [
- 0.06753896176815033
- ]
- ]
- ],
- [
- [
- [
- 0.04147156700491905
- ]
- ]
- ],
- [
- [
- [
- 0.03868725895881653
- ]
- ]
- ],
- [
- [
- [
- 0.04142829775810242
- ]
- ]
- ],
- [
- [
- [
- 0.038004085421562195
- ]
- ]
- ],
- [
- [
- [
- 0.032040853053331375
- ]
- ]
- ],
- [
- [
- [
- 0.03667396306991577
- ]
- ]
- ],
- [
- [
- [
- 0.056314025074243546
- ]
- ]
- ],
- [
- [
- [
- 0.03003465197980404
- ]
- ]
- ],
- [
- [
- [
- 0.02690730057656765
- ]
- ]
- ],
- [
- [
- [
- 0.04464823752641678
- ]
- ]
- ],
- [
- [
- [
- 0.03623577207326889
- ]
- ]
- ],
- [
- [
- [
- 0.03491956740617752
- ]
- ]
- ],
- [
- [
- [
- 0.024354903027415276
- ]
- ]
- ],
- [
- [
- [
- 0.06594093888998032
- ]
- ]
- ],
- [
- [
- [
- 0.05639723688364029
- ]
- ]
- ],
- [
- [
- [
- 0.03724018856883049
- ]
- ]
- ],
- [
- [
- [
- 0.046436816453933716
- ]
- ]
- ],
- [
- [
- [
- 0.044450316578149796
- ]
- ]
- ],
- [
- [
- [
- 0.03475113958120346
- ]
- ]
- ],
- [
- [
- [
- 0.03232420235872269
- ]
- ]
- ],
- [
- [
- [
- 0.04301406070590019
- ]
- ]
- ],
- [
- [
- [
- 0.035926997661590576
- ]
- ]
- ],
- [
- [
- [
- 0.05586111545562744
- ]
- ]
- ],
- [
- [
- [
- 0.06060151010751724
- ]
- ]
- ],
- [
- [
- [
- 0.04344186931848526
- ]
- ]
- ],
- [
- [
- [
- 0.04946756362915039
- ]
- ]
- ],
- [
- [
- [
- 0.06633355468511581
- ]
- ]
- ],
- [
- [
- [
- 0.0370912067592144
- ]
- ]
- ],
- [
- [
- [
- 0.0830923467874527
- ]
- ]
- ],
- [
- [
- [
- 0.06716733425855637
- ]
- ]
- ],
- [
- [
- [
- 0.03640762344002724
- ]
- ]
- ],
- [
- [
- [
- 0.029078008607029915
- ]
- ]
- ],
- [
- [
- [
- 0.05142870172858238
- ]
- ]
- ],
- [
- [
- [
- 0.034790147095918655
- ]
- ]
- ],
- [
- [
- [
- 0.032619770616292953
- ]
- ]
- ],
- [
- [
- [
- 0.044493772089481354
- ]
- ]
- ],
- [
- [
- [
- 0.039537183940410614
- ]
- ]
- ],
- [
- [
- [
- 0.05771690607070923
- ]
- ]
- ],
- [
- [
- [
- 0.04061007872223854
- ]
- ]
- ],
- [
- [
- [
- 0.0516488216817379
- ]
- ]
- ],
- [
- [
- [
- 0.03870105370879173
- ]
- ]
- ],
- [
- [
- [
- 0.03722478821873665
- ]
- ]
- ],
- [
- [
- [
- 0.03233969211578369
- ]
- ]
- ],
- [
- [
- [
- 0.06962307542562485
- ]
- ]
- ],
- [
- [
- [
- 0.04285705089569092
- ]
- ]
- ],
- [
- [
- [
- 0.043680913746356964
- ]
- ]
- ],
- [
- [
- [
- 0.030660370364785194
- ]
- ]
- ],
- [
- [
- [
- 0.0317404679954052
- ]
- ]
- ],
- [
- [
- [
- 0.029225680977106094
- ]
- ]
- ],
- [
- [
- [
- 0.03536823019385338
- ]
- ]
- ],
- [
- [
- [
- 0.0382460355758667
- ]
- ]
- ],
- [
- [
- [
- 0.05842171236872673
- ]
- ]
- ],
- [
- [
- [
- 0.03329859673976898
- ]
- ]
- ],
- [
- [
- [
- 0.029414990916848183
- ]
- ]
- ],
- [
- [
- [
- 0.035236094146966934
- ]
- ]
- ],
- [
- [
- [
- 0.02771538868546486
- ]
- ]
- ],
- [
- [
- [
- 0.049047231674194336
- ]
- ]
- ],
- [
- [
- [
- 0.0381055548787117
- ]
- ]
- ],
- [
- [
- [
- 0.04481690004467964
- ]
- ]
- ],
- [
- [
- [
- 0.04134872928261757
- ]
- ]
- ],
- [
- [
- [
- 0.033979594707489014
- ]
- ]
- ],
- [
- [
- [
- 0.038507986813783646
- ]
- ]
- ],
- [
- [
- [
- 0.046335987746715546
- ]
- ]
- ],
- [
- [
- [
- 0.019298044964671135
- ]
- ]
- ],
- [
- [
- [
- 0.02755465731024742
- ]
- ]
- ],
- [
- [
- [
- 0.042554765939712524
- ]
- ]
- ],
- [
- [
- [
- 0.034139253199100494
- ]
- ]
- ],
- [
- [
- [
- 0.03714199364185333
- ]
- ]
- ],
- [
- [
- [
- 0.04167892411351204
- ]
- ]
- ],
- [
- [
- [
- 0.040669627487659454
- ]
- ]
- ],
- [
- [
- [
- 0.046107515692710876
- ]
- ]
- ],
- [
- [
- [
- 0.05236728861927986
- ]
- ]
- ],
- [
- [
- [
- 0.04518190026283264
- ]
- ]
- ],
- [
- [
- [
- 0.037280455231666565
- ]
- ]
- ],
- [
- [
- [
- 0.0756673514842987
- ]
- ]
- ],
- [
- [
- [
- 0.036026690155267715
- ]
- ]
- ],
- [
- [
- [
- 0.03412859886884689
- ]
- ]
- ],
- [
- [
- [
- 0.04209030792117119
- ]
- ]
- ],
- [
- [
- [
- 0.03164730966091156
- ]
- ]
- ],
- [
- [
- [
- 0.032094553112983704
- ]
- ]
- ],
- [
- [
- [
- 0.03810131177306175
- ]
- ]
- ],
- [
- [
- [
- 0.02771913819015026
- ]
- ]
- ],
- [
- [
- [
- 0.03357061743736267
- ]
- ]
- ],
- [
- [
- [
- 0.03505298122763634
- ]
- ]
- ],
- [
- [
- [
- 0.06212979182600975
- ]
- ]
- ],
- [
- [
- [
- 0.03581423684954643
- ]
- ]
- ],
- [
- [
- [
- 0.030637452378869057
- ]
- ]
- ],
- [
- [
- [
- 0.04505368694663048
- ]
- ]
- ],
- [
- [
- [
- 0.038616590201854706
- ]
- ]
- ],
- [
- [
- [
- 0.03270649537444115
- ]
- ]
- ],
- [
- [
- [
- 0.035444460809230804
- ]
- ]
- ],
- [
- [
- [
- 0.03683904558420181
- ]
- ]
- ],
- [
- [
- [
- 0.03164767101407051
- ]
- ]
- ],
- [
- [
- [
- 0.048190128058195114
- ]
- ]
- ],
- [
- [
- [
- 0.04172312468290329
- ]
- ]
- ],
- [
- [
- [
- 0.03968976065516472
- ]
- ]
- ],
- [
- [
- [
- 0.036394502967596054
- ]
- ]
- ],
- [
- [
- [
- 0.036441124975681305
- ]
- ]
- ],
- [
- [
- [
- 0.03075777366757393
- ]
- ]
- ],
- [
- [
- [
- 0.042357344180345535
- ]
- ]
- ],
- [
- [
- [
- 0.05425402894616127
- ]
- ]
- ],
- [
- [
- [
- 0.04285291209816933
- ]
- ]
- ],
- [
- [
- [
- 0.038705483078956604
- ]
- ]
- ],
- [
- [
- [
- 0.040995024144649506
- ]
- ]
- ],
- [
- [
- [
- 0.05983557179570198
- ]
- ]
- ],
- [
- [
- [
- 0.05537007376551628
- ]
- ]
- ],
- [
- [
- [
- 0.04154233634471893
- ]
- ]
- ],
- [
- [
- [
- 0.04117961600422859
- ]
- ]
- ],
- [
- [
- [
- 0.03946366906166077
- ]
- ]
- ],
- [
- [
- [
- 0.031163813546299934
- ]
- ]
- ],
- [
- [
- [
- 0.04542817175388336
- ]
- ]
- ],
- [
- [
- [
- 0.0907159224152565
- ]
- ]
- ],
- [
- [
- [
- 0.03212418407201767
- ]
- ]
- ],
- [
- [
- [
- 0.03939588740468025
- ]
- ]
- ],
- [
- [
- [
- 0.0390639528632164
- ]
- ]
- ],
- [
- [
- [
- 0.06853688508272171
- ]
- ]
- ],
- [
- [
- [
- 0.037842147052288055
- ]
- ]
- ],
- [
- [
- [
- 0.03119342029094696
- ]
- ]
- ],
- [
- [
- [
- 0.052754200994968414
- ]
- ]
- ],
- [
- [
- [
- 0.06210914999246597
- ]
- ]
- ],
- [
- [
- [
- 0.03193489462137222
- ]
- ]
- ],
- [
- [
- [
- 0.03900056704878807
- ]
- ]
- ],
- [
- [
- [
- 0.03312145173549652
- ]
- ]
- ],
- [
- [
- [
- 0.05922767147421837
- ]
- ]
- ],
- [
- [
- [
- 0.03970002755522728
- ]
- ]
- ],
- [
- [
- [
- 0.07441844791173935
- ]
- ]
- ],
- [
- [
- [
- 0.034485843032598495
- ]
- ]
- ],
- [
- [
- [
- 0.039073165506124496
- ]
- ]
- ],
- [
- [
- [
- 0.030020464211702347
- ]
- ]
- ],
- [
- [
- [
- 0.0640251412987709
- ]
- ]
- ],
- [
- [
- [
- 0.06430987268686295
- ]
- ]
- ],
- [
- [
- [
- 0.051140863448381424
- ]
- ]
- ],
- [
- [
- [
- 0.03822903707623482
- ]
- ]
- ],
- [
- [
- [
- 0.03774797171354294
- ]
- ]
- ],
- [
- [
- [
- 0.037639934569597244
- ]
- ]
- ],
- [
- [
- [
- 0.035608045756816864
- ]
- ]
- ],
- [
- [
- [
- 0.043284621089696884
- ]
- ]
- ],
- [
- [
- [
- 0.0370304211974144
- ]
- ]
- ],
- [
- [
- [
- 0.032314036041498184
- ]
- ]
- ],
- [
- [
- [
- 0.02660265564918518
- ]
- ]
- ],
- [
- [
- [
- 0.05411161482334137
- ]
- ]
- ],
- [
- [
- [
- 0.030090946704149246
- ]
- ]
- ],
- [
- [
- [
- 0.03494611382484436
- ]
- ]
- ],
- [
- [
- [
- 0.03035469725728035
- ]
- ]
- ],
- [
- [
- [
- 0.03276047855615616
- ]
- ]
- ],
- [
- [
- [
- 0.044150400906801224
- ]
- ]
- ],
- [
- [
- [
- 0.05680425837635994
- ]
- ]
- ],
- [
- [
- [
- 0.03472881391644478
- ]
- ]
- ],
- [
- [
- [
- 0.03327135741710663
- ]
- ]
- ],
- [
- [
- [
- 0.03935960680246353
- ]
- ]
- ],
- [
- [
- [
- 0.03434077277779579
- ]
- ]
- ],
- [
- [
- [
- 0.037435129284858704
- ]
- ]
- ],
- [
- [
- [
- 0.06330116093158722
- ]
- ]
- ],
- [
- [
- [
- 0.02752861939370632
- ]
- ]
- ],
- [
- [
- [
- 0.04295704886317253
- ]
- ]
- ],
- [
- [
- [
- 0.032372258603572845
- ]
- ]
- ],
- [
- [
- [
- 0.03466672822833061
- ]
- ]
- ],
- [
- [
- [
- 0.03207859769463539
- ]
- ]
- ],
- [
- [
- [
- 0.03484901040792465
- ]
- ]
- ],
- [
- [
- [
- 0.041798289865255356
- ]
- ]
- ],
- [
- [
- [
- 0.034427329897880554
- ]
- ]
- ],
- [
- [
- [
- 0.031593453139066696
- ]
- ]
- ],
- [
- [
- [
- 0.03776877000927925
- ]
- ]
- ],
- [
- [
- [
- 0.02790505439043045
- ]
- ]
- ],
- [
- [
- [
- 0.06570174545049667
- ]
- ]
- ],
- [
- [
- [
- 0.02972835674881935
- ]
- ]
- ],
- [
- [
- [
- 0.033917978405952454
- ]
- ]
- ],
- [
- [
- [
- 0.05485783889889717
- ]
- ]
- ],
- [
- [
- [
- 0.0480397567152977
- ]
- ]
- ],
- [
- [
- [
- 0.04836508259177208
- ]
- ]
- ],
- [
- [
- [
- 0.04141492024064064
- ]
- ]
- ],
- [
- [
- [
- 0.041322898119688034
- ]
- ]
- ],
- [
- [
- [
- 0.07862960547208786
- ]
- ]
- ],
- [
- [
- [
- 0.03651628643274307
- ]
- ]
- ],
- [
- [
- [
- 0.07565409690141678
- ]
- ]
- ],
- [
- [
- [
- 0.034765273332595825
- ]
- ]
- ],
- [
- [
- [
- 0.034393783658742905
- ]
- ]
- ],
- [
- [
- [
- 0.04664672166109085
- ]
- ]
- ],
- [
- [
- [
- 0.04186774417757988
- ]
- ]
- ],
- [
- [
- [
- 0.029703667387366295
- ]
- ]
- ],
- [
- [
- [
- 0.06952790170907974
- ]
- ]
- ],
- [
- [
- [
- 0.050361502915620804
- ]
- ]
- ],
- [
- [
- [
- 0.04274629428982735
- ]
- ]
- ],
- [
- [
- [
- 0.03907494619488716
- ]
- ]
- ],
- [
- [
- [
- 0.06698577105998993
- ]
- ]
- ],
- [
- [
- [
- 0.03659119829535484
- ]
- ]
- ],
- [
- [
- [
- 0.047653812915086746
- ]
- ]
- ],
- [
- [
- [
- 0.027656814083456993
- ]
- ]
- ],
- [
- [
- [
- 0.034627415239810944
- ]
- ]
- ],
- [
- [
- [
- 0.03988649323582649
- ]
- ]
- ],
- [
- [
- [
- 0.03048333153128624
- ]
- ]
- ],
- [
- [
- [
- 0.03243991360068321
- ]
- ]
- ],
- [
- [
- [
- 0.04180580750107765
- ]
- ]
- ],
- [
- [
- [
- 0.033524397760629654
- ]
- ]
- ],
- [
- [
- [
- 0.032647132873535156
- ]
- ]
- ],
- [
- [
- [
- 0.03758316487073898
- ]
- ]
- ],
- [
- [
- [
- 0.029778894037008286
- ]
- ]
- ],
- [
- [
- [
- 0.03366637974977493
- ]
- ]
- ],
- [
- [
- [
- 0.03300342708826065
- ]
- ]
- ],
- [
- [
- [
- 0.03791321441531181
- ]
- ]
- ],
- [
- [
- [
- 0.034650448709726334
- ]
- ]
- ],
- [
- [
- [
- 0.05171716958284378
- ]
- ]
- ],
- [
- [
- [
- 0.03098304383456707
- ]
- ]
- ],
- [
- [
- [
- 0.04409071430563927
- ]
- ]
- ],
- [
- [
- [
- 0.03343130275607109
- ]
- ]
- ],
- [
- [
- [
- 0.02800634875893593
- ]
- ]
- ],
- [
- [
- [
- 0.03373754769563675
- ]
- ]
- ],
- [
- [
- [
- 0.035008613020181656
- ]
- ]
- ],
- [
- [
- [
- 0.03939009830355644
- ]
- ]
- ],
- [
- [
- [
- 0.03428308293223381
- ]
- ]
- ],
- [
- [
- [
- 0.03769834712147713
- ]
- ]
- ],
- [
- [
- [
- 0.034773606806993484
- ]
- ]
- ],
- [
- [
- [
- 0.041339267045259476
- ]
- ]
- ],
- [
- [
- [
- 0.03076154738664627
- ]
- ]
- ],
- [
- [
- [
- 0.04969344660639763
- ]
- ]
- ],
- [
- [
- [
- 0.03862404823303223
- ]
- ]
- ],
- [
- [
- [
- 0.04363154619932175
- ]
- ]
- ],
- [
- [
- [
- 0.03621627762913704
- ]
- ]
- ],
- [
- [
- [
- 0.04887732118368149
- ]
- ]
- ],
- [
- [
- [
- 0.04003177210688591
- ]
- ]
- ],
- [
- [
- [
- 0.0601038858294487
- ]
- ]
- ],
- [
- [
- [
- 0.03674643486738205
- ]
- ]
- ],
- [
- [
- [
- 0.034997910261154175
- ]
- ]
- ],
- [
- [
- [
- 0.041870396584272385
- ]
- ]
- ],
- [
- [
- [
- 0.031856611371040344
- ]
- ]
- ],
- [
- [
- [
- 0.035118360072374344
- ]
- ]
- ],
- [
- [
- [
- 0.031184392049908638
- ]
- ]
- ],
- [
- [
- [
- 0.06711138784885406
- ]
- ]
- ],
- [
- [
- [
- 0.037421729415655136
- ]
- ]
- ],
- [
- [
- [
- 0.02982216328382492
- ]
- ]
- ],
- [
- [
- [
- 0.03713086619973183
- ]
- ]
- ],
- [
- [
- [
- 0.04279274493455887
- ]
- ]
- ],
- [
- [
- [
- 0.03141489252448082
- ]
- ]
- ],
- [
- [
- [
- 0.0346524603664875
- ]
- ]
- ],
- [
- [
- [
- 0.03527962788939476
- ]
- ]
- ],
- [
- [
- [
- 0.035479653626680374
- ]
- ]
- ],
- [
- [
- [
- 0.03545263037085533
- ]
- ]
- ],
- [
- [
- [
- 0.04659697785973549
- ]
- ]
- ],
- [
- [
- [
- 0.04782481491565704
- ]
- ]
- ],
- [
- [
- [
- 0.03545992821455002
- ]
- ]
- ],
- [
- [
- [
- 0.033041320741176605
- ]
- ]
- ],
- [
- [
- [
- 0.03755947947502136
- ]
- ]
- ],
- [
- [
- [
- 0.037558868527412415
- ]
- ]
- ],
- [
- [
- [
- 0.032106831669807434
- ]
- ]
- ],
- [
- [
- [
- 0.03432776778936386
- ]
- ]
- ],
- [
- [
- [
- 0.05079035833477974
- ]
- ]
- ],
- [
- [
- [
- 0.07614286243915558
- ]
- ]
- ],
- [
- [
- [
- 0.03484952449798584
- ]
- ]
- ],
- [
- [
- [
- 0.033543672412633896
- ]
- ]
- ],
- [
- [
- [
- 0.04104761779308319
- ]
- ]
- ],
- [
- [
- [
- 0.06048652157187462
- ]
- ]
- ],
- [
- [
- [
- 0.07968276739120483
- ]
- ]
- ],
- [
- [
- [
- 0.0435795895755291
- ]
- ]
- ],
- [
- [
- [
- 0.06549122929573059
- ]
- ]
- ],
- [
- [
- [
- 0.039801303297281265
- ]
- ]
- ],
- [
- [
- [
- 0.027248738333582878
- ]
- ]
- ],
- [
- [
- [
- 0.03597860038280487
- ]
- ]
- ],
- [
- [
- [
- 0.04769052565097809
- ]
- ]
- ],
- [
- [
- [
- 0.03415066748857498
- ]
- ]
- ],
- [
- [
- [
- 0.05259673297405243
- ]
- ]
- ],
- [
- [
- [
- 0.03124968521296978
- ]
- ]
- ],
- [
- [
- [
- 0.03382129594683647
- ]
- ]
- ],
- [
- [
- [
- 0.0427110493183136
- ]
- ]
- ],
- [
- [
- [
- 0.05859317630529404
- ]
- ]
- ],
- [
- [
- [
- 0.0458543598651886
- ]
- ]
- ],
- [
- [
- [
- 0.04076540097594261
- ]
- ]
- ],
- [
- [
- [
- 0.02689000964164734
- ]
- ]
- ],
- [
- [
- [
- 0.039229873567819595
- ]
- ]
- ],
- [
- [
- [
- 0.03878520801663399
- ]
- ]
- ],
- [
- [
- [
- 0.034435633569955826
- ]
- ]
- ],
- [
- [
- [
- 0.03984743729233742
- ]
- ]
- ],
- [
- [
- [
- 0.038396403193473816
- ]
- ]
- ],
- [
- [
- [
- 0.050103809684515
- ]
- ]
- ],
- [
- [
- [
- 0.032181497663259506
- ]
- ]
- ],
- [
- [
- [
- 0.07672063261270523
- ]
- ]
- ],
- [
- [
- [
- 0.03278270363807678
- ]
- ]
- ],
- [
- [
- [
- 0.032958947122097015
- ]
- ]
- ],
- [
- [
- [
- 0.028835413977503777
- ]
- ]
- ],
- [
- [
- [
- 0.03521037474274635
- ]
- ]
- ],
- [
- [
- [
- 0.06864071637392044
- ]
- ]
- ],
- [
- [
- [
- 0.029206182807683945
- ]
- ]
- ],
- [
- [
- [
- 0.03607212379574776
- ]
- ]
- ],
- [
- [
- [
- 0.03496142476797104
- ]
- ]
- ],
- [
- [
- [
- 0.03603910282254219
- ]
- ]
- ],
- [
- [
- [
- 0.04238876327872276
- ]
- ]
- ],
- [
- [
- [
- 0.053925685584545135
- ]
- ]
- ],
- [
- [
- [
- 0.035604532808065414
- ]
- ]
- ],
- [
- [
- [
- 0.041708528995513916
- ]
- ]
- ],
- [
- [
- [
- 0.03089599497616291
- ]
- ]
- ],
- [
- [
- [
- 0.030886288732290268
- ]
- ]
- ],
- [
- [
- [
- 0.03523436188697815
- ]
- ]
- ],
- [
- [
- [
- 0.06941303610801697
- ]
- ]
- ],
- [
- [
- [
- 0.056606415659189224
- ]
- ]
- ],
- [
- [
- [
- 0.04071033373475075
- ]
- ]
- ],
- [
- [
- [
- 0.038799598813056946
- ]
- ]
- ],
- [
- [
- [
- 0.03498181328177452
- ]
- ]
- ],
- [
- [
- [
- 0.036877263337373734
- ]
- ]
- ],
- [
- [
- [
- 0.03806427866220474
- ]
- ]
- ],
- [
- [
- [
- 0.049291208386421204
- ]
- ]
- ],
- [
- [
- [
- 0.051016926765441895
- ]
- ]
- ],
- [
- [
- [
- 0.028370734304189682
- ]
- ]
- ],
- [
- [
- [
- 0.05357551947236061
- ]
- ]
- ],
- [
- [
- [
- 0.012477648444473743
- ]
- ]
- ],
- [
- [
- [
- 0.026037951931357384
- ]
- ]
- ],
- [
- [
- [
- 0.037974677979946136
- ]
- ]
- ],
- [
- [
- [
- 0.037273526191711426
- ]
- ]
- ],
- [
- [
- [
- 0.030716653913259506
- ]
- ]
- ],
- [
- [
- [
- 0.05730998143553734
- ]
- ]
- ],
- [
- [
- [
- 0.038712549954652786
- ]
- ]
- ],
- [
- [
- [
- 0.025379862636327744
- ]
- ]
- ],
- [
- [
- [
- 0.04374555125832558
- ]
- ]
- ],
- [
- [
- [
- 0.03278234228491783
- ]
- ]
- ],
- [
- [
- [
- 0.05965641885995865
- ]
- ]
- ],
- [
- [
- [
- 0.039301104843616486
- ]
- ]
- ],
- [
- [
- [
- 0.03303905203938484
- ]
- ]
- ],
- [
- [
- [
- 0.03345690295100212
- ]
- ]
- ],
- [
- [
- [
- 0.042830921709537506
- ]
- ]
- ],
- [
- [
- [
- 0.03438234701752663
- ]
- ]
- ],
- [
- [
- [
- 0.03128546476364136
- ]
- ]
- ],
- [
- [
- [
- 0.024333810433745384
- ]
- ]
- ],
- [
- [
- [
- 0.03289274126291275
- ]
- ]
- ],
- [
- [
- [
- 0.05052318796515465
- ]
- ]
- ],
- [
- [
- [
- 0.03122764453291893
- ]
- ]
- ],
- [
- [
- [
- 0.041686251759529114
- ]
- ]
- ],
- [
- [
- [
- 0.038104161620140076
- ]
- ]
- ],
- [
- [
- [
- 0.04780889302492142
- ]
- ]
- ],
- [
- [
- [
- 0.0340031236410141
- ]
- ]
- ],
- [
- [
- [
- 0.038727037608623505
- ]
- ]
- ],
- [
- [
- [
- 0.028887221589684486
- ]
- ]
- ],
- [
- [
- [
- 0.0404561348259449
- ]
- ]
- ],
- [
- [
- [
- 0.06980665773153305
- ]
- ]
- ],
- [
- [
- [
- 0.043316423892974854
- ]
- ]
- ],
- [
- [
- [
- 0.037225302308797836
- ]
- ]
- ],
- [
- [
- [
- 0.037971653044223785
- ]
- ]
- ],
- [
- [
- [
- 0.027439963072538376
- ]
- ]
- ],
- [
- [
- [
- 0.08103181421756744
- ]
- ]
- ],
- [
- [
- [
- 0.03407220169901848
- ]
- ]
- ],
- [
- [
- [
- 0.039145853370428085
- ]
- ]
- ],
- [
- [
- [
- 0.0379805825650692
- ]
- ]
- ],
- [
- [
- [
- 0.03509172052145004
- ]
- ]
- ],
- [
- [
- [
- 0.044353827834129333
- ]
- ]
- ],
- [
- [
- [
- 0.034144215285778046
- ]
- ]
- ],
- [
- [
- [
- 0.030500812456011772
- ]
- ]
- ],
- [
- [
- [
- 0.06080946326255798
- ]
- ]
- ],
- [
- [
- [
- 0.0383259616792202
- ]
- ]
- ],
- [
- [
- [
- 0.033406294882297516
- ]
- ]
- ],
- [
- [
- [
- 0.06884738057851791
- ]
- ]
- ],
- [
- [
- [
- 0.036758266389369965
- ]
- ]
- ],
- [
- [
- [
- 0.12942034006118774
- ]
- ]
- ],
- [
- [
- [
- 0.0397239625453949
- ]
- ]
- ],
- [
- [
- [
- 0.03244343027472496
- ]
- ]
- ],
- [
- [
- [
- 0.0366375595331192
- ]
- ]
- ],
- [
- [
- [
- 0.03695637732744217
- ]
- ]
- ],
- [
- [
- [
- 0.04303962364792824
- ]
- ]
- ],
- [
- [
- [
- 0.04127557575702667
- ]
- ]
- ],
- [
- [
- [
- 0.05068061128258705
- ]
- ]
- ],
- [
- [
- [
- 0.03530259430408478
- ]
- ]
- ],
- [
- [
- [
- 0.07922579348087311
- ]
- ]
- ],
- [
- [
- [
- 0.03700695559382439
- ]
- ]
- ],
- [
- [
- [
- 0.05581717565655708
- ]
- ]
- ],
- [
- [
- [
- 0.04311869665980339
- ]
- ]
- ],
- [
- [
- [
- 0.03061428666114807
- ]
- ]
- ],
- [
- [
- [
- 0.03823637217283249
- ]
- ]
- ],
- [
- [
- [
- 0.02718937024474144
- ]
- ]
- ],
- [
- [
- [
- 0.03305919095873833
- ]
- ]
- ],
- [
- [
- [
- 0.03102000430226326
- ]
- ]
- ],
- [
- [
- [
- 0.10503868013620377
- ]
- ]
- ],
- [
- [
- [
- 0.03070424124598503
- ]
- ]
- ],
- [
- [
- [
- 0.03737448528409004
- ]
- ]
- ],
- [
- [
- [
- 0.036975469440221786
- ]
- ]
- ],
- [
- [
- [
- 0.03001571260392666
- ]
- ]
- ],
- [
- [
- [
- 0.02831878699362278
- ]
- ]
- ],
- [
- [
- [
- 0.03729076310992241
- ]
- ]
- ],
- [
- [
- [
- 0.035546980798244476
- ]
- ]
- ],
- [
- [
- [
- 0.038111355155706406
- ]
- ]
- ],
- [
- [
- [
- 0.04113825410604477
- ]
- ]
- ],
- [
- [
- [
- 0.03380250930786133
- ]
- ]
- ],
- [
- [
- [
- 0.03424890711903572
- ]
- ]
- ],
- [
- [
- [
- 0.03237059339880943
- ]
- ]
- ],
- [
- [
- [
- 0.035836681723594666
- ]
- ]
- ],
- [
- [
- [
- 0.028251394629478455
- ]
- ]
- ],
- [
- [
- [
- 0.044424451887607574
- ]
- ]
- ],
- [
- [
- [
- 0.030882731080055237
- ]
- ]
- ],
- [
- [
- [
- 0.05116137117147446
- ]
- ]
- ],
- [
- [
- [
- 0.04150106757879257
- ]
- ]
- ],
- [
- [
- [
- 0.05628727376461029
- ]
- ]
- ],
- [
- [
- [
- 0.030644262209534645
- ]
- ]
- ],
- [
- [
- [
- 0.0374220535159111
- ]
- ]
- ],
- [
- [
- [
- 0.032951902598142624
- ]
- ]
- ],
- [
- [
- [
- 0.03977156803011894
- ]
- ]
- ],
- [
- [
- [
- 0.034272629767656326
- ]
- ]
- ],
- [
- [
- [
- 0.05871386080980301
- ]
- ]
- ],
- [
- [
- [
- 0.04073125496506691
- ]
- ]
- ],
- [
- [
- [
- 0.04160197824239731
- ]
- ]
- ],
- [
- [
- [
- 0.03533739596605301
- ]
- ]
- ],
- [
- [
- [
- 0.06106550991535187
- ]
- ]
- ],
- [
- [
- [
- 0.02958003617823124
- ]
- ]
- ],
- [
- [
- [
- 0.04211927950382233
- ]
- ]
- ],
- [
- [
- [
- 0.03242926672101021
- ]
- ]
- ],
- [
- [
- [
- 0.03384038433432579
- ]
- ]
- ],
- [
- [
- [
- 0.04590848088264465
- ]
- ]
- ],
- [
- [
- [
- 0.03830850124359131
- ]
- ]
- ],
- [
- [
- [
- 0.07142779976129532
- ]
- ]
- ],
- [
- [
- [
- 0.04162156581878662
- ]
- ]
- ],
- [
- [
- [
- 0.02859834022819996
- ]
- ]
- ],
- [
- [
- [
- 0.06921238452196121
- ]
- ]
- ],
- [
- [
- [
- 0.03611631318926811
- ]
- ]
- ],
- [
- [
- [
- 0.051260966807603836
- ]
- ]
- ],
- [
- [
- [
- 0.0362793393433094
- ]
- ]
- ],
- [
- [
- [
- 0.030514264479279518
- ]
- ]
- ],
- [
- [
- [
- 0.03383981063961983
- ]
- ]
- ],
- [
- [
- [
- 0.03404109925031662
- ]
- ]
- ],
- [
- [
- [
- 0.03849002346396446
- ]
- ]
- ],
- [
- [
- [
- 0.03283355385065079
- ]
- ]
- ],
- [
- [
- [
- 0.03343402221798897
- ]
- ]
- ],
- [
- [
- [
- 0.04307730868458748
- ]
- ]
- ],
- [
- [
- [
- 0.037439122796058655
- ]
- ]
- ],
- [
- [
- [
- 0.044803764671087265
- ]
- ]
- ],
- [
- [
- [
- 0.03386695683002472
- ]
- ]
- ],
- [
- [
- [
- 0.03187674656510353
- ]
- ]
- ],
- [
- [
- [
- 0.03248756378889084
- ]
- ]
- ],
- [
- [
- [
- 0.06604462116956711
- ]
- ]
- ],
- [
- [
- [
- 0.03442730754613876
- ]
- ]
- ],
- [
- [
- [
- 0.04812945798039436
- ]
- ]
- ],
- [
- [
- [
- 0.06302954256534576
- ]
- ]
- ],
- [
- [
- [
- 0.05978774651885033
- ]
- ]
- ],
- [
- [
- [
- 0.03831271082162857
- ]
- ]
- ],
- [
- [
- [
- 0.03770030289888382
- ]
- ]
- ],
- [
- [
- [
- 0.05869532376527786
- ]
- ]
- ],
- [
- [
- [
- 0.07023829221725464
- ]
- ]
- ],
- [
- [
- [
- 0.032192423939704895
- ]
- ]
- ],
- [
- [
- [
- 0.05044644698500633
- ]
- ]
- ],
- [
- [
- [
- 0.03372843191027641
- ]
- ]
- ],
- [
- [
- [
- 0.06296705454587936
- ]
- ]
- ],
- [
- [
- [
- 0.03268309682607651
- ]
- ]
- ],
- [
- [
- [
- 0.043256305158138275
- ]
- ]
- ],
- [
- [
- [
- 0.0373028963804245
- ]
- ]
- ],
- [
- [
- [
- 0.05304780974984169
- ]
- ]
- ],
- [
- [
- [
- 0.07105700671672821
- ]
- ]
- ],
- [
- [
- [
- 0.038297705352306366
- ]
- ]
- ],
- [
- [
- [
- 0.030966049060225487
- ]
- ]
- ],
- [
- [
- [
- 0.04563850909471512
- ]
- ]
- ],
- [
- [
- [
- 0.04091161862015724
- ]
- ]
- ],
- [
- [
- [
- 0.04391777515411377
- ]
- ]
- ],
- [
- [
- [
- 0.0331270694732666
- ]
- ]
- ],
- [
- [
- [
- 0.04344095662236214
- ]
- ]
- ],
- [
- [
- [
- 0.03271510824561119
- ]
- ]
- ],
- [
- [
- [
- 0.033240221440792084
- ]
- ]
- ],
- [
- [
- [
- 0.040308792144060135
- ]
- ]
- ],
- [
- [
- [
- 0.037175025790929794
- ]
- ]
- ],
- [
- [
- [
- 0.03380199149250984
- ]
- ]
- ],
- [
- [
- [
- 0.04323612526059151
- ]
- ]
- ],
- [
- [
- [
- 0.04153027758002281
- ]
- ]
- ],
- [
- [
- [
- 0.08007393032312393
- ]
- ]
- ],
- [
- [
- [
- 0.040955670177936554
- ]
- ]
- ],
- [
- [
- [
- 0.06471940129995346
- ]
- ]
- ],
- [
- [
- [
- 0.0606420636177063
- ]
- ]
- ],
- [
- [
- [
- 0.04721680283546448
- ]
- ]
- ],
- [
- [
- [
- 0.034385718405246735
- ]
- ]
- ],
- [
- [
- [
- 0.032241370528936386
- ]
- ]
- ],
- [
- [
- [
- 0.03759273886680603
- ]
- ]
- ],
- [
- [
- [
- 0.04705129191279411
- ]
- ]
- ],
- [
- [
- [
- 0.041907746344804764
- ]
- ]
- ],
- [
- [
- [
- 0.03700495883822441
- ]
- ]
- ],
- [
- [
- [
- 0.054134566336870193
- ]
- ]
- ],
- [
- [
- [
- 0.03679701313376427
- ]
- ]
- ],
- [
- [
- [
- 0.027172571048140526
- ]
- ]
- ],
- [
- [
- [
- 0.03609693422913551
- ]
- ]
- ],
- [
- [
- [
- 0.027830850332975388
- ]
- ]
- ],
- [
- [
- [
- 0.038279708474874496
- ]
- ]
- ],
- [
- [
- [
- 0.04415452852845192
- ]
- ]
- ],
- [
- [
- [
- 0.032909851521253586
- ]
- ]
- ],
- [
- [
- [
- 0.084637850522995
- ]
- ]
- ],
- [
- [
- [
- 0.03384314104914665
- ]
- ]
- ],
- [
- [
- [
- 0.034919898957014084
- ]
- ]
- ],
- [
- [
- [
- 0.031461212784051895
- ]
- ]
- ],
- [
- [
- [
- 0.03606391325592995
- ]
- ]
- ],
- [
- [
- [
- 0.04785027727484703
- ]
- ]
- ],
- [
- [
- [
- 0.030733255669474602
- ]
- ]
- ],
- [
- [
- [
- 0.028861280530691147
- ]
- ]
- ],
- [
- [
- [
- 0.03426424041390419
- ]
- ]
- ],
- [
- [
- [
- 0.03281340003013611
- ]
- ]
- ],
- [
- [
- [
- 0.035501349717378616
- ]
- ]
- ],
- [
- [
- [
- 0.0565536804497242
- ]
- ]
- ],
- [
- [
- [
- 0.04713457450270653
- ]
- ]
- ],
- [
- [
- [
- 0.04047410190105438
- ]
- ]
- ],
- [
- [
- [
- 0.030533738434314728
- ]
- ]
- ],
- [
- [
- [
- 0.05733286961913109
- ]
- ]
- ],
- [
- [
- [
- 0.029280252754688263
- ]
- ]
- ],
- [
- [
- [
- 0.05995039641857147
- ]
- ]
- ],
- [
- [
- [
- 0.03414404019713402
- ]
- ]
- ],
- [
- [
- [
- 0.031162528321146965
- ]
- ]
- ],
- [
- [
- [
- 0.05529338866472244
- ]
- ]
- ],
- [
- [
- [
- 0.041553087532520294
- ]
- ]
- ],
- [
- [
- [
- 0.03407485783100128
- ]
- ]
- ],
- [
- [
- [
- 0.08021681010723114
- ]
- ]
- ],
- [
- [
- [
- 0.07208540290594101
- ]
- ]
- ],
- [
- [
- [
- 0.041135262697935104
- ]
- ]
- ],
- [
- [
- [
- 0.035251207649707794
- ]
- ]
- ],
- [
- [
- [
- 0.049896422773599625
- ]
- ]
- ],
- [
- [
- [
- 0.08242014795541763
- ]
- ]
- ],
- [
- [
- [
- 0.037995290011167526
- ]
- ]
- ],
- [
- [
- [
- 0.03501231223344803
- ]
- ]
- ],
- [
- [
- [
- 0.05200492590665817
- ]
- ]
- ],
- [
- [
- [
- 0.06204942241311073
- ]
- ]
- ],
- [
- [
- [
- 0.06910652667284012
- ]
- ]
- ],
- [
- [
- [
- 0.032587021589279175
- ]
- ]
- ],
- [
- [
- [
- 0.03392258286476135
- ]
- ]
- ],
- [
- [
- [
- 0.03342312574386597
- ]
- ]
- ],
- [
- [
- [
- 0.02373618446290493
- ]
- ]
- ],
- [
- [
- [
- 0.03866971284151077
- ]
- ]
- ],
- [
- [
- [
- 0.03260860964655876
- ]
- ]
- ],
- [
- [
- [
- 0.03314601257443428
- ]
- ]
- ],
- [
- [
- [
- 0.029359139502048492
- ]
- ]
- ],
- [
- [
- [
- 0.07682083547115326
- ]
- ]
- ],
- [
- [
- [
- 0.0342557393014431
- ]
- ]
- ],
- [
- [
- [
- 0.03469952195882797
- ]
- ]
- ],
- [
- [
- [
- 0.0314849391579628
- ]
- ]
- ],
- [
- [
- [
- 0.06117142736911774
- ]
- ]
- ],
- [
- [
- [
- 0.04416368901729584
- ]
- ]
- ],
- [
- [
- [
- 0.0345696359872818
- ]
- ]
- ],
- [
- [
- [
- 0.03480752184987068
- ]
- ]
- ],
- [
- [
- [
- 0.03985096886754036
- ]
- ]
- ],
- [
- [
- [
- 0.03637051209807396
- ]
- ]
- ],
- [
- [
- [
- 0.04126454144716263
- ]
- ]
- ],
- [
- [
- [
- 0.03977629169821739
- ]
- ]
- ],
- [
- [
- [
- 0.05400490015745163
- ]
- ]
- ],
- [
- [
- [
- 0.03173048794269562
- ]
- ]
- ],
- [
- [
- [
- 0.05865045636892319
- ]
- ]
- ],
- [
- [
- [
- 0.04508613795042038
- ]
- ]
- ],
- [
- [
- [
- 0.038319509476423264
- ]
- ]
- ],
- [
- [
- [
- 0.033879492431879044
- ]
- ]
- ],
- [
- [
- [
- 0.050934113562107086
- ]
- ]
- ],
- [
- [
- [
- 0.05498398840427399
- ]
- ]
- ],
- [
- [
- [
- 0.03843039274215698
- ]
- ]
- ],
- [
- [
- [
- 0.06002655252814293
- ]
- ]
- ],
- [
- [
- [
- 0.043717481195926666
- ]
- ]
- ],
- [
- [
- [
- 0.040958844125270844
- ]
- ]
- ],
- [
- [
- [
- 0.034725792706012726
- ]
- ]
- ],
- [
- [
- [
- 0.040714606642723083
- ]
- ]
- ],
- [
- [
- [
- 0.06383658945560455
- ]
- ]
- ],
- [
- [
- [
- 0.027538808062672615
- ]
- ]
- ],
- [
- [
- [
- 0.07063005119562149
- ]
- ]
- ],
- [
- [
- [
- 0.0694078579545021
- ]
- ]
- ],
- [
- [
- [
- 0.034045759588479996
- ]
- ]
- ],
- [
- [
- [
- 0.039702046662569046
- ]
- ]
- ],
- [
- [
- [
- 0.03575372323393822
- ]
- ]
- ],
- [
- [
- [
- 0.03476719930768013
- ]
- ]
- ],
- [
- [
- [
- 0.03487956523895264
- ]
- ]
- ],
- [
- [
- [
- 0.03509645536541939
- ]
- ]
- ],
- [
- [
- [
- 0.03416956216096878
- ]
- ]
- ],
- [
- [
- [
- 0.03450649976730347
- ]
- ]
- ],
- [
- [
- [
- 0.06434483081102371
- ]
- ]
- ],
- [
- [
- [
- 0.06497330963611603
- ]
- ]
- ],
- [
- [
- [
- 0.04397733882069588
- ]
- ]
- ],
- [
- [
- [
- 0.04017805680632591
- ]
- ]
- ],
- [
- [
- [
- 0.03514625132083893
- ]
- ]
- ],
- [
- [
- [
- 0.035985589027404785
- ]
- ]
- ],
- [
- [
- [
- 0.040099114179611206
- ]
- ]
- ],
- [
- [
- [
- 0.0674191564321518
- ]
- ]
- ],
- [
- [
- [
- 0.030339250341057777
- ]
- ]
- ],
- [
- [
- [
- 0.033812254667282104
- ]
- ]
- ],
- [
- [
- [
- 0.03639763221144676
- ]
- ]
- ],
- [
- [
- [
- 0.07950439304113388
- ]
- ]
- ],
- [
- [
- [
- 0.0388793908059597
- ]
- ]
- ],
- [
- [
- [
- 0.02936490997672081
- ]
- ]
- ],
- [
- [
- [
- 0.04564407840371132
- ]
- ]
- ],
- [
- [
- [
- 0.0515303872525692
- ]
- ]
- ],
- [
- [
- [
- 0.03721581771969795
- ]
- ]
- ],
- [
- [
- [
- 0.03273606672883034
- ]
- ]
- ],
- [
- [
- [
- 0.042879387736320496
- ]
- ]
- ],
- [
- [
- [
- 0.03232676163315773
- ]
- ]
- ],
- [
- [
- [
- 0.034471284598112106
- ]
- ]
- ],
- [
- [
- [
- 0.03294673562049866
- ]
- ]
- ],
- [
- [
- [
- 0.07672514766454697
- ]
- ]
- ],
- [
- [
- [
- 0.039100002497434616
- ]
- ]
- ],
- [
- [
- [
- 0.053071994334459305
- ]
- ]
- ],
- [
- [
- [
- 0.035070307552814484
- ]
- ]
- ],
- [
- [
- [
- 0.029490862041711807
- ]
- ]
- ],
- [
- [
- [
- 0.023629380390048027
- ]
- ]
- ],
- [
- [
- [
- 0.03346939757466316
- ]
- ]
- ],
- [
- [
- [
- 0.03268720954656601
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.027616968378424644
- ]
- ]
- ],
- [
- [
- [
- -0.0530647374689579
- ]
- ]
- ],
- [
- [
- [
- -0.039037179201841354
- ]
- ]
- ],
- [
- [
- [
- -0.03589509055018425
- ]
- ]
- ],
- [
- [
- [
- -0.030653556808829308
- ]
- ]
- ],
- [
- [
- [
- -0.039838146418333054
- ]
- ]
- ],
- [
- [
- [
- -0.03743419796228409
- ]
- ]
- ],
- [
- [
- [
- -0.03647410124540329
- ]
- ]
- ],
- [
- [
- [
- -0.04025127366185188
- ]
- ]
- ],
- [
- [
- [
- -0.04448855668306351
- ]
- ]
- ],
- [
- [
- [
- -0.05869768187403679
- ]
- ]
- ],
- [
- [
- [
- -0.05831205099821091
- ]
- ]
- ],
- [
- [
- [
- -0.03918950632214546
- ]
- ]
- ],
- [
- [
- [
- -0.03166942298412323
- ]
- ]
- ],
- [
- [
- [
- -0.03254866600036621
- ]
- ]
- ],
- [
- [
- [
- -0.03690903261303902
- ]
- ]
- ],
- [
- [
- [
- -0.03573523834347725
- ]
- ]
- ],
- [
- [
- [
- -0.042106591165065765
- ]
- ]
- ],
- [
- [
- [
- -0.04072827473282814
- ]
- ]
- ],
- [
- [
- [
- -0.03590909764170647
- ]
- ]
- ],
- [
- [
- [
- -0.034544918686151505
- ]
- ]
- ],
- [
- [
- [
- -0.037732988595962524
- ]
- ]
- ],
- [
- [
- [
- -0.03669963777065277
- ]
- ]
- ],
- [
- [
- [
- -0.04676153510808945
- ]
- ]
- ],
- [
- [
- [
- -0.08379193395376205
- ]
- ]
- ],
- [
- [
- [
- -0.044293180108070374
- ]
- ]
- ],
- [
- [
- [
- -0.038472749292850494
- ]
- ]
- ],
- [
- [
- [
- -0.033899370580911636
- ]
- ]
- ],
- [
- [
- [
- -0.031266964972019196
- ]
- ]
- ],
- [
- [
- [
- -0.03392372280359268
- ]
- ]
- ],
- [
- [
- [
- -0.02585524320602417
- ]
- ]
- ],
- [
- [
- [
- -0.03908507153391838
- ]
- ]
- ],
- [
- [
- [
- -0.07240371406078339
- ]
- ]
- ],
- [
- [
- [
- -0.001318512368015945
- ]
- ]
- ],
- [
- [
- [
- -0.03685875982046127
- ]
- ]
- ],
- [
- [
- [
- -0.042306628078222275
- ]
- ]
- ],
- [
- [
- [
- -0.033369794487953186
- ]
- ]
- ],
- [
- [
- [
- -0.0403863824903965
- ]
- ]
- ],
- [
- [
- [
- -0.04263676702976227
- ]
- ]
- ],
- [
- [
- [
- -0.06768425554037094
- ]
- ]
- ],
- [
- [
- [
- -0.04602654650807381
- ]
- ]
- ],
- [
- [
- [
- -0.030592402443289757
- ]
- ]
- ],
- [
- [
- [
- -0.03437398374080658
- ]
- ]
- ],
- [
- [
- [
- -0.034407537430524826
- ]
- ]
- ],
- [
- [
- [
- -0.0335475392639637
- ]
- ]
- ],
- [
- [
- [
- -0.06372398138046265
- ]
- ]
- ],
- [
- [
- [
- -0.03924441337585449
- ]
- ]
- ],
- [
- [
- [
- -0.06466720998287201
- ]
- ]
- ],
- [
- [
- [
- -0.029706697911024094
- ]
- ]
- ],
- [
- [
- [
- -0.035307832062244415
- ]
- ]
- ],
- [
- [
- [
- -0.04933519661426544
- ]
- ]
- ],
- [
- [
- [
- -0.04103545472025871
- ]
- ]
- ],
- [
- [
- [
- -0.035182882100343704
- ]
- ]
- ],
- [
- [
- [
- -0.035908665508031845
- ]
- ]
- ],
- [
- [
- [
- -0.03710686042904854
- ]
- ]
- ],
- [
- [
- [
- -0.02980029210448265
- ]
- ]
- ],
- [
- [
- [
- -0.042527440935373306
- ]
- ]
- ],
- [
- [
- [
- -0.0370374396443367
- ]
- ]
- ],
- [
- [
- [
- -0.038971416652202606
- ]
- ]
- ],
- [
- [
- [
- -0.03145742416381836
- ]
- ]
- ],
- [
- [
- [
- -0.03242490068078041
- ]
- ]
- ],
- [
- [
- [
- -0.03573028743267059
- ]
- ]
- ],
- [
- [
- [
- -0.031025152653455734
- ]
- ]
- ],
- [
- [
- [
- -0.036063823848962784
- ]
- ]
- ],
- [
- [
- [
- -0.029943861067295074
- ]
- ]
- ],
- [
- [
- [
- -0.03726590424776077
- ]
- ]
- ],
- [
- [
- [
- -0.03551599383354187
- ]
- ]
- ],
- [
- [
- [
- -0.03273800387978554
- ]
- ]
- ],
- [
- [
- [
- -0.03837944194674492
- ]
- ]
- ],
- [
- [
- [
- -0.06597312539815903
- ]
- ]
- ],
- [
- [
- [
- -0.056382060050964355
- ]
- ]
- ],
- [
- [
- [
- -0.037078727036714554
- ]
- ]
- ],
- [
- [
- [
- -0.03269140049815178
- ]
- ]
- ],
- [
- [
- [
- -0.031640104949474335
- ]
- ]
- ],
- [
- [
- [
- -0.035206206142902374
- ]
- ]
- ],
- [
- [
- [
- -0.02918895147740841
- ]
- ]
- ],
- [
- [
- [
- -0.03296859934926033
- ]
- ]
- ],
- [
- [
- [
- -0.02776334248483181
- ]
- ]
- ],
- [
- [
- [
- -0.038346122950315475
- ]
- ]
- ],
- [
- [
- [
- -0.13185124099254608
- ]
- ]
- ],
- [
- [
- [
- -0.035449329763650894
- ]
- ]
- ],
- [
- [
- [
- -0.0382140576839447
- ]
- ]
- ],
- [
- [
- [
- -0.03644914925098419
- ]
- ]
- ],
- [
- [
- [
- -0.040693141520023346
- ]
- ]
- ],
- [
- [
- [
- -0.03847957402467728
- ]
- ]
- ],
- [
- [
- [
- -0.04129726439714432
- ]
- ]
- ],
- [
- [
- [
- -0.032721541821956635
- ]
- ]
- ],
- [
- [
- [
- -0.06397366523742676
- ]
- ]
- ],
- [
- [
- [
- -0.03541135787963867
- ]
- ]
- ],
- [
- [
- [
- -0.028400147333741188
- ]
- ]
- ],
- [
- [
- [
- -0.03122294507920742
- ]
- ]
- ],
- [
- [
- [
- -0.07238046079874039
- ]
- ]
- ],
- [
- [
- [
- -0.05590430274605751
- ]
- ]
- ],
- [
- [
- [
- -0.031627435237169266
- ]
- ]
- ],
- [
- [
- [
- -0.0783526673913002
- ]
- ]
- ],
- [
- [
- [
- -0.06162497028708458
- ]
- ]
- ],
- [
- [
- [
- -0.03184327855706215
- ]
- ]
- ],
- [
- [
- [
- -0.034841544926166534
- ]
- ]
- ],
- [
- [
- [
- -0.043654315173625946
- ]
- ]
- ],
- [
- [
- [
- -0.035193152725696564
- ]
- ]
- ],
- [
- [
- [
- -0.046486977487802505
- ]
- ]
- ],
- [
- [
- [
- -0.03893642872571945
- ]
- ]
- ],
- [
- [
- [
- -0.032380517572164536
- ]
- ]
- ],
- [
- [
- [
- -0.03541776165366173
- ]
- ]
- ],
- [
- [
- [
- -0.06673543155193329
- ]
- ]
- ],
- [
- [
- [
- -0.03960069641470909
- ]
- ]
- ],
- [
- [
- [
- -0.05024051293730736
- ]
- ]
- ],
- [
- [
- [
- -0.032752200961112976
- ]
- ]
- ],
- [
- [
- [
- -0.029434340074658394
- ]
- ]
- ],
- [
- [
- [
- -0.06655780225992203
- ]
- ]
- ],
- [
- [
- [
- -0.04042933136224747
- ]
- ]
- ],
- [
- [
- [
- -0.061406515538692474
- ]
- ]
- ],
- [
- [
- [
- -0.04283922538161278
- ]
- ]
- ],
- [
- [
- [
- -0.03731854259967804
- ]
- ]
- ],
- [
- [
- [
- -0.03296734392642975
- ]
- ]
- ],
- [
- [
- [
- -0.03025551326572895
- ]
- ]
- ],
- [
- [
- [
- -0.030198169872164726
- ]
- ]
- ],
- [
- [
- [
- -0.03319168463349342
- ]
- ]
- ],
- [
- [
- [
- -0.03713120520114899
- ]
- ]
- ],
- [
- [
- [
- -0.041741691529750824
- ]
- ]
- ],
- [
- [
- [
- -0.039743442088365555
- ]
- ]
- ],
- [
- [
- [
- -0.059548135846853256
- ]
- ]
- ],
- [
- [
- [
- -0.03580949082970619
- ]
- ]
- ],
- [
- [
- [
- -0.03992390260100365
- ]
- ]
- ],
- [
- [
- [
- -0.04293249174952507
- ]
- ]
- ],
- [
- [
- [
- -0.05820776894688606
- ]
- ]
- ],
- [
- [
- [
- -0.038250263780355453
- ]
- ]
- ],
- [
- [
- [
- -0.02628682740032673
- ]
- ]
- ],
- [
- [
- [
- -0.03370650112628937
- ]
- ]
- ],
- [
- [
- [
- -0.0418529286980629
- ]
- ]
- ],
- [
- [
- [
- -0.0350838229060173
- ]
- ]
- ],
- [
- [
- [
- -0.039126504212617874
- ]
- ]
- ],
- [
- [
- [
- -0.025574631989002228
- ]
- ]
- ],
- [
- [
- [
- -0.03207508847117424
- ]
- ]
- ],
- [
- [
- [
- -0.03578626736998558
- ]
- ]
- ],
- [
- [
- [
- -0.04208718240261078
- ]
- ]
- ],
- [
- [
- [
- -0.03357081115245819
- ]
- ]
- ],
- [
- [
- [
- -0.03778370842337608
- ]
- ]
- ],
- [
- [
- [
- -0.04973386973142624
- ]
- ]
- ],
- [
- [
- [
- -0.037573762238025665
- ]
- ]
- ],
- [
- [
- [
- -0.025094740092754364
- ]
- ]
- ],
- [
- [
- [
- -0.08208134770393372
- ]
- ]
- ],
- [
- [
- [
- -0.033963512629270554
- ]
- ]
- ],
- [
- [
- [
- -0.03686705231666565
- ]
- ]
- ],
- [
- [
- [
- -0.04185941442847252
- ]
- ]
- ],
- [
- [
- [
- -0.03385307267308235
- ]
- ]
- ],
- [
- [
- [
- -0.03537223860621452
- ]
- ]
- ],
- [
- [
- [
- -0.03300606086850166
- ]
- ]
- ],
- [
- [
- [
- -0.027304597198963165
- ]
- ]
- ],
- [
- [
- [
- -0.04091409593820572
- ]
- ]
- ],
- [
- [
- [
- -0.04222351685166359
- ]
- ]
- ],
- [
- [
- [
- -0.03818219155073166
- ]
- ]
- ],
- [
- [
- [
- -0.03380357846617699
- ]
- ]
- ],
- [
- [
- [
- -0.028451940044760704
- ]
- ]
- ],
- [
- [
- [
- -0.033317022025585175
- ]
- ]
- ],
- [
- [
- [
- -0.052942320704460144
- ]
- ]
- ],
- [
- [
- [
- -0.03452914208173752
- ]
- ]
- ],
- [
- [
- [
- -0.03669885918498039
- ]
- ]
- ],
- [
- [
- [
- -0.04293540120124817
- ]
- ]
- ],
- [
- [
- [
- -0.03791869059205055
- ]
- ]
- ],
- [
- [
- [
- -0.0327424630522728
- ]
- ]
- ],
- [
- [
- [
- -0.03331146761775017
- ]
- ]
- ],
- [
- [
- [
- -0.039880260825157166
- ]
- ]
- ],
- [
- [
- [
- -0.036329932510852814
- ]
- ]
- ],
- [
- [
- [
- -0.040265731513500214
- ]
- ]
- ],
- [
- [
- [
- -0.03345780819654465
- ]
- ]
- ],
- [
- [
- [
- -0.047255437821149826
- ]
- ]
- ],
- [
- [
- [
- -0.05114135518670082
- ]
- ]
- ],
- [
- [
- [
- -0.034694965928792953
- ]
- ]
- ],
- [
- [
- [
- -0.029019782319664955
- ]
- ]
- ],
- [
- [
- [
- -0.039482105523347855
- ]
- ]
- ],
- [
- [
- [
- -0.039883602410554886
- ]
- ]
- ],
- [
- [
- [
- -0.047125205397605896
- ]
- ]
- ],
- [
- [
- [
- -0.03315503150224686
- ]
- ]
- ],
- [
- [
- [
- -0.06052902713418007
- ]
- ]
- ],
- [
- [
- [
- -0.03200286254286766
- ]
- ]
- ],
- [
- [
- [
- -0.048093538731336594
- ]
- ]
- ],
- [
- [
- [
- -0.06116608902812004
- ]
- ]
- ],
- [
- [
- [
- -0.03220059722661972
- ]
- ]
- ],
- [
- [
- [
- -0.034642450511455536
- ]
- ]
- ],
- [
- [
- [
- -0.03780777007341385
- ]
- ]
- ],
- [
- [
- [
- -0.030568616464734077
- ]
- ]
- ],
- [
- [
- [
- -0.03160896152257919
- ]
- ]
- ],
- [
- [
- [
- -0.03924040496349335
- ]
- ]
- ],
- [
- [
- [
- -0.03592246398329735
- ]
- ]
- ],
- [
- [
- [
- -0.03756722807884216
- ]
- ]
- ],
- [
- [
- [
- -0.03603632003068924
- ]
- ]
- ],
- [
- [
- [
- -0.051258061081171036
- ]
- ]
- ],
- [
- [
- [
- -0.03205950930714607
- ]
- ]
- ],
- [
- [
- [
- -0.03254719451069832
- ]
- ]
- ],
- [
- [
- [
- -0.03436034172773361
- ]
- ]
- ],
- [
- [
- [
- -0.033242519944906235
- ]
- ]
- ],
- [
- [
- [
- -0.030306532979011536
- ]
- ]
- ],
- [
- [
- [
- -0.029331017285585403
- ]
- ]
- ],
- [
- [
- [
- -0.050272222608327866
- ]
- ]
- ],
- [
- [
- [
- -0.03367631882429123
- ]
- ]
- ],
- [
- [
- [
- -0.031178971752524376
- ]
- ]
- ],
- [
- [
- [
- -0.034512732177972794
- ]
- ]
- ],
- [
- [
- [
- -0.03322600573301315
- ]
- ]
- ],
- [
- [
- [
- -0.04220220819115639
- ]
- ]
- ],
- [
- [
- [
- -0.050839610397815704
- ]
- ]
- ],
- [
- [
- [
- -0.04620416462421417
- ]
- ]
- ],
- [
- [
- [
- -0.06644801050424576
- ]
- ]
- ],
- [
- [
- [
- -0.03092820942401886
- ]
- ]
- ],
- [
- [
- [
- -0.03293071314692497
- ]
- ]
- ],
- [
- [
- [
- -0.03656827285885811
- ]
- ]
- ],
- [
- [
- [
- -0.04048057645559311
- ]
- ]
- ],
- [
- [
- [
- -0.041733864694833755
- ]
- ]
- ],
- [
- [
- [
- -0.03774850443005562
- ]
- ]
- ],
- [
- [
- [
- -0.03264128044247627
- ]
- ]
- ],
- [
- [
- [
- -0.034176673740148544
- ]
- ]
- ],
- [
- [
- [
- -0.03341341018676758
- ]
- ]
- ],
- [
- [
- [
- -0.03735431656241417
- ]
- ]
- ],
- [
- [
- [
- -0.03956747055053711
- ]
- ]
- ],
- [
- [
- [
- -0.03177338093519211
- ]
- ]
- ],
- [
- [
- [
- -0.03713758662343025
- ]
- ]
- ],
- [
- [
- [
- -0.0628010481595993
- ]
- ]
- ],
- [
- [
- [
- -0.032783228904008865
- ]
- ]
- ],
- [
- [
- [
- -0.03855343163013458
- ]
- ]
- ],
- [
- [
- [
- -0.0414663664996624
- ]
- ]
- ],
- [
- [
- [
- -0.03646911680698395
- ]
- ]
- ],
- [
- [
- [
- -0.033654533326625824
- ]
- ]
- ],
- [
- [
- [
- -0.03340587764978409
- ]
- ]
- ],
- [
- [
- [
- -0.0329565554857254
- ]
- ]
- ],
- [
- [
- [
- -0.027662716805934906
- ]
- ]
- ],
- [
- [
- [
- -0.027366789057850838
- ]
- ]
- ],
- [
- [
- [
- -0.04144876077771187
- ]
- ]
- ],
- [
- [
- [
- -0.039641886949539185
- ]
- ]
- ],
- [
- [
- [
- -0.0431605726480484
- ]
- ]
- ],
- [
- [
- [
- -0.03584709018468857
- ]
- ]
- ],
- [
- [
- [
- -0.038403600454330444
- ]
- ]
- ],
- [
- [
- [
- -0.04188688099384308
- ]
- ]
- ],
- [
- [
- [
- -0.03198779746890068
- ]
- ]
- ],
- [
- [
- [
- -0.05518458038568497
- ]
- ]
- ],
- [
- [
- [
- -0.029979974031448364
- ]
- ]
- ],
- [
- [
- [
- -0.04568280652165413
- ]
- ]
- ],
- [
- [
- [
- -0.038186460733413696
- ]
- ]
- ],
- [
- [
- [
- -0.04580250382423401
- ]
- ]
- ],
- [
- [
- [
- -0.03924376145005226
- ]
- ]
- ],
- [
- [
- [
- -0.029565850272774696
- ]
- ]
- ],
- [
- [
- [
- -0.03199578821659088
- ]
- ]
- ],
- [
- [
- [
- -0.03992621600627899
- ]
- ]
- ],
- [
- [
- [
- -0.045633893460035324
- ]
- ]
- ],
- [
- [
- [
- -0.04349004849791527
- ]
- ]
- ],
- [
- [
- [
- -0.03889603540301323
- ]
- ]
- ],
- [
- [
- [
- -0.03464590013027191
- ]
- ]
- ],
- [
- [
- [
- -0.035488031804561615
- ]
- ]
- ],
- [
- [
- [
- -0.043248120695352554
- ]
- ]
- ],
- [
- [
- [
- -0.037834931164979935
- ]
- ]
- ],
- [
- [
- [
- -0.045288894325494766
- ]
- ]
- ],
- [
- [
- [
- -0.05533774942159653
- ]
- ]
- ],
- [
- [
- [
- -0.037075307220220566
- ]
- ]
- ],
- [
- [
- [
- -0.03716319054365158
- ]
- ]
- ],
- [
- [
- [
- -0.03078501857817173
- ]
- ]
- ],
- [
- [
- [
- -0.030628351494669914
- ]
- ]
- ],
- [
- [
- [
- -0.03583904355764389
- ]
- ]
- ],
- [
- [
- [
- -0.029445936903357506
- ]
- ]
- ],
- [
- [
- [
- -0.04016609117388725
- ]
- ]
- ],
- [
- [
- [
- -0.03953938186168671
- ]
- ]
- ],
- [
- [
- [
- -0.03640396147966385
- ]
- ]
- ],
- [
- [
- [
- -0.044447578489780426
- ]
- ]
- ],
- [
- [
- [
- -0.05050224810838699
- ]
- ]
- ],
- [
- [
- [
- -0.03498444706201553
- ]
- ]
- ],
- [
- [
- [
- -0.062107305973768234
- ]
- ]
- ],
- [
- [
- [
- -0.02925701253116131
- ]
- ]
- ],
- [
- [
- [
- -0.03288936987519264
- ]
- ]
- ],
- [
- [
- [
- -0.07241234183311462
- ]
- ]
- ],
- [
- [
- [
- -0.03259049728512764
- ]
- ]
- ],
- [
- [
- [
- -0.02964949421584606
- ]
- ]
- ],
- [
- [
- [
- -0.04181177541613579
- ]
- ]
- ],
- [
- [
- [
- -0.03697993978857994
- ]
- ]
- ],
- [
- [
- [
- -0.033927902579307556
- ]
- ]
- ],
- [
- [
- [
- -0.03363431245088577
- ]
- ]
- ],
- [
- [
- [
- -0.03606482222676277
- ]
- ]
- ],
- [
- [
- [
- -0.035203978419303894
- ]
- ]
- ],
- [
- [
- [
- -0.038813285529613495
- ]
- ]
- ],
- [
- [
- [
- -0.045425012707710266
- ]
- ]
- ],
- [
- [
- [
- -0.05796200409531593
- ]
- ]
- ],
- [
- [
- [
- -0.028005672618746758
- ]
- ]
- ],
- [
- [
- [
- -0.043457381427288055
- ]
- ]
- ],
- [
- [
- [
- -0.07537607848644257
- ]
- ]
- ],
- [
- [
- [
- -0.0320654921233654
- ]
- ]
- ],
- [
- [
- [
- -0.029459914192557335
- ]
- ]
- ],
- [
- [
- [
- -0.042944371700286865
- ]
- ]
- ],
- [
- [
- [
- -0.02788151055574417
- ]
- ]
- ],
- [
- [
- [
- -0.03439117223024368
- ]
- ]
- ],
- [
- [
- [
- -0.03546833246946335
- ]
- ]
- ],
- [
- [
- [
- -0.030581049621105194
- ]
- ]
- ],
- [
- [
- [
- -0.03856305405497551
- ]
- ]
- ],
- [
- [
- [
- -0.037279874086380005
- ]
- ]
- ],
- [
- [
- [
- -0.03286551311612129
- ]
- ]
- ],
- [
- [
- [
- -0.04092445597052574
- ]
- ]
- ],
- [
- [
- [
- -0.05101185664534569
- ]
- ]
- ],
- [
- [
- [
- -0.04073019325733185
- ]
- ]
- ],
- [
- [
- [
- -0.04229498654603958
- ]
- ]
- ],
- [
- [
- [
- -0.04096459969878197
- ]
- ]
- ],
- [
- [
- [
- -0.055894091725349426
- ]
- ]
- ],
- [
- [
- [
- -0.0356546975672245
- ]
- ]
- ],
- [
- [
- [
- -0.06266120076179504
- ]
- ]
- ],
- [
- [
- [
- -0.04905158281326294
- ]
- ]
- ],
- [
- [
- [
- -0.043701086193323135
- ]
- ]
- ],
- [
- [
- [
- -0.0482654795050621
- ]
- ]
- ],
- [
- [
- [
- -0.034845076501369476
- ]
- ]
- ],
- [
- [
- [
- -0.033355314284563065
- ]
- ]
- ],
- [
- [
- [
- -0.02565440535545349
- ]
- ]
- ],
- [
- [
- [
- -0.0499095544219017
- ]
- ]
- ],
- [
- [
- [
- -0.06536515802145004
- ]
- ]
- ],
- [
- [
- [
- -0.05017659068107605
- ]
- ]
- ],
- [
- [
- [
- -0.040875498205423355
- ]
- ]
- ],
- [
- [
- [
- -0.032254889607429504
- ]
- ]
- ],
- [
- [
- [
- -0.027056077495217323
- ]
- ]
- ],
- [
- [
- [
- -0.03683463856577873
- ]
- ]
- ],
- [
- [
- [
- -0.03712119907140732
- ]
- ]
- ],
- [
- [
- [
- -0.051835138350725174
- ]
- ]
- ],
- [
- [
- [
- -0.04251693934202194
- ]
- ]
- ],
- [
- [
- [
- -0.030167631804943085
- ]
- ]
- ],
- [
- [
- [
- -0.0455087311565876
- ]
- ]
- ],
- [
- [
- [
- -0.035167865455150604
- ]
- ]
- ],
- [
- [
- [
- -0.03396354615688324
- ]
- ]
- ],
- [
- [
- [
- -0.04180384427309036
- ]
- ]
- ],
- [
- [
- [
- -0.03496631979942322
- ]
- ]
- ],
- [
- [
- [
- -0.054565057158470154
- ]
- ]
- ],
- [
- [
- [
- -0.04563112184405327
- ]
- ]
- ],
- [
- [
- [
- -0.06690599024295807
- ]
- ]
- ],
- [
- [
- [
- -0.03510822728276253
- ]
- ]
- ],
- [
- [
- [
- -0.1025245413184166
- ]
- ]
- ],
- [
- [
- [
- -0.03200192004442215
- ]
- ]
- ],
- [
- [
- [
- -0.03865857794880867
- ]
- ]
- ],
- [
- [
- [
- -0.04680703207850456
- ]
- ]
- ],
- [
- [
- [
- -0.03826065734028816
- ]
- ]
- ],
- [
- [
- [
- -0.03217551112174988
- ]
- ]
- ],
- [
- [
- [
- -0.0353720486164093
- ]
- ]
- ],
- [
- [
- [
- -0.03524888679385185
- ]
- ]
- ],
- [
- [
- [
- -0.054701801389455795
- ]
- ]
- ],
- [
- [
- [
- -0.06050343066453934
- ]
- ]
- ],
- [
- [
- [
- -0.030564799904823303
- ]
- ]
- ],
- [
- [
- [
- -0.04061434417963028
- ]
- ]
- ],
- [
- [
- [
- -0.03820385783910751
- ]
- ]
- ],
- [
- [
- [
- -0.03137297183275223
- ]
- ]
- ],
- [
- [
- [
- -0.03018290176987648
- ]
- ]
- ],
- [
- [
- [
- -0.034544937312603
- ]
- ]
- ],
- [
- [
- [
- -0.05858512967824936
- ]
- ]
- ],
- [
- [
- [
- -0.037210818380117416
- ]
- ]
- ],
- [
- [
- [
- -0.03873147442936897
- ]
- ]
- ],
- [
- [
- [
- -0.03468357026576996
- ]
- ]
- ],
- [
- [
- [
- -0.05646161362528801
- ]
- ]
- ],
- [
- [
- [
- -0.03869690001010895
- ]
- ]
- ],
- [
- [
- [
- -0.039614710956811905
- ]
- ]
- ],
- [
- [
- [
- -0.03844744712114334
- ]
- ]
- ],
- [
- [
- [
- -0.03755709156394005
- ]
- ]
- ],
- [
- [
- [
- -0.04222511500120163
- ]
- ]
- ],
- [
- [
- [
- -0.03467971086502075
- ]
- ]
- ],
- [
- [
- [
- -0.04558422043919563
- ]
- ]
- ],
- [
- [
- [
- -0.038851067423820496
- ]
- ]
- ],
- [
- [
- [
- -0.05871186777949333
- ]
- ]
- ],
- [
- [
- [
- -0.037491947412490845
- ]
- ]
- ],
- [
- [
- [
- -0.04478742927312851
- ]
- ]
- ],
- [
- [
- [
- -0.04191657900810242
- ]
- ]
- ],
- [
- [
- [
- -0.03810896351933479
- ]
- ]
- ],
- [
- [
- [
- -0.03494725376367569
- ]
- ]
- ],
- [
- [
- [
- -0.028281066566705704
- ]
- ]
- ],
- [
- [
- [
- -0.03362400829792023
- ]
- ]
- ],
- [
- [
- [
- -0.040158942341804504
- ]
- ]
- ],
- [
- [
- [
- -0.03781546279788017
- ]
- ]
- ],
- [
- [
- [
- -0.05227505788207054
- ]
- ]
- ],
- [
- [
- [
- -0.053443793207407
- ]
- ]
- ],
- [
- [
- [
- -0.04495891183614731
- ]
- ]
- ],
- [
- [
- [
- -0.07577130943536758
- ]
- ]
- ],
- [
- [
- [
- -0.036623526364564896
- ]
- ]
- ],
- [
- [
- [
- -0.044337671250104904
- ]
- ]
- ],
- [
- [
- [
- -0.045028913766145706
- ]
- ]
- ],
- [
- [
- [
- -0.03656711429357529
- ]
- ]
- ],
- [
- [
- [
- -0.06586629897356033
- ]
- ]
- ],
- [
- [
- [
- -0.037347570061683655
- ]
- ]
- ],
- [
- [
- [
- -0.03627286106348038
- ]
- ]
- ],
- [
- [
- [
- -0.03502471372485161
- ]
- ]
- ],
- [
- [
- [
- -0.03486394137144089
- ]
- ]
- ],
- [
- [
- [
- -0.06753896176815033
- ]
- ]
- ],
- [
- [
- [
- -0.04147156700491905
- ]
- ]
- ],
- [
- [
- [
- -0.03868725895881653
- ]
- ]
- ],
- [
- [
- [
- -0.04142829775810242
- ]
- ]
- ],
- [
- [
- [
- -0.038004085421562195
- ]
- ]
- ],
- [
- [
- [
- -0.032040853053331375
- ]
- ]
- ],
- [
- [
- [
- -0.03667396306991577
- ]
- ]
- ],
- [
- [
- [
- -0.056314025074243546
- ]
- ]
- ],
- [
- [
- [
- -0.03003465197980404
- ]
- ]
- ],
- [
- [
- [
- -0.02690730057656765
- ]
- ]
- ],
- [
- [
- [
- -0.04464823752641678
- ]
- ]
- ],
- [
- [
- [
- -0.03623577207326889
- ]
- ]
- ],
- [
- [
- [
- -0.03491956740617752
- ]
- ]
- ],
- [
- [
- [
- -0.024354903027415276
- ]
- ]
- ],
- [
- [
- [
- -0.06594093888998032
- ]
- ]
- ],
- [
- [
- [
- -0.05639723688364029
- ]
- ]
- ],
- [
- [
- [
- -0.03724018856883049
- ]
- ]
- ],
- [
- [
- [
- -0.046436816453933716
- ]
- ]
- ],
- [
- [
- [
- -0.044450316578149796
- ]
- ]
- ],
- [
- [
- [
- -0.03475113958120346
- ]
- ]
- ],
- [
- [
- [
- -0.03232420235872269
- ]
- ]
- ],
- [
- [
- [
- -0.04301406070590019
- ]
- ]
- ],
- [
- [
- [
- -0.035926997661590576
- ]
- ]
- ],
- [
- [
- [
- -0.05586111545562744
- ]
- ]
- ],
- [
- [
- [
- -0.06060151010751724
- ]
- ]
- ],
- [
- [
- [
- -0.04344186931848526
- ]
- ]
- ],
- [
- [
- [
- -0.04946756362915039
- ]
- ]
- ],
- [
- [
- [
- -0.06633355468511581
- ]
- ]
- ],
- [
- [
- [
- -0.0370912067592144
- ]
- ]
- ],
- [
- [
- [
- -0.0830923467874527
- ]
- ]
- ],
- [
- [
- [
- -0.06716733425855637
- ]
- ]
- ],
- [
- [
- [
- -0.03640762344002724
- ]
- ]
- ],
- [
- [
- [
- -0.029078008607029915
- ]
- ]
- ],
- [
- [
- [
- -0.05142870172858238
- ]
- ]
- ],
- [
- [
- [
- -0.034790147095918655
- ]
- ]
- ],
- [
- [
- [
- -0.032619770616292953
- ]
- ]
- ],
- [
- [
- [
- -0.044493772089481354
- ]
- ]
- ],
- [
- [
- [
- -0.039537183940410614
- ]
- ]
- ],
- [
- [
- [
- -0.05771690607070923
- ]
- ]
- ],
- [
- [
- [
- -0.04061007872223854
- ]
- ]
- ],
- [
- [
- [
- -0.0516488216817379
- ]
- ]
- ],
- [
- [
- [
- -0.03870105370879173
- ]
- ]
- ],
- [
- [
- [
- -0.03722478821873665
- ]
- ]
- ],
- [
- [
- [
- -0.03233969211578369
- ]
- ]
- ],
- [
- [
- [
- -0.06962307542562485
- ]
- ]
- ],
- [
- [
- [
- -0.04285705089569092
- ]
- ]
- ],
- [
- [
- [
- -0.043680913746356964
- ]
- ]
- ],
- [
- [
- [
- -0.030660370364785194
- ]
- ]
- ],
- [
- [
- [
- -0.0317404679954052
- ]
- ]
- ],
- [
- [
- [
- -0.029225680977106094
- ]
- ]
- ],
- [
- [
- [
- -0.03536823019385338
- ]
- ]
- ],
- [
- [
- [
- -0.0382460355758667
- ]
- ]
- ],
- [
- [
- [
- -0.05842171236872673
- ]
- ]
- ],
- [
- [
- [
- -0.03329859673976898
- ]
- ]
- ],
- [
- [
- [
- -0.029414990916848183
- ]
- ]
- ],
- [
- [
- [
- -0.035236094146966934
- ]
- ]
- ],
- [
- [
- [
- -0.02771538868546486
- ]
- ]
- ],
- [
- [
- [
- -0.049047231674194336
- ]
- ]
- ],
- [
- [
- [
- -0.0381055548787117
- ]
- ]
- ],
- [
- [
- [
- -0.04481690004467964
- ]
- ]
- ],
- [
- [
- [
- -0.04134872928261757
- ]
- ]
- ],
- [
- [
- [
- -0.033979594707489014
- ]
- ]
- ],
- [
- [
- [
- -0.038507986813783646
- ]
- ]
- ],
- [
- [
- [
- -0.046335987746715546
- ]
- ]
- ],
- [
- [
- [
- -0.019298044964671135
- ]
- ]
- ],
- [
- [
- [
- -0.02755465731024742
- ]
- ]
- ],
- [
- [
- [
- -0.042554765939712524
- ]
- ]
- ],
- [
- [
- [
- -0.034139253199100494
- ]
- ]
- ],
- [
- [
- [
- -0.03714199364185333
- ]
- ]
- ],
- [
- [
- [
- -0.04167892411351204
- ]
- ]
- ],
- [
- [
- [
- -0.040669627487659454
- ]
- ]
- ],
- [
- [
- [
- -0.046107515692710876
- ]
- ]
- ],
- [
- [
- [
- -0.05236728861927986
- ]
- ]
- ],
- [
- [
- [
- -0.04518190026283264
- ]
- ]
- ],
- [
- [
- [
- -0.037280455231666565
- ]
- ]
- ],
- [
- [
- [
- -0.0756673514842987
- ]
- ]
- ],
- [
- [
- [
- -0.036026690155267715
- ]
- ]
- ],
- [
- [
- [
- -0.03412859886884689
- ]
- ]
- ],
- [
- [
- [
- -0.04209030792117119
- ]
- ]
- ],
- [
- [
- [
- -0.03164730966091156
- ]
- ]
- ],
- [
- [
- [
- -0.032094553112983704
- ]
- ]
- ],
- [
- [
- [
- -0.03810131177306175
- ]
- ]
- ],
- [
- [
- [
- -0.02771913819015026
- ]
- ]
- ],
- [
- [
- [
- -0.03357061743736267
- ]
- ]
- ],
- [
- [
- [
- -0.03505298122763634
- ]
- ]
- ],
- [
- [
- [
- -0.06212979182600975
- ]
- ]
- ],
- [
- [
- [
- -0.03581423684954643
- ]
- ]
- ],
- [
- [
- [
- -0.030637452378869057
- ]
- ]
- ],
- [
- [
- [
- -0.04505368694663048
- ]
- ]
- ],
- [
- [
- [
- -0.038616590201854706
- ]
- ]
- ],
- [
- [
- [
- -0.03270649537444115
- ]
- ]
- ],
- [
- [
- [
- -0.035444460809230804
- ]
- ]
- ],
- [
- [
- [
- -0.03683904558420181
- ]
- ]
- ],
- [
- [
- [
- -0.03164767101407051
- ]
- ]
- ],
- [
- [
- [
- -0.048190128058195114
- ]
- ]
- ],
- [
- [
- [
- -0.04172312468290329
- ]
- ]
- ],
- [
- [
- [
- -0.03968976065516472
- ]
- ]
- ],
- [
- [
- [
- -0.036394502967596054
- ]
- ]
- ],
- [
- [
- [
- -0.036441124975681305
- ]
- ]
- ],
- [
- [
- [
- -0.03075777366757393
- ]
- ]
- ],
- [
- [
- [
- -0.042357344180345535
- ]
- ]
- ],
- [
- [
- [
- -0.05425402894616127
- ]
- ]
- ],
- [
- [
- [
- -0.04285291209816933
- ]
- ]
- ],
- [
- [
- [
- -0.038705483078956604
- ]
- ]
- ],
- [
- [
- [
- -0.040995024144649506
- ]
- ]
- ],
- [
- [
- [
- -0.05983557179570198
- ]
- ]
- ],
- [
- [
- [
- -0.05537007376551628
- ]
- ]
- ],
- [
- [
- [
- -0.04154233634471893
- ]
- ]
- ],
- [
- [
- [
- -0.04117961600422859
- ]
- ]
- ],
- [
- [
- [
- -0.03946366906166077
- ]
- ]
- ],
- [
- [
- [
- -0.031163813546299934
- ]
- ]
- ],
- [
- [
- [
- -0.04542817175388336
- ]
- ]
- ],
- [
- [
- [
- -0.0907159224152565
- ]
- ]
- ],
- [
- [
- [
- -0.03212418407201767
- ]
- ]
- ],
- [
- [
- [
- -0.03939588740468025
- ]
- ]
- ],
- [
- [
- [
- -0.0390639528632164
- ]
- ]
- ],
- [
- [
- [
- -0.06853688508272171
- ]
- ]
- ],
- [
- [
- [
- -0.037842147052288055
- ]
- ]
- ],
- [
- [
- [
- -0.03119342029094696
- ]
- ]
- ],
- [
- [
- [
- -0.052754200994968414
- ]
- ]
- ],
- [
- [
- [
- -0.06210914999246597
- ]
- ]
- ],
- [
- [
- [
- -0.03193489462137222
- ]
- ]
- ],
- [
- [
- [
- -0.03900056704878807
- ]
- ]
- ],
- [
- [
- [
- -0.03312145173549652
- ]
- ]
- ],
- [
- [
- [
- -0.05922767147421837
- ]
- ]
- ],
- [
- [
- [
- -0.03970002755522728
- ]
- ]
- ],
- [
- [
- [
- -0.07441844791173935
- ]
- ]
- ],
- [
- [
- [
- -0.034485843032598495
- ]
- ]
- ],
- [
- [
- [
- -0.039073165506124496
- ]
- ]
- ],
- [
- [
- [
- -0.030020464211702347
- ]
- ]
- ],
- [
- [
- [
- -0.0640251412987709
- ]
- ]
- ],
- [
- [
- [
- -0.06430987268686295
- ]
- ]
- ],
- [
- [
- [
- -0.051140863448381424
- ]
- ]
- ],
- [
- [
- [
- -0.03822903707623482
- ]
- ]
- ],
- [
- [
- [
- -0.03774797171354294
- ]
- ]
- ],
- [
- [
- [
- -0.037639934569597244
- ]
- ]
- ],
- [
- [
- [
- -0.035608045756816864
- ]
- ]
- ],
- [
- [
- [
- -0.043284621089696884
- ]
- ]
- ],
- [
- [
- [
- -0.0370304211974144
- ]
- ]
- ],
- [
- [
- [
- -0.032314036041498184
- ]
- ]
- ],
- [
- [
- [
- -0.02660265564918518
- ]
- ]
- ],
- [
- [
- [
- -0.05411161482334137
- ]
- ]
- ],
- [
- [
- [
- -0.030090946704149246
- ]
- ]
- ],
- [
- [
- [
- -0.03494611382484436
- ]
- ]
- ],
- [
- [
- [
- -0.03035469725728035
- ]
- ]
- ],
- [
- [
- [
- -0.03276047855615616
- ]
- ]
- ],
- [
- [
- [
- -0.044150400906801224
- ]
- ]
- ],
- [
- [
- [
- -0.05680425837635994
- ]
- ]
- ],
- [
- [
- [
- -0.03472881391644478
- ]
- ]
- ],
- [
- [
- [
- -0.03327135741710663
- ]
- ]
- ],
- [
- [
- [
- -0.03935960680246353
- ]
- ]
- ],
- [
- [
- [
- -0.03434077277779579
- ]
- ]
- ],
- [
- [
- [
- -0.037435129284858704
- ]
- ]
- ],
- [
- [
- [
- -0.06330116093158722
- ]
- ]
- ],
- [
- [
- [
- -0.02752861939370632
- ]
- ]
- ],
- [
- [
- [
- -0.04295704886317253
- ]
- ]
- ],
- [
- [
- [
- -0.032372258603572845
- ]
- ]
- ],
- [
- [
- [
- -0.03466672822833061
- ]
- ]
- ],
- [
- [
- [
- -0.03207859769463539
- ]
- ]
- ],
- [
- [
- [
- -0.03484901040792465
- ]
- ]
- ],
- [
- [
- [
- -0.041798289865255356
- ]
- ]
- ],
- [
- [
- [
- -0.034427329897880554
- ]
- ]
- ],
- [
- [
- [
- -0.031593453139066696
- ]
- ]
- ],
- [
- [
- [
- -0.03776877000927925
- ]
- ]
- ],
- [
- [
- [
- -0.02790505439043045
- ]
- ]
- ],
- [
- [
- [
- -0.06570174545049667
- ]
- ]
- ],
- [
- [
- [
- -0.02972835674881935
- ]
- ]
- ],
- [
- [
- [
- -0.033917978405952454
- ]
- ]
- ],
- [
- [
- [
- -0.05485783889889717
- ]
- ]
- ],
- [
- [
- [
- -0.0480397567152977
- ]
- ]
- ],
- [
- [
- [
- -0.04836508259177208
- ]
- ]
- ],
- [
- [
- [
- -0.04141492024064064
- ]
- ]
- ],
- [
- [
- [
- -0.041322898119688034
- ]
- ]
- ],
- [
- [
- [
- -0.07862960547208786
- ]
- ]
- ],
- [
- [
- [
- -0.03651628643274307
- ]
- ]
- ],
- [
- [
- [
- -0.07565409690141678
- ]
- ]
- ],
- [
- [
- [
- -0.034765273332595825
- ]
- ]
- ],
- [
- [
- [
- -0.034393783658742905
- ]
- ]
- ],
- [
- [
- [
- -0.04664672166109085
- ]
- ]
- ],
- [
- [
- [
- -0.04186774417757988
- ]
- ]
- ],
- [
- [
- [
- -0.029703667387366295
- ]
- ]
- ],
- [
- [
- [
- -0.06952790170907974
- ]
- ]
- ],
- [
- [
- [
- -0.050361502915620804
- ]
- ]
- ],
- [
- [
- [
- -0.04274629428982735
- ]
- ]
- ],
- [
- [
- [
- -0.03907494619488716
- ]
- ]
- ],
- [
- [
- [
- -0.06698577105998993
- ]
- ]
- ],
- [
- [
- [
- -0.03659119829535484
- ]
- ]
- ],
- [
- [
- [
- -0.047653812915086746
- ]
- ]
- ],
- [
- [
- [
- -0.027656814083456993
- ]
- ]
- ],
- [
- [
- [
- -0.034627415239810944
- ]
- ]
- ],
- [
- [
- [
- -0.03988649323582649
- ]
- ]
- ],
- [
- [
- [
- -0.03048333153128624
- ]
- ]
- ],
- [
- [
- [
- -0.03243991360068321
- ]
- ]
- ],
- [
- [
- [
- -0.04180580750107765
- ]
- ]
- ],
- [
- [
- [
- -0.033524397760629654
- ]
- ]
- ],
- [
- [
- [
- -0.032647132873535156
- ]
- ]
- ],
- [
- [
- [
- -0.03758316487073898
- ]
- ]
- ],
- [
- [
- [
- -0.029778894037008286
- ]
- ]
- ],
- [
- [
- [
- -0.03366637974977493
- ]
- ]
- ],
- [
- [
- [
- -0.03300342708826065
- ]
- ]
- ],
- [
- [
- [
- -0.03791321441531181
- ]
- ]
- ],
- [
- [
- [
- -0.034650448709726334
- ]
- ]
- ],
- [
- [
- [
- -0.05171716958284378
- ]
- ]
- ],
- [
- [
- [
- -0.03098304383456707
- ]
- ]
- ],
- [
- [
- [
- -0.04409071430563927
- ]
- ]
- ],
- [
- [
- [
- -0.03343130275607109
- ]
- ]
- ],
- [
- [
- [
- -0.02800634875893593
- ]
- ]
- ],
- [
- [
- [
- -0.03373754769563675
- ]
- ]
- ],
- [
- [
- [
- -0.035008613020181656
- ]
- ]
- ],
- [
- [
- [
- -0.03939009830355644
- ]
- ]
- ],
- [
- [
- [
- -0.03428308293223381
- ]
- ]
- ],
- [
- [
- [
- -0.03769834712147713
- ]
- ]
- ],
- [
- [
- [
- -0.034773606806993484
- ]
- ]
- ],
- [
- [
- [
- -0.041339267045259476
- ]
- ]
- ],
- [
- [
- [
- -0.03076154738664627
- ]
- ]
- ],
- [
- [
- [
- -0.04969344660639763
- ]
- ]
- ],
- [
- [
- [
- -0.03862404823303223
- ]
- ]
- ],
- [
- [
- [
- -0.04363154619932175
- ]
- ]
- ],
- [
- [
- [
- -0.03621627762913704
- ]
- ]
- ],
- [
- [
- [
- -0.04887732118368149
- ]
- ]
- ],
- [
- [
- [
- -0.04003177210688591
- ]
- ]
- ],
- [
- [
- [
- -0.0601038858294487
- ]
- ]
- ],
- [
- [
- [
- -0.03674643486738205
- ]
- ]
- ],
- [
- [
- [
- -0.034997910261154175
- ]
- ]
- ],
- [
- [
- [
- -0.041870396584272385
- ]
- ]
- ],
- [
- [
- [
- -0.031856611371040344
- ]
- ]
- ],
- [
- [
- [
- -0.035118360072374344
- ]
- ]
- ],
- [
- [
- [
- -0.031184392049908638
- ]
- ]
- ],
- [
- [
- [
- -0.06711138784885406
- ]
- ]
- ],
- [
- [
- [
- -0.037421729415655136
- ]
- ]
- ],
- [
- [
- [
- -0.02982216328382492
- ]
- ]
- ],
- [
- [
- [
- -0.03713086619973183
- ]
- ]
- ],
- [
- [
- [
- -0.04279274493455887
- ]
- ]
- ],
- [
- [
- [
- -0.03141489252448082
- ]
- ]
- ],
- [
- [
- [
- -0.0346524603664875
- ]
- ]
- ],
- [
- [
- [
- -0.03527962788939476
- ]
- ]
- ],
- [
- [
- [
- -0.035479653626680374
- ]
- ]
- ],
- [
- [
- [
- -0.03545263037085533
- ]
- ]
- ],
- [
- [
- [
- -0.04659697785973549
- ]
- ]
- ],
- [
- [
- [
- -0.04782481491565704
- ]
- ]
- ],
- [
- [
- [
- -0.03545992821455002
- ]
- ]
- ],
- [
- [
- [
- -0.033041320741176605
- ]
- ]
- ],
- [
- [
- [
- -0.03755947947502136
- ]
- ]
- ],
- [
- [
- [
- -0.037558868527412415
- ]
- ]
- ],
- [
- [
- [
- -0.032106831669807434
- ]
- ]
- ],
- [
- [
- [
- -0.03432776778936386
- ]
- ]
- ],
- [
- [
- [
- -0.05079035833477974
- ]
- ]
- ],
- [
- [
- [
- -0.07614286243915558
- ]
- ]
- ],
- [
- [
- [
- -0.03484952449798584
- ]
- ]
- ],
- [
- [
- [
- -0.033543672412633896
- ]
- ]
- ],
- [
- [
- [
- -0.04104761779308319
- ]
- ]
- ],
- [
- [
- [
- -0.06048652157187462
- ]
- ]
- ],
- [
- [
- [
- -0.07968276739120483
- ]
- ]
- ],
- [
- [
- [
- -0.0435795895755291
- ]
- ]
- ],
- [
- [
- [
- -0.06549122929573059
- ]
- ]
- ],
- [
- [
- [
- -0.039801303297281265
- ]
- ]
- ],
- [
- [
- [
- -0.027248738333582878
- ]
- ]
- ],
- [
- [
- [
- -0.03597860038280487
- ]
- ]
- ],
- [
- [
- [
- -0.04769052565097809
- ]
- ]
- ],
- [
- [
- [
- -0.03415066748857498
- ]
- ]
- ],
- [
- [
- [
- -0.05259673297405243
- ]
- ]
- ],
- [
- [
- [
- -0.03124968521296978
- ]
- ]
- ],
- [
- [
- [
- -0.03382129594683647
- ]
- ]
- ],
- [
- [
- [
- -0.0427110493183136
- ]
- ]
- ],
- [
- [
- [
- -0.05859317630529404
- ]
- ]
- ],
- [
- [
- [
- -0.0458543598651886
- ]
- ]
- ],
- [
- [
- [
- -0.04076540097594261
- ]
- ]
- ],
- [
- [
- [
- -0.02689000964164734
- ]
- ]
- ],
- [
- [
- [
- -0.039229873567819595
- ]
- ]
- ],
- [
- [
- [
- -0.03878520801663399
- ]
- ]
- ],
- [
- [
- [
- -0.034435633569955826
- ]
- ]
- ],
- [
- [
- [
- -0.03984743729233742
- ]
- ]
- ],
- [
- [
- [
- -0.038396403193473816
- ]
- ]
- ],
- [
- [
- [
- -0.050103809684515
- ]
- ]
- ],
- [
- [
- [
- -0.032181497663259506
- ]
- ]
- ],
- [
- [
- [
- -0.07672063261270523
- ]
- ]
- ],
- [
- [
- [
- -0.03278270363807678
- ]
- ]
- ],
- [
- [
- [
- -0.032958947122097015
- ]
- ]
- ],
- [
- [
- [
- -0.028835413977503777
- ]
- ]
- ],
- [
- [
- [
- -0.03521037474274635
- ]
- ]
- ],
- [
- [
- [
- -0.06864071637392044
- ]
- ]
- ],
- [
- [
- [
- -0.029206182807683945
- ]
- ]
- ],
- [
- [
- [
- -0.03607212379574776
- ]
- ]
- ],
- [
- [
- [
- -0.03496142476797104
- ]
- ]
- ],
- [
- [
- [
- -0.03603910282254219
- ]
- ]
- ],
- [
- [
- [
- -0.04238876327872276
- ]
- ]
- ],
- [
- [
- [
- -0.053925685584545135
- ]
- ]
- ],
- [
- [
- [
- -0.035604532808065414
- ]
- ]
- ],
- [
- [
- [
- -0.041708528995513916
- ]
- ]
- ],
- [
- [
- [
- -0.03089599497616291
- ]
- ]
- ],
- [
- [
- [
- -0.030886288732290268
- ]
- ]
- ],
- [
- [
- [
- -0.03523436188697815
- ]
- ]
- ],
- [
- [
- [
- -0.06941303610801697
- ]
- ]
- ],
- [
- [
- [
- -0.056606415659189224
- ]
- ]
- ],
- [
- [
- [
- -0.04071033373475075
- ]
- ]
- ],
- [
- [
- [
- -0.038799598813056946
- ]
- ]
- ],
- [
- [
- [
- -0.03498181328177452
- ]
- ]
- ],
- [
- [
- [
- -0.036877263337373734
- ]
- ]
- ],
- [
- [
- [
- -0.03806427866220474
- ]
- ]
- ],
- [
- [
- [
- -0.049291208386421204
- ]
- ]
- ],
- [
- [
- [
- -0.051016926765441895
- ]
- ]
- ],
- [
- [
- [
- -0.028370734304189682
- ]
- ]
- ],
- [
- [
- [
- -0.05357551947236061
- ]
- ]
- ],
- [
- [
- [
- -0.012477648444473743
- ]
- ]
- ],
- [
- [
- [
- -0.026037951931357384
- ]
- ]
- ],
- [
- [
- [
- -0.037974677979946136
- ]
- ]
- ],
- [
- [
- [
- -0.037273526191711426
- ]
- ]
- ],
- [
- [
- [
- -0.030716653913259506
- ]
- ]
- ],
- [
- [
- [
- -0.05730998143553734
- ]
- ]
- ],
- [
- [
- [
- -0.038712549954652786
- ]
- ]
- ],
- [
- [
- [
- -0.025379862636327744
- ]
- ]
- ],
- [
- [
- [
- -0.04374555125832558
- ]
- ]
- ],
- [
- [
- [
- -0.03278234228491783
- ]
- ]
- ],
- [
- [
- [
- -0.05965641885995865
- ]
- ]
- ],
- [
- [
- [
- -0.039301104843616486
- ]
- ]
- ],
- [
- [
- [
- -0.03303905203938484
- ]
- ]
- ],
- [
- [
- [
- -0.03345690295100212
- ]
- ]
- ],
- [
- [
- [
- -0.042830921709537506
- ]
- ]
- ],
- [
- [
- [
- -0.03438234701752663
- ]
- ]
- ],
- [
- [
- [
- -0.03128546476364136
- ]
- ]
- ],
- [
- [
- [
- -0.024333810433745384
- ]
- ]
- ],
- [
- [
- [
- -0.03289274126291275
- ]
- ]
- ],
- [
- [
- [
- -0.05052318796515465
- ]
- ]
- ],
- [
- [
- [
- -0.03122764453291893
- ]
- ]
- ],
- [
- [
- [
- -0.041686251759529114
- ]
- ]
- ],
- [
- [
- [
- -0.038104161620140076
- ]
- ]
- ],
- [
- [
- [
- -0.04780889302492142
- ]
- ]
- ],
- [
- [
- [
- -0.0340031236410141
- ]
- ]
- ],
- [
- [
- [
- -0.038727037608623505
- ]
- ]
- ],
- [
- [
- [
- -0.028887221589684486
- ]
- ]
- ],
- [
- [
- [
- -0.0404561348259449
- ]
- ]
- ],
- [
- [
- [
- -0.06980665773153305
- ]
- ]
- ],
- [
- [
- [
- -0.043316423892974854
- ]
- ]
- ],
- [
- [
- [
- -0.037225302308797836
- ]
- ]
- ],
- [
- [
- [
- -0.037971653044223785
- ]
- ]
- ],
- [
- [
- [
- -0.027439963072538376
- ]
- ]
- ],
- [
- [
- [
- -0.08103181421756744
- ]
- ]
- ],
- [
- [
- [
- -0.03407220169901848
- ]
- ]
- ],
- [
- [
- [
- -0.039145853370428085
- ]
- ]
- ],
- [
- [
- [
- -0.0379805825650692
- ]
- ]
- ],
- [
- [
- [
- -0.03509172052145004
- ]
- ]
- ],
- [
- [
- [
- -0.044353827834129333
- ]
- ]
- ],
- [
- [
- [
- -0.034144215285778046
- ]
- ]
- ],
- [
- [
- [
- -0.030500812456011772
- ]
- ]
- ],
- [
- [
- [
- -0.06080946326255798
- ]
- ]
- ],
- [
- [
- [
- -0.0383259616792202
- ]
- ]
- ],
- [
- [
- [
- -0.033406294882297516
- ]
- ]
- ],
- [
- [
- [
- -0.06884738057851791
- ]
- ]
- ],
- [
- [
- [
- -0.036758266389369965
- ]
- ]
- ],
- [
- [
- [
- -0.12942034006118774
- ]
- ]
- ],
- [
- [
- [
- -0.0397239625453949
- ]
- ]
- ],
- [
- [
- [
- -0.03244343027472496
- ]
- ]
- ],
- [
- [
- [
- -0.0366375595331192
- ]
- ]
- ],
- [
- [
- [
- -0.03695637732744217
- ]
- ]
- ],
- [
- [
- [
- -0.04303962364792824
- ]
- ]
- ],
- [
- [
- [
- -0.04127557575702667
- ]
- ]
- ],
- [
- [
- [
- -0.05068061128258705
- ]
- ]
- ],
- [
- [
- [
- -0.03530259430408478
- ]
- ]
- ],
- [
- [
- [
- -0.07922579348087311
- ]
- ]
- ],
- [
- [
- [
- -0.03700695559382439
- ]
- ]
- ],
- [
- [
- [
- -0.05581717565655708
- ]
- ]
- ],
- [
- [
- [
- -0.04311869665980339
- ]
- ]
- ],
- [
- [
- [
- -0.03061428666114807
- ]
- ]
- ],
- [
- [
- [
- -0.03823637217283249
- ]
- ]
- ],
- [
- [
- [
- -0.02718937024474144
- ]
- ]
- ],
- [
- [
- [
- -0.03305919095873833
- ]
- ]
- ],
- [
- [
- [
- -0.03102000430226326
- ]
- ]
- ],
- [
- [
- [
- -0.10503868013620377
- ]
- ]
- ],
- [
- [
- [
- -0.03070424124598503
- ]
- ]
- ],
- [
- [
- [
- -0.03737448528409004
- ]
- ]
- ],
- [
- [
- [
- -0.036975469440221786
- ]
- ]
- ],
- [
- [
- [
- -0.03001571260392666
- ]
- ]
- ],
- [
- [
- [
- -0.02831878699362278
- ]
- ]
- ],
- [
- [
- [
- -0.03729076310992241
- ]
- ]
- ],
- [
- [
- [
- -0.035546980798244476
- ]
- ]
- ],
- [
- [
- [
- -0.038111355155706406
- ]
- ]
- ],
- [
- [
- [
- -0.04113825410604477
- ]
- ]
- ],
- [
- [
- [
- -0.03380250930786133
- ]
- ]
- ],
- [
- [
- [
- -0.03424890711903572
- ]
- ]
- ],
- [
- [
- [
- -0.03237059339880943
- ]
- ]
- ],
- [
- [
- [
- -0.035836681723594666
- ]
- ]
- ],
- [
- [
- [
- -0.028251394629478455
- ]
- ]
- ],
- [
- [
- [
- -0.044424451887607574
- ]
- ]
- ],
- [
- [
- [
- -0.030882731080055237
- ]
- ]
- ],
- [
- [
- [
- -0.05116137117147446
- ]
- ]
- ],
- [
- [
- [
- -0.04150106757879257
- ]
- ]
- ],
- [
- [
- [
- -0.05628727376461029
- ]
- ]
- ],
- [
- [
- [
- -0.030644262209534645
- ]
- ]
- ],
- [
- [
- [
- -0.0374220535159111
- ]
- ]
- ],
- [
- [
- [
- -0.032951902598142624
- ]
- ]
- ],
- [
- [
- [
- -0.03977156803011894
- ]
- ]
- ],
- [
- [
- [
- -0.034272629767656326
- ]
- ]
- ],
- [
- [
- [
- -0.05871386080980301
- ]
- ]
- ],
- [
- [
- [
- -0.04073125496506691
- ]
- ]
- ],
- [
- [
- [
- -0.04160197824239731
- ]
- ]
- ],
- [
- [
- [
- -0.03533739596605301
- ]
- ]
- ],
- [
- [
- [
- -0.06106550991535187
- ]
- ]
- ],
- [
- [
- [
- -0.02958003617823124
- ]
- ]
- ],
- [
- [
- [
- -0.04211927950382233
- ]
- ]
- ],
- [
- [
- [
- -0.03242926672101021
- ]
- ]
- ],
- [
- [
- [
- -0.03384038433432579
- ]
- ]
- ],
- [
- [
- [
- -0.04590848088264465
- ]
- ]
- ],
- [
- [
- [
- -0.03830850124359131
- ]
- ]
- ],
- [
- [
- [
- -0.07142779976129532
- ]
- ]
- ],
- [
- [
- [
- -0.04162156581878662
- ]
- ]
- ],
- [
- [
- [
- -0.02859834022819996
- ]
- ]
- ],
- [
- [
- [
- -0.06921238452196121
- ]
- ]
- ],
- [
- [
- [
- -0.03611631318926811
- ]
- ]
- ],
- [
- [
- [
- -0.051260966807603836
- ]
- ]
- ],
- [
- [
- [
- -0.0362793393433094
- ]
- ]
- ],
- [
- [
- [
- -0.030514264479279518
- ]
- ]
- ],
- [
- [
- [
- -0.03383981063961983
- ]
- ]
- ],
- [
- [
- [
- -0.03404109925031662
- ]
- ]
- ],
- [
- [
- [
- -0.03849002346396446
- ]
- ]
- ],
- [
- [
- [
- -0.03283355385065079
- ]
- ]
- ],
- [
- [
- [
- -0.03343402221798897
- ]
- ]
- ],
- [
- [
- [
- -0.04307730868458748
- ]
- ]
- ],
- [
- [
- [
- -0.037439122796058655
- ]
- ]
- ],
- [
- [
- [
- -0.044803764671087265
- ]
- ]
- ],
- [
- [
- [
- -0.03386695683002472
- ]
- ]
- ],
- [
- [
- [
- -0.03187674656510353
- ]
- ]
- ],
- [
- [
- [
- -0.03248756378889084
- ]
- ]
- ],
- [
- [
- [
- -0.06604462116956711
- ]
- ]
- ],
- [
- [
- [
- -0.03442730754613876
- ]
- ]
- ],
- [
- [
- [
- -0.04812945798039436
- ]
- ]
- ],
- [
- [
- [
- -0.06302954256534576
- ]
- ]
- ],
- [
- [
- [
- -0.05978774651885033
- ]
- ]
- ],
- [
- [
- [
- -0.03831271082162857
- ]
- ]
- ],
- [
- [
- [
- -0.03770030289888382
- ]
- ]
- ],
- [
- [
- [
- -0.05869532376527786
- ]
- ]
- ],
- [
- [
- [
- -0.07023829221725464
- ]
- ]
- ],
- [
- [
- [
- -0.032192423939704895
- ]
- ]
- ],
- [
- [
- [
- -0.05044644698500633
- ]
- ]
- ],
- [
- [
- [
- -0.03372843191027641
- ]
- ]
- ],
- [
- [
- [
- -0.06296705454587936
- ]
- ]
- ],
- [
- [
- [
- -0.03268309682607651
- ]
- ]
- ],
- [
- [
- [
- -0.043256305158138275
- ]
- ]
- ],
- [
- [
- [
- -0.0373028963804245
- ]
- ]
- ],
- [
- [
- [
- -0.05304780974984169
- ]
- ]
- ],
- [
- [
- [
- -0.07105700671672821
- ]
- ]
- ],
- [
- [
- [
- -0.038297705352306366
- ]
- ]
- ],
- [
- [
- [
- -0.030966049060225487
- ]
- ]
- ],
- [
- [
- [
- -0.04563850909471512
- ]
- ]
- ],
- [
- [
- [
- -0.04091161862015724
- ]
- ]
- ],
- [
- [
- [
- -0.04391777515411377
- ]
- ]
- ],
- [
- [
- [
- -0.0331270694732666
- ]
- ]
- ],
- [
- [
- [
- -0.04344095662236214
- ]
- ]
- ],
- [
- [
- [
- -0.03271510824561119
- ]
- ]
- ],
- [
- [
- [
- -0.033240221440792084
- ]
- ]
- ],
- [
- [
- [
- -0.040308792144060135
- ]
- ]
- ],
- [
- [
- [
- -0.037175025790929794
- ]
- ]
- ],
- [
- [
- [
- -0.03380199149250984
- ]
- ]
- ],
- [
- [
- [
- -0.04323612526059151
- ]
- ]
- ],
- [
- [
- [
- -0.04153027758002281
- ]
- ]
- ],
- [
- [
- [
- -0.08007393032312393
- ]
- ]
- ],
- [
- [
- [
- -0.040955670177936554
- ]
- ]
- ],
- [
- [
- [
- -0.06471940129995346
- ]
- ]
- ],
- [
- [
- [
- -0.0606420636177063
- ]
- ]
- ],
- [
- [
- [
- -0.04721680283546448
- ]
- ]
- ],
- [
- [
- [
- -0.034385718405246735
- ]
- ]
- ],
- [
- [
- [
- -0.032241370528936386
- ]
- ]
- ],
- [
- [
- [
- -0.03759273886680603
- ]
- ]
- ],
- [
- [
- [
- -0.04705129191279411
- ]
- ]
- ],
- [
- [
- [
- -0.041907746344804764
- ]
- ]
- ],
- [
- [
- [
- -0.03700495883822441
- ]
- ]
- ],
- [
- [
- [
- -0.054134566336870193
- ]
- ]
- ],
- [
- [
- [
- -0.03679701313376427
- ]
- ]
- ],
- [
- [
- [
- -0.027172571048140526
- ]
- ]
- ],
- [
- [
- [
- -0.03609693422913551
- ]
- ]
- ],
- [
- [
- [
- -0.027830850332975388
- ]
- ]
- ],
- [
- [
- [
- -0.038279708474874496
- ]
- ]
- ],
- [
- [
- [
- -0.04415452852845192
- ]
- ]
- ],
- [
- [
- [
- -0.032909851521253586
- ]
- ]
- ],
- [
- [
- [
- -0.084637850522995
- ]
- ]
- ],
- [
- [
- [
- -0.03384314104914665
- ]
- ]
- ],
- [
- [
- [
- -0.034919898957014084
- ]
- ]
- ],
- [
- [
- [
- -0.031461212784051895
- ]
- ]
- ],
- [
- [
- [
- -0.03606391325592995
- ]
- ]
- ],
- [
- [
- [
- -0.04785027727484703
- ]
- ]
- ],
- [
- [
- [
- -0.030733255669474602
- ]
- ]
- ],
- [
- [
- [
- -0.028861280530691147
- ]
- ]
- ],
- [
- [
- [
- -0.03426424041390419
- ]
- ]
- ],
- [
- [
- [
- -0.03281340003013611
- ]
- ]
- ],
- [
- [
- [
- -0.035501349717378616
- ]
- ]
- ],
- [
- [
- [
- -0.0565536804497242
- ]
- ]
- ],
- [
- [
- [
- -0.04713457450270653
- ]
- ]
- ],
- [
- [
- [
- -0.04047410190105438
- ]
- ]
- ],
- [
- [
- [
- -0.030533738434314728
- ]
- ]
- ],
- [
- [
- [
- -0.05733286961913109
- ]
- ]
- ],
- [
- [
- [
- -0.029280252754688263
- ]
- ]
- ],
- [
- [
- [
- -0.05995039641857147
- ]
- ]
- ],
- [
- [
- [
- -0.03414404019713402
- ]
- ]
- ],
- [
- [
- [
- -0.031162528321146965
- ]
- ]
- ],
- [
- [
- [
- -0.05529338866472244
- ]
- ]
- ],
- [
- [
- [
- -0.041553087532520294
- ]
- ]
- ],
- [
- [
- [
- -0.03407485783100128
- ]
- ]
- ],
- [
- [
- [
- -0.08021681010723114
- ]
- ]
- ],
- [
- [
- [
- -0.07208540290594101
- ]
- ]
- ],
- [
- [
- [
- -0.041135262697935104
- ]
- ]
- ],
- [
- [
- [
- -0.035251207649707794
- ]
- ]
- ],
- [
- [
- [
- -0.049896422773599625
- ]
- ]
- ],
- [
- [
- [
- -0.08242014795541763
- ]
- ]
- ],
- [
- [
- [
- -0.037995290011167526
- ]
- ]
- ],
- [
- [
- [
- -0.03501231223344803
- ]
- ]
- ],
- [
- [
- [
- -0.05200492590665817
- ]
- ]
- ],
- [
- [
- [
- -0.06204942241311073
- ]
- ]
- ],
- [
- [
- [
- -0.06910652667284012
- ]
- ]
- ],
- [
- [
- [
- -0.032587021589279175
- ]
- ]
- ],
- [
- [
- [
- -0.03392258286476135
- ]
- ]
- ],
- [
- [
- [
- -0.03342312574386597
- ]
- ]
- ],
- [
- [
- [
- -0.02373618446290493
- ]
- ]
- ],
- [
- [
- [
- -0.03866971284151077
- ]
- ]
- ],
- [
- [
- [
- -0.03260860964655876
- ]
- ]
- ],
- [
- [
- [
- -0.03314601257443428
- ]
- ]
- ],
- [
- [
- [
- -0.029359139502048492
- ]
- ]
- ],
- [
- [
- [
- -0.07682083547115326
- ]
- ]
- ],
- [
- [
- [
- -0.0342557393014431
- ]
- ]
- ],
- [
- [
- [
- -0.03469952195882797
- ]
- ]
- ],
- [
- [
- [
- -0.0314849391579628
- ]
- ]
- ],
- [
- [
- [
- -0.06117142736911774
- ]
- ]
- ],
- [
- [
- [
- -0.04416368901729584
- ]
- ]
- ],
- [
- [
- [
- -0.0345696359872818
- ]
- ]
- ],
- [
- [
- [
- -0.03480752184987068
- ]
- ]
- ],
- [
- [
- [
- -0.03985096886754036
- ]
- ]
- ],
- [
- [
- [
- -0.03637051209807396
- ]
- ]
- ],
- [
- [
- [
- -0.04126454144716263
- ]
- ]
- ],
- [
- [
- [
- -0.03977629169821739
- ]
- ]
- ],
- [
- [
- [
- -0.05400490015745163
- ]
- ]
- ],
- [
- [
- [
- -0.03173048794269562
- ]
- ]
- ],
- [
- [
- [
- -0.05865045636892319
- ]
- ]
- ],
- [
- [
- [
- -0.04508613795042038
- ]
- ]
- ],
- [
- [
- [
- -0.038319509476423264
- ]
- ]
- ],
- [
- [
- [
- -0.033879492431879044
- ]
- ]
- ],
- [
- [
- [
- -0.050934113562107086
- ]
- ]
- ],
- [
- [
- [
- -0.05498398840427399
- ]
- ]
- ],
- [
- [
- [
- -0.03843039274215698
- ]
- ]
- ],
- [
- [
- [
- -0.06002655252814293
- ]
- ]
- ],
- [
- [
- [
- -0.043717481195926666
- ]
- ]
- ],
- [
- [
- [
- -0.040958844125270844
- ]
- ]
- ],
- [
- [
- [
- -0.034725792706012726
- ]
- ]
- ],
- [
- [
- [
- -0.040714606642723083
- ]
- ]
- ],
- [
- [
- [
- -0.06383658945560455
- ]
- ]
- ],
- [
- [
- [
- -0.027538808062672615
- ]
- ]
- ],
- [
- [
- [
- -0.07063005119562149
- ]
- ]
- ],
- [
- [
- [
- -0.0694078579545021
- ]
- ]
- ],
- [
- [
- [
- -0.034045759588479996
- ]
- ]
- ],
- [
- [
- [
- -0.039702046662569046
- ]
- ]
- ],
- [
- [
- [
- -0.03575372323393822
- ]
- ]
- ],
- [
- [
- [
- -0.03476719930768013
- ]
- ]
- ],
- [
- [
- [
- -0.03487956523895264
- ]
- ]
- ],
- [
- [
- [
- -0.03509645536541939
- ]
- ]
- ],
- [
- [
- [
- -0.03416956216096878
- ]
- ]
- ],
- [
- [
- [
- -0.03450649976730347
- ]
- ]
- ],
- [
- [
- [
- -0.06434483081102371
- ]
- ]
- ],
- [
- [
- [
- -0.06497330963611603
- ]
- ]
- ],
- [
- [
- [
- -0.04397733882069588
- ]
- ]
- ],
- [
- [
- [
- -0.04017805680632591
- ]
- ]
- ],
- [
- [
- [
- -0.03514625132083893
- ]
- ]
- ],
- [
- [
- [
- -0.035985589027404785
- ]
- ]
- ],
- [
- [
- [
- -0.040099114179611206
- ]
- ]
- ],
- [
- [
- [
- -0.0674191564321518
- ]
- ]
- ],
- [
- [
- [
- -0.030339250341057777
- ]
- ]
- ],
- [
- [
- [
- -0.033812254667282104
- ]
- ]
- ],
- [
- [
- [
- -0.03639763221144676
- ]
- ]
- ],
- [
- [
- [
- -0.07950439304113388
- ]
- ]
- ],
- [
- [
- [
- -0.0388793908059597
- ]
- ]
- ],
- [
- [
- [
- -0.02936490997672081
- ]
- ]
- ],
- [
- [
- [
- -0.04564407840371132
- ]
- ]
- ],
- [
- [
- [
- -0.0515303872525692
- ]
- ]
- ],
- [
- [
- [
- -0.03721581771969795
- ]
- ]
- ],
- [
- [
- [
- -0.03273606672883034
- ]
- ]
- ],
- [
- [
- [
- -0.042879387736320496
- ]
- ]
- ],
- [
- [
- [
- -0.03232676163315773
- ]
- ]
- ],
- [
- [
- [
- -0.034471284598112106
- ]
- ]
- ],
- [
- [
- [
- -0.03294673562049866
- ]
- ]
- ],
- [
- [
- [
- -0.07672514766454697
- ]
- ]
- ],
- [
- [
- [
- -0.039100002497434616
- ]
- ]
- ],
- [
- [
- [
- -0.053071994334459305
- ]
- ]
- ],
- [
- [
- [
- -0.035070307552814484
- ]
- ]
- ],
- [
- [
- [
- -0.029490862041711807
- ]
- ]
- ],
- [
- [
- [
- -0.023629380390048027
- ]
- ]
- ],
- [
- [
- [
- -0.03346939757466316
- ]
- ]
- ],
- [
- [
- [
- -0.03268720954656601
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.027616968378424644
- ]
- ]
- ],
- [
- [
- [
- 0.0530647374689579
- ]
- ]
- ],
- [
- [
- [
- 0.039037179201841354
- ]
- ]
- ],
- [
- [
- [
- 0.03589509055018425
- ]
- ]
- ],
- [
- [
- [
- 0.030653556808829308
- ]
- ]
- ],
- [
- [
- [
- 0.039838146418333054
- ]
- ]
- ],
- [
- [
- [
- 0.03743419796228409
- ]
- ]
- ],
- [
- [
- [
- 0.03647410124540329
- ]
- ]
- ],
- [
- [
- [
- 0.04025127366185188
- ]
- ]
- ],
- [
- [
- [
- 0.04448855668306351
- ]
- ]
- ],
- [
- [
- [
- 0.05869768187403679
- ]
- ]
- ],
- [
- [
- [
- 0.05831205099821091
- ]
- ]
- ],
- [
- [
- [
- 0.03918950632214546
- ]
- ]
- ],
- [
- [
- [
- 0.03166942298412323
- ]
- ]
- ],
- [
- [
- [
- 0.03254866600036621
- ]
- ]
- ],
- [
- [
- [
- 0.03690903261303902
- ]
- ]
- ],
- [
- [
- [
- 0.03573523834347725
- ]
- ]
- ],
- [
- [
- [
- 0.042106591165065765
- ]
- ]
- ],
- [
- [
- [
- 0.04072827473282814
- ]
- ]
- ],
- [
- [
- [
- 0.03590909764170647
- ]
- ]
- ],
- [
- [
- [
- 0.034544918686151505
- ]
- ]
- ],
- [
- [
- [
- 0.037732988595962524
- ]
- ]
- ],
- [
- [
- [
- 0.03669963777065277
- ]
- ]
- ],
- [
- [
- [
- 0.04676153510808945
- ]
- ]
- ],
- [
- [
- [
- 0.08379193395376205
- ]
- ]
- ],
- [
- [
- [
- 0.044293180108070374
- ]
- ]
- ],
- [
- [
- [
- 0.038472749292850494
- ]
- ]
- ],
- [
- [
- [
- 0.033899370580911636
- ]
- ]
- ],
- [
- [
- [
- 0.031266964972019196
- ]
- ]
- ],
- [
- [
- [
- 0.03392372280359268
- ]
- ]
- ],
- [
- [
- [
- 0.02585524320602417
- ]
- ]
- ],
- [
- [
- [
- 0.03908507153391838
- ]
- ]
- ],
- [
- [
- [
- 0.07240371406078339
- ]
- ]
- ],
- [
- [
- [
- 0.001318512368015945
- ]
- ]
- ],
- [
- [
- [
- 0.03685875982046127
- ]
- ]
- ],
- [
- [
- [
- 0.042306628078222275
- ]
- ]
- ],
- [
- [
- [
- 0.033369794487953186
- ]
- ]
- ],
- [
- [
- [
- 0.0403863824903965
- ]
- ]
- ],
- [
- [
- [
- 0.04263676702976227
- ]
- ]
- ],
- [
- [
- [
- 0.06768425554037094
- ]
- ]
- ],
- [
- [
- [
- 0.04602654650807381
- ]
- ]
- ],
- [
- [
- [
- 0.030592402443289757
- ]
- ]
- ],
- [
- [
- [
- 0.03437398374080658
- ]
- ]
- ],
- [
- [
- [
- 0.034407537430524826
- ]
- ]
- ],
- [
- [
- [
- 0.0335475392639637
- ]
- ]
- ],
- [
- [
- [
- 0.06372398138046265
- ]
- ]
- ],
- [
- [
- [
- 0.03924441337585449
- ]
- ]
- ],
- [
- [
- [
- 0.06466720998287201
- ]
- ]
- ],
- [
- [
- [
- 0.029706697911024094
- ]
- ]
- ],
- [
- [
- [
- 0.035307832062244415
- ]
- ]
- ],
- [
- [
- [
- 0.04933519661426544
- ]
- ]
- ],
- [
- [
- [
- 0.04103545472025871
- ]
- ]
- ],
- [
- [
- [
- 0.035182882100343704
- ]
- ]
- ],
- [
- [
- [
- 0.035908665508031845
- ]
- ]
- ],
- [
- [
- [
- 0.03710686042904854
- ]
- ]
- ],
- [
- [
- [
- 0.02980029210448265
- ]
- ]
- ],
- [
- [
- [
- 0.042527440935373306
- ]
- ]
- ],
- [
- [
- [
- 0.0370374396443367
- ]
- ]
- ],
- [
- [
- [
- 0.038971416652202606
- ]
- ]
- ],
- [
- [
- [
- 0.03145742416381836
- ]
- ]
- ],
- [
- [
- [
- 0.03242490068078041
- ]
- ]
- ],
- [
- [
- [
- 0.03573028743267059
- ]
- ]
- ],
- [
- [
- [
- 0.031025152653455734
- ]
- ]
- ],
- [
- [
- [
- 0.036063823848962784
- ]
- ]
- ],
- [
- [
- [
- 0.029943861067295074
- ]
- ]
- ],
- [
- [
- [
- 0.03726590424776077
- ]
- ]
- ],
- [
- [
- [
- 0.03551599383354187
- ]
- ]
- ],
- [
- [
- [
- 0.03273800387978554
- ]
- ]
- ],
- [
- [
- [
- 0.03837944194674492
- ]
- ]
- ],
- [
- [
- [
- 0.06597312539815903
- ]
- ]
- ],
- [
- [
- [
- 0.056382060050964355
- ]
- ]
- ],
- [
- [
- [
- 0.037078727036714554
- ]
- ]
- ],
- [
- [
- [
- 0.03269140049815178
- ]
- ]
- ],
- [
- [
- [
- 0.031640104949474335
- ]
- ]
- ],
- [
- [
- [
- 0.035206206142902374
- ]
- ]
- ],
- [
- [
- [
- 0.02918895147740841
- ]
- ]
- ],
- [
- [
- [
- 0.03296859934926033
- ]
- ]
- ],
- [
- [
- [
- 0.02776334248483181
- ]
- ]
- ],
- [
- [
- [
- 0.038346122950315475
- ]
- ]
- ],
- [
- [
- [
- 0.13185124099254608
- ]
- ]
- ],
- [
- [
- [
- 0.035449329763650894
- ]
- ]
- ],
- [
- [
- [
- 0.0382140576839447
- ]
- ]
- ],
- [
- [
- [
- 0.03644914925098419
- ]
- ]
- ],
- [
- [
- [
- 0.040693141520023346
- ]
- ]
- ],
- [
- [
- [
- 0.03847957402467728
- ]
- ]
- ],
- [
- [
- [
- 0.04129726439714432
- ]
- ]
- ],
- [
- [
- [
- 0.032721541821956635
- ]
- ]
- ],
- [
- [
- [
- 0.06397366523742676
- ]
- ]
- ],
- [
- [
- [
- 0.03541135787963867
- ]
- ]
- ],
- [
- [
- [
- 0.028400147333741188
- ]
- ]
- ],
- [
- [
- [
- 0.03122294507920742
- ]
- ]
- ],
- [
- [
- [
- 0.07238046079874039
- ]
- ]
- ],
- [
- [
- [
- 0.05590430274605751
- ]
- ]
- ],
- [
- [
- [
- 0.031627435237169266
- ]
- ]
- ],
- [
- [
- [
- 0.0783526673913002
- ]
- ]
- ],
- [
- [
- [
- 0.06162497028708458
- ]
- ]
- ],
- [
- [
- [
- 0.03184327855706215
- ]
- ]
- ],
- [
- [
- [
- 0.034841544926166534
- ]
- ]
- ],
- [
- [
- [
- 0.043654315173625946
- ]
- ]
- ],
- [
- [
- [
- 0.035193152725696564
- ]
- ]
- ],
- [
- [
- [
- 0.046486977487802505
- ]
- ]
- ],
- [
- [
- [
- 0.03893642872571945
- ]
- ]
- ],
- [
- [
- [
- 0.032380517572164536
- ]
- ]
- ],
- [
- [
- [
- 0.03541776165366173
- ]
- ]
- ],
- [
- [
- [
- 0.06673543155193329
- ]
- ]
- ],
- [
- [
- [
- 0.03960069641470909
- ]
- ]
- ],
- [
- [
- [
- 0.05024051293730736
- ]
- ]
- ],
- [
- [
- [
- 0.032752200961112976
- ]
- ]
- ],
- [
- [
- [
- 0.029434340074658394
- ]
- ]
- ],
- [
- [
- [
- 0.06655780225992203
- ]
- ]
- ],
- [
- [
- [
- 0.04042933136224747
- ]
- ]
- ],
- [
- [
- [
- 0.061406515538692474
- ]
- ]
- ],
- [
- [
- [
- 0.04283922538161278
- ]
- ]
- ],
- [
- [
- [
- 0.03731854259967804
- ]
- ]
- ],
- [
- [
- [
- 0.03296734392642975
- ]
- ]
- ],
- [
- [
- [
- 0.03025551326572895
- ]
- ]
- ],
- [
- [
- [
- 0.030198169872164726
- ]
- ]
- ],
- [
- [
- [
- 0.03319168463349342
- ]
- ]
- ],
- [
- [
- [
- 0.03713120520114899
- ]
- ]
- ],
- [
- [
- [
- 0.041741691529750824
- ]
- ]
- ],
- [
- [
- [
- 0.039743442088365555
- ]
- ]
- ],
- [
- [
- [
- 0.059548135846853256
- ]
- ]
- ],
- [
- [
- [
- 0.03580949082970619
- ]
- ]
- ],
- [
- [
- [
- 0.03992390260100365
- ]
- ]
- ],
- [
- [
- [
- 0.04293249174952507
- ]
- ]
- ],
- [
- [
- [
- 0.05820776894688606
- ]
- ]
- ],
- [
- [
- [
- 0.038250263780355453
- ]
- ]
- ],
- [
- [
- [
- 0.02628682740032673
- ]
- ]
- ],
- [
- [
- [
- 0.03370650112628937
- ]
- ]
- ],
- [
- [
- [
- 0.0418529286980629
- ]
- ]
- ],
- [
- [
- [
- 0.0350838229060173
- ]
- ]
- ],
- [
- [
- [
- 0.039126504212617874
- ]
- ]
- ],
- [
- [
- [
- 0.025574631989002228
- ]
- ]
- ],
- [
- [
- [
- 0.03207508847117424
- ]
- ]
- ],
- [
- [
- [
- 0.03578626736998558
- ]
- ]
- ],
- [
- [
- [
- 0.04208718240261078
- ]
- ]
- ],
- [
- [
- [
- 0.03357081115245819
- ]
- ]
- ],
- [
- [
- [
- 0.03778370842337608
- ]
- ]
- ],
- [
- [
- [
- 0.04973386973142624
- ]
- ]
- ],
- [
- [
- [
- 0.037573762238025665
- ]
- ]
- ],
- [
- [
- [
- 0.025094740092754364
- ]
- ]
- ],
- [
- [
- [
- 0.08208134770393372
- ]
- ]
- ],
- [
- [
- [
- 0.033963512629270554
- ]
- ]
- ],
- [
- [
- [
- 0.03686705231666565
- ]
- ]
- ],
- [
- [
- [
- 0.04185941442847252
- ]
- ]
- ],
- [
- [
- [
- 0.03385307267308235
- ]
- ]
- ],
- [
- [
- [
- 0.03537223860621452
- ]
- ]
- ],
- [
- [
- [
- 0.03300606086850166
- ]
- ]
- ],
- [
- [
- [
- 0.027304597198963165
- ]
- ]
- ],
- [
- [
- [
- 0.04091409593820572
- ]
- ]
- ],
- [
- [
- [
- 0.04222351685166359
- ]
- ]
- ],
- [
- [
- [
- 0.03818219155073166
- ]
- ]
- ],
- [
- [
- [
- 0.03380357846617699
- ]
- ]
- ],
- [
- [
- [
- 0.028451940044760704
- ]
- ]
- ],
- [
- [
- [
- 0.033317022025585175
- ]
- ]
- ],
- [
- [
- [
- 0.052942320704460144
- ]
- ]
- ],
- [
- [
- [
- 0.03452914208173752
- ]
- ]
- ],
- [
- [
- [
- 0.03669885918498039
- ]
- ]
- ],
- [
- [
- [
- 0.04293540120124817
- ]
- ]
- ],
- [
- [
- [
- 0.03791869059205055
- ]
- ]
- ],
- [
- [
- [
- 0.0327424630522728
- ]
- ]
- ],
- [
- [
- [
- 0.03331146761775017
- ]
- ]
- ],
- [
- [
- [
- 0.039880260825157166
- ]
- ]
- ],
- [
- [
- [
- 0.036329932510852814
- ]
- ]
- ],
- [
- [
- [
- 0.040265731513500214
- ]
- ]
- ],
- [
- [
- [
- 0.03345780819654465
- ]
- ]
- ],
- [
- [
- [
- 0.047255437821149826
- ]
- ]
- ],
- [
- [
- [
- 0.05114135518670082
- ]
- ]
- ],
- [
- [
- [
- 0.034694965928792953
- ]
- ]
- ],
- [
- [
- [
- 0.029019782319664955
- ]
- ]
- ],
- [
- [
- [
- 0.039482105523347855
- ]
- ]
- ],
- [
- [
- [
- 0.039883602410554886
- ]
- ]
- ],
- [
- [
- [
- 0.047125205397605896
- ]
- ]
- ],
- [
- [
- [
- 0.03315503150224686
- ]
- ]
- ],
- [
- [
- [
- 0.06052902713418007
- ]
- ]
- ],
- [
- [
- [
- 0.03200286254286766
- ]
- ]
- ],
- [
- [
- [
- 0.048093538731336594
- ]
- ]
- ],
- [
- [
- [
- 0.06116608902812004
- ]
- ]
- ],
- [
- [
- [
- 0.03220059722661972
- ]
- ]
- ],
- [
- [
- [
- 0.034642450511455536
- ]
- ]
- ],
- [
- [
- [
- 0.03780777007341385
- ]
- ]
- ],
- [
- [
- [
- 0.030568616464734077
- ]
- ]
- ],
- [
- [
- [
- 0.03160896152257919
- ]
- ]
- ],
- [
- [
- [
- 0.03924040496349335
- ]
- ]
- ],
- [
- [
- [
- 0.03592246398329735
- ]
- ]
- ],
- [
- [
- [
- 0.03756722807884216
- ]
- ]
- ],
- [
- [
- [
- 0.03603632003068924
- ]
- ]
- ],
- [
- [
- [
- 0.051258061081171036
- ]
- ]
- ],
- [
- [
- [
- 0.03205950930714607
- ]
- ]
- ],
- [
- [
- [
- 0.03254719451069832
- ]
- ]
- ],
- [
- [
- [
- 0.03436034172773361
- ]
- ]
- ],
- [
- [
- [
- 0.033242519944906235
- ]
- ]
- ],
- [
- [
- [
- 0.030306532979011536
- ]
- ]
- ],
- [
- [
- [
- 0.029331017285585403
- ]
- ]
- ],
- [
- [
- [
- 0.050272222608327866
- ]
- ]
- ],
- [
- [
- [
- 0.03367631882429123
- ]
- ]
- ],
- [
- [
- [
- 0.031178971752524376
- ]
- ]
- ],
- [
- [
- [
- 0.034512732177972794
- ]
- ]
- ],
- [
- [
- [
- 0.03322600573301315
- ]
- ]
- ],
- [
- [
- [
- 0.04220220819115639
- ]
- ]
- ],
- [
- [
- [
- 0.050839610397815704
- ]
- ]
- ],
- [
- [
- [
- 0.04620416462421417
- ]
- ]
- ],
- [
- [
- [
- 0.06644801050424576
- ]
- ]
- ],
- [
- [
- [
- 0.03092820942401886
- ]
- ]
- ],
- [
- [
- [
- 0.03293071314692497
- ]
- ]
- ],
- [
- [
- [
- 0.03656827285885811
- ]
- ]
- ],
- [
- [
- [
- 0.04048057645559311
- ]
- ]
- ],
- [
- [
- [
- 0.041733864694833755
- ]
- ]
- ],
- [
- [
- [
- 0.03774850443005562
- ]
- ]
- ],
- [
- [
- [
- 0.03264128044247627
- ]
- ]
- ],
- [
- [
- [
- 0.034176673740148544
- ]
- ]
- ],
- [
- [
- [
- 0.03341341018676758
- ]
- ]
- ],
- [
- [
- [
- 0.03735431656241417
- ]
- ]
- ],
- [
- [
- [
- 0.03956747055053711
- ]
- ]
- ],
- [
- [
- [
- 0.03177338093519211
- ]
- ]
- ],
- [
- [
- [
- 0.03713758662343025
- ]
- ]
- ],
- [
- [
- [
- 0.0628010481595993
- ]
- ]
- ],
- [
- [
- [
- 0.032783228904008865
- ]
- ]
- ],
- [
- [
- [
- 0.03855343163013458
- ]
- ]
- ],
- [
- [
- [
- 0.0414663664996624
- ]
- ]
- ],
- [
- [
- [
- 0.03646911680698395
- ]
- ]
- ],
- [
- [
- [
- 0.033654533326625824
- ]
- ]
- ],
- [
- [
- [
- 0.03340587764978409
- ]
- ]
- ],
- [
- [
- [
- 0.0329565554857254
- ]
- ]
- ],
- [
- [
- [
- 0.027662716805934906
- ]
- ]
- ],
- [
- [
- [
- 0.027366789057850838
- ]
- ]
- ],
- [
- [
- [
- 0.04144876077771187
- ]
- ]
- ],
- [
- [
- [
- 0.039641886949539185
- ]
- ]
- ],
- [
- [
- [
- 0.0431605726480484
- ]
- ]
- ],
- [
- [
- [
- 0.03584709018468857
- ]
- ]
- ],
- [
- [
- [
- 0.038403600454330444
- ]
- ]
- ],
- [
- [
- [
- 0.04188688099384308
- ]
- ]
- ],
- [
- [
- [
- 0.03198779746890068
- ]
- ]
- ],
- [
- [
- [
- 0.05518458038568497
- ]
- ]
- ],
- [
- [
- [
- 0.029979974031448364
- ]
- ]
- ],
- [
- [
- [
- 0.04568280652165413
- ]
- ]
- ],
- [
- [
- [
- 0.038186460733413696
- ]
- ]
- ],
- [
- [
- [
- 0.04580250382423401
- ]
- ]
- ],
- [
- [
- [
- 0.03924376145005226
- ]
- ]
- ],
- [
- [
- [
- 0.029565850272774696
- ]
- ]
- ],
- [
- [
- [
- 0.03199578821659088
- ]
- ]
- ],
- [
- [
- [
- 0.03992621600627899
- ]
- ]
- ],
- [
- [
- [
- 0.045633893460035324
- ]
- ]
- ],
- [
- [
- [
- 0.04349004849791527
- ]
- ]
- ],
- [
- [
- [
- 0.03889603540301323
- ]
- ]
- ],
- [
- [
- [
- 0.03464590013027191
- ]
- ]
- ],
- [
- [
- [
- 0.035488031804561615
- ]
- ]
- ],
- [
- [
- [
- 0.043248120695352554
- ]
- ]
- ],
- [
- [
- [
- 0.037834931164979935
- ]
- ]
- ],
- [
- [
- [
- 0.045288894325494766
- ]
- ]
- ],
- [
- [
- [
- 0.05533774942159653
- ]
- ]
- ],
- [
- [
- [
- 0.037075307220220566
- ]
- ]
- ],
- [
- [
- [
- 0.03716319054365158
- ]
- ]
- ],
- [
- [
- [
- 0.03078501857817173
- ]
- ]
- ],
- [
- [
- [
- 0.030628351494669914
- ]
- ]
- ],
- [
- [
- [
- 0.03583904355764389
- ]
- ]
- ],
- [
- [
- [
- 0.029445936903357506
- ]
- ]
- ],
- [
- [
- [
- 0.04016609117388725
- ]
- ]
- ],
- [
- [
- [
- 0.03953938186168671
- ]
- ]
- ],
- [
- [
- [
- 0.03640396147966385
- ]
- ]
- ],
- [
- [
- [
- 0.044447578489780426
- ]
- ]
- ],
- [
- [
- [
- 0.05050224810838699
- ]
- ]
- ],
- [
- [
- [
- 0.03498444706201553
- ]
- ]
- ],
- [
- [
- [
- 0.062107305973768234
- ]
- ]
- ],
- [
- [
- [
- 0.02925701253116131
- ]
- ]
- ],
- [
- [
- [
- 0.03288936987519264
- ]
- ]
- ],
- [
- [
- [
- 0.07241234183311462
- ]
- ]
- ],
- [
- [
- [
- 0.03259049728512764
- ]
- ]
- ],
- [
- [
- [
- 0.02964949421584606
- ]
- ]
- ],
- [
- [
- [
- 0.04181177541613579
- ]
- ]
- ],
- [
- [
- [
- 0.03697993978857994
- ]
- ]
- ],
- [
- [
- [
- 0.033927902579307556
- ]
- ]
- ],
- [
- [
- [
- 0.03363431245088577
- ]
- ]
- ],
- [
- [
- [
- 0.03606482222676277
- ]
- ]
- ],
- [
- [
- [
- 0.035203978419303894
- ]
- ]
- ],
- [
- [
- [
- 0.038813285529613495
- ]
- ]
- ],
- [
- [
- [
- 0.045425012707710266
- ]
- ]
- ],
- [
- [
- [
- 0.05796200409531593
- ]
- ]
- ],
- [
- [
- [
- 0.028005672618746758
- ]
- ]
- ],
- [
- [
- [
- 0.043457381427288055
- ]
- ]
- ],
- [
- [
- [
- 0.07537607848644257
- ]
- ]
- ],
- [
- [
- [
- 0.0320654921233654
- ]
- ]
- ],
- [
- [
- [
- 0.029459914192557335
- ]
- ]
- ],
- [
- [
- [
- 0.042944371700286865
- ]
- ]
- ],
- [
- [
- [
- 0.02788151055574417
- ]
- ]
- ],
- [
- [
- [
- 0.03439117223024368
- ]
- ]
- ],
- [
- [
- [
- 0.03546833246946335
- ]
- ]
- ],
- [
- [
- [
- 0.030581049621105194
- ]
- ]
- ],
- [
- [
- [
- 0.03856305405497551
- ]
- ]
- ],
- [
- [
- [
- 0.037279874086380005
- ]
- ]
- ],
- [
- [
- [
- 0.03286551311612129
- ]
- ]
- ],
- [
- [
- [
- 0.04092445597052574
- ]
- ]
- ],
- [
- [
- [
- 0.05101185664534569
- ]
- ]
- ],
- [
- [
- [
- 0.04073019325733185
- ]
- ]
- ],
- [
- [
- [
- 0.04229498654603958
- ]
- ]
- ],
- [
- [
- [
- 0.04096459969878197
- ]
- ]
- ],
- [
- [
- [
- 0.055894091725349426
- ]
- ]
- ],
- [
- [
- [
- 0.0356546975672245
- ]
- ]
- ],
- [
- [
- [
- 0.06266120076179504
- ]
- ]
- ],
- [
- [
- [
- 0.04905158281326294
- ]
- ]
- ],
- [
- [
- [
- 0.043701086193323135
- ]
- ]
- ],
- [
- [
- [
- 0.0482654795050621
- ]
- ]
- ],
- [
- [
- [
- 0.034845076501369476
- ]
- ]
- ],
- [
- [
- [
- 0.033355314284563065
- ]
- ]
- ],
- [
- [
- [
- 0.02565440535545349
- ]
- ]
- ],
- [
- [
- [
- 0.0499095544219017
- ]
- ]
- ],
- [
- [
- [
- 0.06536515802145004
- ]
- ]
- ],
- [
- [
- [
- 0.05017659068107605
- ]
- ]
- ],
- [
- [
- [
- 0.040875498205423355
- ]
- ]
- ],
- [
- [
- [
- 0.032254889607429504
- ]
- ]
- ],
- [
- [
- [
- 0.027056077495217323
- ]
- ]
- ],
- [
- [
- [
- 0.03683463856577873
- ]
- ]
- ],
- [
- [
- [
- 0.03712119907140732
- ]
- ]
- ],
- [
- [
- [
- 0.051835138350725174
- ]
- ]
- ],
- [
- [
- [
- 0.04251693934202194
- ]
- ]
- ],
- [
- [
- [
- 0.030167631804943085
- ]
- ]
- ],
- [
- [
- [
- 0.0455087311565876
- ]
- ]
- ],
- [
- [
- [
- 0.035167865455150604
- ]
- ]
- ],
- [
- [
- [
- 0.03396354615688324
- ]
- ]
- ],
- [
- [
- [
- 0.04180384427309036
- ]
- ]
- ],
- [
- [
- [
- 0.03496631979942322
- ]
- ]
- ],
- [
- [
- [
- 0.054565057158470154
- ]
- ]
- ],
- [
- [
- [
- 0.04563112184405327
- ]
- ]
- ],
- [
- [
- [
- 0.06690599024295807
- ]
- ]
- ],
- [
- [
- [
- 0.03510822728276253
- ]
- ]
- ],
- [
- [
- [
- 0.1025245413184166
- ]
- ]
- ],
- [
- [
- [
- 0.03200192004442215
- ]
- ]
- ],
- [
- [
- [
- 0.03865857794880867
- ]
- ]
- ],
- [
- [
- [
- 0.04680703207850456
- ]
- ]
- ],
- [
- [
- [
- 0.03826065734028816
- ]
- ]
- ],
- [
- [
- [
- 0.03217551112174988
- ]
- ]
- ],
- [
- [
- [
- 0.0353720486164093
- ]
- ]
- ],
- [
- [
- [
- 0.03524888679385185
- ]
- ]
- ],
- [
- [
- [
- 0.054701801389455795
- ]
- ]
- ],
- [
- [
- [
- 0.06050343066453934
- ]
- ]
- ],
- [
- [
- [
- 0.030564799904823303
- ]
- ]
- ],
- [
- [
- [
- 0.04061434417963028
- ]
- ]
- ],
- [
- [
- [
- 0.03820385783910751
- ]
- ]
- ],
- [
- [
- [
- 0.03137297183275223
- ]
- ]
- ],
- [
- [
- [
- 0.03018290176987648
- ]
- ]
- ],
- [
- [
- [
- 0.034544937312603
- ]
- ]
- ],
- [
- [
- [
- 0.05858512967824936
- ]
- ]
- ],
- [
- [
- [
- 0.037210818380117416
- ]
- ]
- ],
- [
- [
- [
- 0.03873147442936897
- ]
- ]
- ],
- [
- [
- [
- 0.03468357026576996
- ]
- ]
- ],
- [
- [
- [
- 0.05646161362528801
- ]
- ]
- ],
- [
- [
- [
- 0.03869690001010895
- ]
- ]
- ],
- [
- [
- [
- 0.039614710956811905
- ]
- ]
- ],
- [
- [
- [
- 0.03844744712114334
- ]
- ]
- ],
- [
- [
- [
- 0.03755709156394005
- ]
- ]
- ],
- [
- [
- [
- 0.04222511500120163
- ]
- ]
- ],
- [
- [
- [
- 0.03467971086502075
- ]
- ]
- ],
- [
- [
- [
- 0.04558422043919563
- ]
- ]
- ],
- [
- [
- [
- 0.038851067423820496
- ]
- ]
- ],
- [
- [
- [
- 0.05871186777949333
- ]
- ]
- ],
- [
- [
- [
- 0.037491947412490845
- ]
- ]
- ],
- [
- [
- [
- 0.04478742927312851
- ]
- ]
- ],
- [
- [
- [
- 0.04191657900810242
- ]
- ]
- ],
- [
- [
- [
- 0.03810896351933479
- ]
- ]
- ],
- [
- [
- [
- 0.03494725376367569
- ]
- ]
- ],
- [
- [
- [
- 0.028281066566705704
- ]
- ]
- ],
- [
- [
- [
- 0.03362400829792023
- ]
- ]
- ],
- [
- [
- [
- 0.040158942341804504
- ]
- ]
- ],
- [
- [
- [
- 0.03781546279788017
- ]
- ]
- ],
- [
- [
- [
- 0.05227505788207054
- ]
- ]
- ],
- [
- [
- [
- 0.053443793207407
- ]
- ]
- ],
- [
- [
- [
- 0.04495891183614731
- ]
- ]
- ],
- [
- [
- [
- 0.07577130943536758
- ]
- ]
- ],
- [
- [
- [
- 0.036623526364564896
- ]
- ]
- ],
- [
- [
- [
- 0.044337671250104904
- ]
- ]
- ],
- [
- [
- [
- 0.045028913766145706
- ]
- ]
- ],
- [
- [
- [
- 0.03656711429357529
- ]
- ]
- ],
- [
- [
- [
- 0.06586629897356033
- ]
- ]
- ],
- [
- [
- [
- 0.037347570061683655
- ]
- ]
- ],
- [
- [
- [
- 0.03627286106348038
- ]
- ]
- ],
- [
- [
- [
- 0.03502471372485161
- ]
- ]
- ],
- [
- [
- [
- 0.03486394137144089
- ]
- ]
- ],
- [
- [
- [
- 0.06753896176815033
- ]
- ]
- ],
- [
- [
- [
- 0.04147156700491905
- ]
- ]
- ],
- [
- [
- [
- 0.03868725895881653
- ]
- ]
- ],
- [
- [
- [
- 0.04142829775810242
- ]
- ]
- ],
- [
- [
- [
- 0.038004085421562195
- ]
- ]
- ],
- [
- [
- [
- 0.032040853053331375
- ]
- ]
- ],
- [
- [
- [
- 0.03667396306991577
- ]
- ]
- ],
- [
- [
- [
- 0.056314025074243546
- ]
- ]
- ],
- [
- [
- [
- 0.03003465197980404
- ]
- ]
- ],
- [
- [
- [
- 0.02690730057656765
- ]
- ]
- ],
- [
- [
- [
- 0.04464823752641678
- ]
- ]
- ],
- [
- [
- [
- 0.03623577207326889
- ]
- ]
- ],
- [
- [
- [
- 0.03491956740617752
- ]
- ]
- ],
- [
- [
- [
- 0.024354903027415276
- ]
- ]
- ],
- [
- [
- [
- 0.06594093888998032
- ]
- ]
- ],
- [
- [
- [
- 0.05639723688364029
- ]
- ]
- ],
- [
- [
- [
- 0.03724018856883049
- ]
- ]
- ],
- [
- [
- [
- 0.046436816453933716
- ]
- ]
- ],
- [
- [
- [
- 0.044450316578149796
- ]
- ]
- ],
- [
- [
- [
- 0.03475113958120346
- ]
- ]
- ],
- [
- [
- [
- 0.03232420235872269
- ]
- ]
- ],
- [
- [
- [
- 0.04301406070590019
- ]
- ]
- ],
- [
- [
- [
- 0.035926997661590576
- ]
- ]
- ],
- [
- [
- [
- 0.05586111545562744
- ]
- ]
- ],
- [
- [
- [
- 0.06060151010751724
- ]
- ]
- ],
- [
- [
- [
- 0.04344186931848526
- ]
- ]
- ],
- [
- [
- [
- 0.04946756362915039
- ]
- ]
- ],
- [
- [
- [
- 0.06633355468511581
- ]
- ]
- ],
- [
- [
- [
- 0.0370912067592144
- ]
- ]
- ],
- [
- [
- [
- 0.0830923467874527
- ]
- ]
- ],
- [
- [
- [
- 0.06716733425855637
- ]
- ]
- ],
- [
- [
- [
- 0.03640762344002724
- ]
- ]
- ],
- [
- [
- [
- 0.029078008607029915
- ]
- ]
- ],
- [
- [
- [
- 0.05142870172858238
- ]
- ]
- ],
- [
- [
- [
- 0.034790147095918655
- ]
- ]
- ],
- [
- [
- [
- 0.032619770616292953
- ]
- ]
- ],
- [
- [
- [
- 0.044493772089481354
- ]
- ]
- ],
- [
- [
- [
- 0.039537183940410614
- ]
- ]
- ],
- [
- [
- [
- 0.05771690607070923
- ]
- ]
- ],
- [
- [
- [
- 0.04061007872223854
- ]
- ]
- ],
- [
- [
- [
- 0.0516488216817379
- ]
- ]
- ],
- [
- [
- [
- 0.03870105370879173
- ]
- ]
- ],
- [
- [
- [
- 0.03722478821873665
- ]
- ]
- ],
- [
- [
- [
- 0.03233969211578369
- ]
- ]
- ],
- [
- [
- [
- 0.06962307542562485
- ]
- ]
- ],
- [
- [
- [
- 0.04285705089569092
- ]
- ]
- ],
- [
- [
- [
- 0.043680913746356964
- ]
- ]
- ],
- [
- [
- [
- 0.030660370364785194
- ]
- ]
- ],
- [
- [
- [
- 0.0317404679954052
- ]
- ]
- ],
- [
- [
- [
- 0.029225680977106094
- ]
- ]
- ],
- [
- [
- [
- 0.03536823019385338
- ]
- ]
- ],
- [
- [
- [
- 0.0382460355758667
- ]
- ]
- ],
- [
- [
- [
- 0.05842171236872673
- ]
- ]
- ],
- [
- [
- [
- 0.03329859673976898
- ]
- ]
- ],
- [
- [
- [
- 0.029414990916848183
- ]
- ]
- ],
- [
- [
- [
- 0.035236094146966934
- ]
- ]
- ],
- [
- [
- [
- 0.02771538868546486
- ]
- ]
- ],
- [
- [
- [
- 0.049047231674194336
- ]
- ]
- ],
- [
- [
- [
- 0.0381055548787117
- ]
- ]
- ],
- [
- [
- [
- 0.04481690004467964
- ]
- ]
- ],
- [
- [
- [
- 0.04134872928261757
- ]
- ]
- ],
- [
- [
- [
- 0.033979594707489014
- ]
- ]
- ],
- [
- [
- [
- 0.038507986813783646
- ]
- ]
- ],
- [
- [
- [
- 0.046335987746715546
- ]
- ]
- ],
- [
- [
- [
- 0.019298044964671135
- ]
- ]
- ],
- [
- [
- [
- 0.02755465731024742
- ]
- ]
- ],
- [
- [
- [
- 0.042554765939712524
- ]
- ]
- ],
- [
- [
- [
- 0.034139253199100494
- ]
- ]
- ],
- [
- [
- [
- 0.03714199364185333
- ]
- ]
- ],
- [
- [
- [
- 0.04167892411351204
- ]
- ]
- ],
- [
- [
- [
- 0.040669627487659454
- ]
- ]
- ],
- [
- [
- [
- 0.046107515692710876
- ]
- ]
- ],
- [
- [
- [
- 0.05236728861927986
- ]
- ]
- ],
- [
- [
- [
- 0.04518190026283264
- ]
- ]
- ],
- [
- [
- [
- 0.037280455231666565
- ]
- ]
- ],
- [
- [
- [
- 0.0756673514842987
- ]
- ]
- ],
- [
- [
- [
- 0.036026690155267715
- ]
- ]
- ],
- [
- [
- [
- 0.03412859886884689
- ]
- ]
- ],
- [
- [
- [
- 0.04209030792117119
- ]
- ]
- ],
- [
- [
- [
- 0.03164730966091156
- ]
- ]
- ],
- [
- [
- [
- 0.032094553112983704
- ]
- ]
- ],
- [
- [
- [
- 0.03810131177306175
- ]
- ]
- ],
- [
- [
- [
- 0.02771913819015026
- ]
- ]
- ],
- [
- [
- [
- 0.03357061743736267
- ]
- ]
- ],
- [
- [
- [
- 0.03505298122763634
- ]
- ]
- ],
- [
- [
- [
- 0.06212979182600975
- ]
- ]
- ],
- [
- [
- [
- 0.03581423684954643
- ]
- ]
- ],
- [
- [
- [
- 0.030637452378869057
- ]
- ]
- ],
- [
- [
- [
- 0.04505368694663048
- ]
- ]
- ],
- [
- [
- [
- 0.038616590201854706
- ]
- ]
- ],
- [
- [
- [
- 0.03270649537444115
- ]
- ]
- ],
- [
- [
- [
- 0.035444460809230804
- ]
- ]
- ],
- [
- [
- [
- 0.03683904558420181
- ]
- ]
- ],
- [
- [
- [
- 0.03164767101407051
- ]
- ]
- ],
- [
- [
- [
- 0.048190128058195114
- ]
- ]
- ],
- [
- [
- [
- 0.04172312468290329
- ]
- ]
- ],
- [
- [
- [
- 0.03968976065516472
- ]
- ]
- ],
- [
- [
- [
- 0.036394502967596054
- ]
- ]
- ],
- [
- [
- [
- 0.036441124975681305
- ]
- ]
- ],
- [
- [
- [
- 0.03075777366757393
- ]
- ]
- ],
- [
- [
- [
- 0.042357344180345535
- ]
- ]
- ],
- [
- [
- [
- 0.05425402894616127
- ]
- ]
- ],
- [
- [
- [
- 0.04285291209816933
- ]
- ]
- ],
- [
- [
- [
- 0.038705483078956604
- ]
- ]
- ],
- [
- [
- [
- 0.040995024144649506
- ]
- ]
- ],
- [
- [
- [
- 0.05983557179570198
- ]
- ]
- ],
- [
- [
- [
- 0.05537007376551628
- ]
- ]
- ],
- [
- [
- [
- 0.04154233634471893
- ]
- ]
- ],
- [
- [
- [
- 0.04117961600422859
- ]
- ]
- ],
- [
- [
- [
- 0.03946366906166077
- ]
- ]
- ],
- [
- [
- [
- 0.031163813546299934
- ]
- ]
- ],
- [
- [
- [
- 0.04542817175388336
- ]
- ]
- ],
- [
- [
- [
- 0.0907159224152565
- ]
- ]
- ],
- [
- [
- [
- 0.03212418407201767
- ]
- ]
- ],
- [
- [
- [
- 0.03939588740468025
- ]
- ]
- ],
- [
- [
- [
- 0.0390639528632164
- ]
- ]
- ],
- [
- [
- [
- 0.06853688508272171
- ]
- ]
- ],
- [
- [
- [
- 0.037842147052288055
- ]
- ]
- ],
- [
- [
- [
- 0.03119342029094696
- ]
- ]
- ],
- [
- [
- [
- 0.052754200994968414
- ]
- ]
- ],
- [
- [
- [
- 0.06210914999246597
- ]
- ]
- ],
- [
- [
- [
- 0.03193489462137222
- ]
- ]
- ],
- [
- [
- [
- 0.03900056704878807
- ]
- ]
- ],
- [
- [
- [
- 0.03312145173549652
- ]
- ]
- ],
- [
- [
- [
- 0.05922767147421837
- ]
- ]
- ],
- [
- [
- [
- 0.03970002755522728
- ]
- ]
- ],
- [
- [
- [
- 0.07441844791173935
- ]
- ]
- ],
- [
- [
- [
- 0.034485843032598495
- ]
- ]
- ],
- [
- [
- [
- 0.039073165506124496
- ]
- ]
- ],
- [
- [
- [
- 0.030020464211702347
- ]
- ]
- ],
- [
- [
- [
- 0.0640251412987709
- ]
- ]
- ],
- [
- [
- [
- 0.06430987268686295
- ]
- ]
- ],
- [
- [
- [
- 0.051140863448381424
- ]
- ]
- ],
- [
- [
- [
- 0.03822903707623482
- ]
- ]
- ],
- [
- [
- [
- 0.03774797171354294
- ]
- ]
- ],
- [
- [
- [
- 0.037639934569597244
- ]
- ]
- ],
- [
- [
- [
- 0.035608045756816864
- ]
- ]
- ],
- [
- [
- [
- 0.043284621089696884
- ]
- ]
- ],
- [
- [
- [
- 0.0370304211974144
- ]
- ]
- ],
- [
- [
- [
- 0.032314036041498184
- ]
- ]
- ],
- [
- [
- [
- 0.02660265564918518
- ]
- ]
- ],
- [
- [
- [
- 0.05411161482334137
- ]
- ]
- ],
- [
- [
- [
- 0.030090946704149246
- ]
- ]
- ],
- [
- [
- [
- 0.03494611382484436
- ]
- ]
- ],
- [
- [
- [
- 0.03035469725728035
- ]
- ]
- ],
- [
- [
- [
- 0.03276047855615616
- ]
- ]
- ],
- [
- [
- [
- 0.044150400906801224
- ]
- ]
- ],
- [
- [
- [
- 0.05680425837635994
- ]
- ]
- ],
- [
- [
- [
- 0.03472881391644478
- ]
- ]
- ],
- [
- [
- [
- 0.03327135741710663
- ]
- ]
- ],
- [
- [
- [
- 0.03935960680246353
- ]
- ]
- ],
- [
- [
- [
- 0.03434077277779579
- ]
- ]
- ],
- [
- [
- [
- 0.037435129284858704
- ]
- ]
- ],
- [
- [
- [
- 0.06330116093158722
- ]
- ]
- ],
- [
- [
- [
- 0.02752861939370632
- ]
- ]
- ],
- [
- [
- [
- 0.04295704886317253
- ]
- ]
- ],
- [
- [
- [
- 0.032372258603572845
- ]
- ]
- ],
- [
- [
- [
- 0.03466672822833061
- ]
- ]
- ],
- [
- [
- [
- 0.03207859769463539
- ]
- ]
- ],
- [
- [
- [
- 0.03484901040792465
- ]
- ]
- ],
- [
- [
- [
- 0.041798289865255356
- ]
- ]
- ],
- [
- [
- [
- 0.034427329897880554
- ]
- ]
- ],
- [
- [
- [
- 0.031593453139066696
- ]
- ]
- ],
- [
- [
- [
- 0.03776877000927925
- ]
- ]
- ],
- [
- [
- [
- 0.02790505439043045
- ]
- ]
- ],
- [
- [
- [
- 0.06570174545049667
- ]
- ]
- ],
- [
- [
- [
- 0.02972835674881935
- ]
- ]
- ],
- [
- [
- [
- 0.033917978405952454
- ]
- ]
- ],
- [
- [
- [
- 0.05485783889889717
- ]
- ]
- ],
- [
- [
- [
- 0.0480397567152977
- ]
- ]
- ],
- [
- [
- [
- 0.04836508259177208
- ]
- ]
- ],
- [
- [
- [
- 0.04141492024064064
- ]
- ]
- ],
- [
- [
- [
- 0.041322898119688034
- ]
- ]
- ],
- [
- [
- [
- 0.07862960547208786
- ]
- ]
- ],
- [
- [
- [
- 0.03651628643274307
- ]
- ]
- ],
- [
- [
- [
- 0.07565409690141678
- ]
- ]
- ],
- [
- [
- [
- 0.034765273332595825
- ]
- ]
- ],
- [
- [
- [
- 0.034393783658742905
- ]
- ]
- ],
- [
- [
- [
- 0.04664672166109085
- ]
- ]
- ],
- [
- [
- [
- 0.04186774417757988
- ]
- ]
- ],
- [
- [
- [
- 0.029703667387366295
- ]
- ]
- ],
- [
- [
- [
- 0.06952790170907974
- ]
- ]
- ],
- [
- [
- [
- 0.050361502915620804
- ]
- ]
- ],
- [
- [
- [
- 0.04274629428982735
- ]
- ]
- ],
- [
- [
- [
- 0.03907494619488716
- ]
- ]
- ],
- [
- [
- [
- 0.06698577105998993
- ]
- ]
- ],
- [
- [
- [
- 0.03659119829535484
- ]
- ]
- ],
- [
- [
- [
- 0.047653812915086746
- ]
- ]
- ],
- [
- [
- [
- 0.027656814083456993
- ]
- ]
- ],
- [
- [
- [
- 0.034627415239810944
- ]
- ]
- ],
- [
- [
- [
- 0.03988649323582649
- ]
- ]
- ],
- [
- [
- [
- 0.03048333153128624
- ]
- ]
- ],
- [
- [
- [
- 0.03243991360068321
- ]
- ]
- ],
- [
- [
- [
- 0.04180580750107765
- ]
- ]
- ],
- [
- [
- [
- 0.033524397760629654
- ]
- ]
- ],
- [
- [
- [
- 0.032647132873535156
- ]
- ]
- ],
- [
- [
- [
- 0.03758316487073898
- ]
- ]
- ],
- [
- [
- [
- 0.029778894037008286
- ]
- ]
- ],
- [
- [
- [
- 0.03366637974977493
- ]
- ]
- ],
- [
- [
- [
- 0.03300342708826065
- ]
- ]
- ],
- [
- [
- [
- 0.03791321441531181
- ]
- ]
- ],
- [
- [
- [
- 0.034650448709726334
- ]
- ]
- ],
- [
- [
- [
- 0.05171716958284378
- ]
- ]
- ],
- [
- [
- [
- 0.03098304383456707
- ]
- ]
- ],
- [
- [
- [
- 0.04409071430563927
- ]
- ]
- ],
- [
- [
- [
- 0.03343130275607109
- ]
- ]
- ],
- [
- [
- [
- 0.02800634875893593
- ]
- ]
- ],
- [
- [
- [
- 0.03373754769563675
- ]
- ]
- ],
- [
- [
- [
- 0.035008613020181656
- ]
- ]
- ],
- [
- [
- [
- 0.03939009830355644
- ]
- ]
- ],
- [
- [
- [
- 0.03428308293223381
- ]
- ]
- ],
- [
- [
- [
- 0.03769834712147713
- ]
- ]
- ],
- [
- [
- [
- 0.034773606806993484
- ]
- ]
- ],
- [
- [
- [
- 0.041339267045259476
- ]
- ]
- ],
- [
- [
- [
- 0.03076154738664627
- ]
- ]
- ],
- [
- [
- [
- 0.04969344660639763
- ]
- ]
- ],
- [
- [
- [
- 0.03862404823303223
- ]
- ]
- ],
- [
- [
- [
- 0.04363154619932175
- ]
- ]
- ],
- [
- [
- [
- 0.03621627762913704
- ]
- ]
- ],
- [
- [
- [
- 0.04887732118368149
- ]
- ]
- ],
- [
- [
- [
- 0.04003177210688591
- ]
- ]
- ],
- [
- [
- [
- 0.0601038858294487
- ]
- ]
- ],
- [
- [
- [
- 0.03674643486738205
- ]
- ]
- ],
- [
- [
- [
- 0.034997910261154175
- ]
- ]
- ],
- [
- [
- [
- 0.041870396584272385
- ]
- ]
- ],
- [
- [
- [
- 0.031856611371040344
- ]
- ]
- ],
- [
- [
- [
- 0.035118360072374344
- ]
- ]
- ],
- [
- [
- [
- 0.031184392049908638
- ]
- ]
- ],
- [
- [
- [
- 0.06711138784885406
- ]
- ]
- ],
- [
- [
- [
- 0.037421729415655136
- ]
- ]
- ],
- [
- [
- [
- 0.02982216328382492
- ]
- ]
- ],
- [
- [
- [
- 0.03713086619973183
- ]
- ]
- ],
- [
- [
- [
- 0.04279274493455887
- ]
- ]
- ],
- [
- [
- [
- 0.03141489252448082
- ]
- ]
- ],
- [
- [
- [
- 0.0346524603664875
- ]
- ]
- ],
- [
- [
- [
- 0.03527962788939476
- ]
- ]
- ],
- [
- [
- [
- 0.035479653626680374
- ]
- ]
- ],
- [
- [
- [
- 0.03545263037085533
- ]
- ]
- ],
- [
- [
- [
- 0.04659697785973549
- ]
- ]
- ],
- [
- [
- [
- 0.04782481491565704
- ]
- ]
- ],
- [
- [
- [
- 0.03545992821455002
- ]
- ]
- ],
- [
- [
- [
- 0.033041320741176605
- ]
- ]
- ],
- [
- [
- [
- 0.03755947947502136
- ]
- ]
- ],
- [
- [
- [
- 0.037558868527412415
- ]
- ]
- ],
- [
- [
- [
- 0.032106831669807434
- ]
- ]
- ],
- [
- [
- [
- 0.03432776778936386
- ]
- ]
- ],
- [
- [
- [
- 0.05079035833477974
- ]
- ]
- ],
- [
- [
- [
- 0.07614286243915558
- ]
- ]
- ],
- [
- [
- [
- 0.03484952449798584
- ]
- ]
- ],
- [
- [
- [
- 0.033543672412633896
- ]
- ]
- ],
- [
- [
- [
- 0.04104761779308319
- ]
- ]
- ],
- [
- [
- [
- 0.06048652157187462
- ]
- ]
- ],
- [
- [
- [
- 0.07968276739120483
- ]
- ]
- ],
- [
- [
- [
- 0.0435795895755291
- ]
- ]
- ],
- [
- [
- [
- 0.06549122929573059
- ]
- ]
- ],
- [
- [
- [
- 0.039801303297281265
- ]
- ]
- ],
- [
- [
- [
- 0.027248738333582878
- ]
- ]
- ],
- [
- [
- [
- 0.03597860038280487
- ]
- ]
- ],
- [
- [
- [
- 0.04769052565097809
- ]
- ]
- ],
- [
- [
- [
- 0.03415066748857498
- ]
- ]
- ],
- [
- [
- [
- 0.05259673297405243
- ]
- ]
- ],
- [
- [
- [
- 0.03124968521296978
- ]
- ]
- ],
- [
- [
- [
- 0.03382129594683647
- ]
- ]
- ],
- [
- [
- [
- 0.0427110493183136
- ]
- ]
- ],
- [
- [
- [
- 0.05859317630529404
- ]
- ]
- ],
- [
- [
- [
- 0.0458543598651886
- ]
- ]
- ],
- [
- [
- [
- 0.04076540097594261
- ]
- ]
- ],
- [
- [
- [
- 0.02689000964164734
- ]
- ]
- ],
- [
- [
- [
- 0.039229873567819595
- ]
- ]
- ],
- [
- [
- [
- 0.03878520801663399
- ]
- ]
- ],
- [
- [
- [
- 0.034435633569955826
- ]
- ]
- ],
- [
- [
- [
- 0.03984743729233742
- ]
- ]
- ],
- [
- [
- [
- 0.038396403193473816
- ]
- ]
- ],
- [
- [
- [
- 0.050103809684515
- ]
- ]
- ],
- [
- [
- [
- 0.032181497663259506
- ]
- ]
- ],
- [
- [
- [
- 0.07672063261270523
- ]
- ]
- ],
- [
- [
- [
- 0.03278270363807678
- ]
- ]
- ],
- [
- [
- [
- 0.032958947122097015
- ]
- ]
- ],
- [
- [
- [
- 0.028835413977503777
- ]
- ]
- ],
- [
- [
- [
- 0.03521037474274635
- ]
- ]
- ],
- [
- [
- [
- 0.06864071637392044
- ]
- ]
- ],
- [
- [
- [
- 0.029206182807683945
- ]
- ]
- ],
- [
- [
- [
- 0.03607212379574776
- ]
- ]
- ],
- [
- [
- [
- 0.03496142476797104
- ]
- ]
- ],
- [
- [
- [
- 0.03603910282254219
- ]
- ]
- ],
- [
- [
- [
- 0.04238876327872276
- ]
- ]
- ],
- [
- [
- [
- 0.053925685584545135
- ]
- ]
- ],
- [
- [
- [
- 0.035604532808065414
- ]
- ]
- ],
- [
- [
- [
- 0.041708528995513916
- ]
- ]
- ],
- [
- [
- [
- 0.03089599497616291
- ]
- ]
- ],
- [
- [
- [
- 0.030886288732290268
- ]
- ]
- ],
- [
- [
- [
- 0.03523436188697815
- ]
- ]
- ],
- [
- [
- [
- 0.06941303610801697
- ]
- ]
- ],
- [
- [
- [
- 0.056606415659189224
- ]
- ]
- ],
- [
- [
- [
- 0.04071033373475075
- ]
- ]
- ],
- [
- [
- [
- 0.038799598813056946
- ]
- ]
- ],
- [
- [
- [
- 0.03498181328177452
- ]
- ]
- ],
- [
- [
- [
- 0.036877263337373734
- ]
- ]
- ],
- [
- [
- [
- 0.03806427866220474
- ]
- ]
- ],
- [
- [
- [
- 0.049291208386421204
- ]
- ]
- ],
- [
- [
- [
- 0.051016926765441895
- ]
- ]
- ],
- [
- [
- [
- 0.028370734304189682
- ]
- ]
- ],
- [
- [
- [
- 0.05357551947236061
- ]
- ]
- ],
- [
- [
- [
- 0.012477648444473743
- ]
- ]
- ],
- [
- [
- [
- 0.026037951931357384
- ]
- ]
- ],
- [
- [
- [
- 0.037974677979946136
- ]
- ]
- ],
- [
- [
- [
- 0.037273526191711426
- ]
- ]
- ],
- [
- [
- [
- 0.030716653913259506
- ]
- ]
- ],
- [
- [
- [
- 0.05730998143553734
- ]
- ]
- ],
- [
- [
- [
- 0.038712549954652786
- ]
- ]
- ],
- [
- [
- [
- 0.025379862636327744
- ]
- ]
- ],
- [
- [
- [
- 0.04374555125832558
- ]
- ]
- ],
- [
- [
- [
- 0.03278234228491783
- ]
- ]
- ],
- [
- [
- [
- 0.05965641885995865
- ]
- ]
- ],
- [
- [
- [
- 0.039301104843616486
- ]
- ]
- ],
- [
- [
- [
- 0.03303905203938484
- ]
- ]
- ],
- [
- [
- [
- 0.03345690295100212
- ]
- ]
- ],
- [
- [
- [
- 0.042830921709537506
- ]
- ]
- ],
- [
- [
- [
- 0.03438234701752663
- ]
- ]
- ],
- [
- [
- [
- 0.03128546476364136
- ]
- ]
- ],
- [
- [
- [
- 0.024333810433745384
- ]
- ]
- ],
- [
- [
- [
- 0.03289274126291275
- ]
- ]
- ],
- [
- [
- [
- 0.05052318796515465
- ]
- ]
- ],
- [
- [
- [
- 0.03122764453291893
- ]
- ]
- ],
- [
- [
- [
- 0.041686251759529114
- ]
- ]
- ],
- [
- [
- [
- 0.038104161620140076
- ]
- ]
- ],
- [
- [
- [
- 0.04780889302492142
- ]
- ]
- ],
- [
- [
- [
- 0.0340031236410141
- ]
- ]
- ],
- [
- [
- [
- 0.038727037608623505
- ]
- ]
- ],
- [
- [
- [
- 0.028887221589684486
- ]
- ]
- ],
- [
- [
- [
- 0.0404561348259449
- ]
- ]
- ],
- [
- [
- [
- 0.06980665773153305
- ]
- ]
- ],
- [
- [
- [
- 0.043316423892974854
- ]
- ]
- ],
- [
- [
- [
- 0.037225302308797836
- ]
- ]
- ],
- [
- [
- [
- 0.037971653044223785
- ]
- ]
- ],
- [
- [
- [
- 0.027439963072538376
- ]
- ]
- ],
- [
- [
- [
- 0.08103181421756744
- ]
- ]
- ],
- [
- [
- [
- 0.03407220169901848
- ]
- ]
- ],
- [
- [
- [
- 0.039145853370428085
- ]
- ]
- ],
- [
- [
- [
- 0.0379805825650692
- ]
- ]
- ],
- [
- [
- [
- 0.03509172052145004
- ]
- ]
- ],
- [
- [
- [
- 0.044353827834129333
- ]
- ]
- ],
- [
- [
- [
- 0.034144215285778046
- ]
- ]
- ],
- [
- [
- [
- 0.030500812456011772
- ]
- ]
- ],
- [
- [
- [
- 0.06080946326255798
- ]
- ]
- ],
- [
- [
- [
- 0.0383259616792202
- ]
- ]
- ],
- [
- [
- [
- 0.033406294882297516
- ]
- ]
- ],
- [
- [
- [
- 0.06884738057851791
- ]
- ]
- ],
- [
- [
- [
- 0.036758266389369965
- ]
- ]
- ],
- [
- [
- [
- 0.12942034006118774
- ]
- ]
- ],
- [
- [
- [
- 0.0397239625453949
- ]
- ]
- ],
- [
- [
- [
- 0.03244343027472496
- ]
- ]
- ],
- [
- [
- [
- 0.0366375595331192
- ]
- ]
- ],
- [
- [
- [
- 0.03695637732744217
- ]
- ]
- ],
- [
- [
- [
- 0.04303962364792824
- ]
- ]
- ],
- [
- [
- [
- 0.04127557575702667
- ]
- ]
- ],
- [
- [
- [
- 0.05068061128258705
- ]
- ]
- ],
- [
- [
- [
- 0.03530259430408478
- ]
- ]
- ],
- [
- [
- [
- 0.07922579348087311
- ]
- ]
- ],
- [
- [
- [
- 0.03700695559382439
- ]
- ]
- ],
- [
- [
- [
- 0.05581717565655708
- ]
- ]
- ],
- [
- [
- [
- 0.04311869665980339
- ]
- ]
- ],
- [
- [
- [
- 0.03061428666114807
- ]
- ]
- ],
- [
- [
- [
- 0.03823637217283249
- ]
- ]
- ],
- [
- [
- [
- 0.02718937024474144
- ]
- ]
- ],
- [
- [
- [
- 0.03305919095873833
- ]
- ]
- ],
- [
- [
- [
- 0.03102000430226326
- ]
- ]
- ],
- [
- [
- [
- 0.10503868013620377
- ]
- ]
- ],
- [
- [
- [
- 0.03070424124598503
- ]
- ]
- ],
- [
- [
- [
- 0.03737448528409004
- ]
- ]
- ],
- [
- [
- [
- 0.036975469440221786
- ]
- ]
- ],
- [
- [
- [
- 0.03001571260392666
- ]
- ]
- ],
- [
- [
- [
- 0.02831878699362278
- ]
- ]
- ],
- [
- [
- [
- 0.03729076310992241
- ]
- ]
- ],
- [
- [
- [
- 0.035546980798244476
- ]
- ]
- ],
- [
- [
- [
- 0.038111355155706406
- ]
- ]
- ],
- [
- [
- [
- 0.04113825410604477
- ]
- ]
- ],
- [
- [
- [
- 0.03380250930786133
- ]
- ]
- ],
- [
- [
- [
- 0.03424890711903572
- ]
- ]
- ],
- [
- [
- [
- 0.03237059339880943
- ]
- ]
- ],
- [
- [
- [
- 0.035836681723594666
- ]
- ]
- ],
- [
- [
- [
- 0.028251394629478455
- ]
- ]
- ],
- [
- [
- [
- 0.044424451887607574
- ]
- ]
- ],
- [
- [
- [
- 0.030882731080055237
- ]
- ]
- ],
- [
- [
- [
- 0.05116137117147446
- ]
- ]
- ],
- [
- [
- [
- 0.04150106757879257
- ]
- ]
- ],
- [
- [
- [
- 0.05628727376461029
- ]
- ]
- ],
- [
- [
- [
- 0.030644262209534645
- ]
- ]
- ],
- [
- [
- [
- 0.0374220535159111
- ]
- ]
- ],
- [
- [
- [
- 0.032951902598142624
- ]
- ]
- ],
- [
- [
- [
- 0.03977156803011894
- ]
- ]
- ],
- [
- [
- [
- 0.034272629767656326
- ]
- ]
- ],
- [
- [
- [
- 0.05871386080980301
- ]
- ]
- ],
- [
- [
- [
- 0.04073125496506691
- ]
- ]
- ],
- [
- [
- [
- 0.04160197824239731
- ]
- ]
- ],
- [
- [
- [
- 0.03533739596605301
- ]
- ]
- ],
- [
- [
- [
- 0.06106550991535187
- ]
- ]
- ],
- [
- [
- [
- 0.02958003617823124
- ]
- ]
- ],
- [
- [
- [
- 0.04211927950382233
- ]
- ]
- ],
- [
- [
- [
- 0.03242926672101021
- ]
- ]
- ],
- [
- [
- [
- 0.03384038433432579
- ]
- ]
- ],
- [
- [
- [
- 0.04590848088264465
- ]
- ]
- ],
- [
- [
- [
- 0.03830850124359131
- ]
- ]
- ],
- [
- [
- [
- 0.07142779976129532
- ]
- ]
- ],
- [
- [
- [
- 0.04162156581878662
- ]
- ]
- ],
- [
- [
- [
- 0.02859834022819996
- ]
- ]
- ],
- [
- [
- [
- 0.06921238452196121
- ]
- ]
- ],
- [
- [
- [
- 0.03611631318926811
- ]
- ]
- ],
- [
- [
- [
- 0.051260966807603836
- ]
- ]
- ],
- [
- [
- [
- 0.0362793393433094
- ]
- ]
- ],
- [
- [
- [
- 0.030514264479279518
- ]
- ]
- ],
- [
- [
- [
- 0.03383981063961983
- ]
- ]
- ],
- [
- [
- [
- 0.03404109925031662
- ]
- ]
- ],
- [
- [
- [
- 0.03849002346396446
- ]
- ]
- ],
- [
- [
- [
- 0.03283355385065079
- ]
- ]
- ],
- [
- [
- [
- 0.03343402221798897
- ]
- ]
- ],
- [
- [
- [
- 0.04307730868458748
- ]
- ]
- ],
- [
- [
- [
- 0.037439122796058655
- ]
- ]
- ],
- [
- [
- [
- 0.044803764671087265
- ]
- ]
- ],
- [
- [
- [
- 0.03386695683002472
- ]
- ]
- ],
- [
- [
- [
- 0.03187674656510353
- ]
- ]
- ],
- [
- [
- [
- 0.03248756378889084
- ]
- ]
- ],
- [
- [
- [
- 0.06604462116956711
- ]
- ]
- ],
- [
- [
- [
- 0.03442730754613876
- ]
- ]
- ],
- [
- [
- [
- 0.04812945798039436
- ]
- ]
- ],
- [
- [
- [
- 0.06302954256534576
- ]
- ]
- ],
- [
- [
- [
- 0.05978774651885033
- ]
- ]
- ],
- [
- [
- [
- 0.03831271082162857
- ]
- ]
- ],
- [
- [
- [
- 0.03770030289888382
- ]
- ]
- ],
- [
- [
- [
- 0.05869532376527786
- ]
- ]
- ],
- [
- [
- [
- 0.07023829221725464
- ]
- ]
- ],
- [
- [
- [
- 0.032192423939704895
- ]
- ]
- ],
- [
- [
- [
- 0.05044644698500633
- ]
- ]
- ],
- [
- [
- [
- 0.03372843191027641
- ]
- ]
- ],
- [
- [
- [
- 0.06296705454587936
- ]
- ]
- ],
- [
- [
- [
- 0.03268309682607651
- ]
- ]
- ],
- [
- [
- [
- 0.043256305158138275
- ]
- ]
- ],
- [
- [
- [
- 0.0373028963804245
- ]
- ]
- ],
- [
- [
- [
- 0.05304780974984169
- ]
- ]
- ],
- [
- [
- [
- 0.07105700671672821
- ]
- ]
- ],
- [
- [
- [
- 0.038297705352306366
- ]
- ]
- ],
- [
- [
- [
- 0.030966049060225487
- ]
- ]
- ],
- [
- [
- [
- 0.04563850909471512
- ]
- ]
- ],
- [
- [
- [
- 0.04091161862015724
- ]
- ]
- ],
- [
- [
- [
- 0.04391777515411377
- ]
- ]
- ],
- [
- [
- [
- 0.0331270694732666
- ]
- ]
- ],
- [
- [
- [
- 0.04344095662236214
- ]
- ]
- ],
- [
- [
- [
- 0.03271510824561119
- ]
- ]
- ],
- [
- [
- [
- 0.033240221440792084
- ]
- ]
- ],
- [
- [
- [
- 0.040308792144060135
- ]
- ]
- ],
- [
- [
- [
- 0.037175025790929794
- ]
- ]
- ],
- [
- [
- [
- 0.03380199149250984
- ]
- ]
- ],
- [
- [
- [
- 0.04323612526059151
- ]
- ]
- ],
- [
- [
- [
- 0.04153027758002281
- ]
- ]
- ],
- [
- [
- [
- 0.08007393032312393
- ]
- ]
- ],
- [
- [
- [
- 0.040955670177936554
- ]
- ]
- ],
- [
- [
- [
- 0.06471940129995346
- ]
- ]
- ],
- [
- [
- [
- 0.0606420636177063
- ]
- ]
- ],
- [
- [
- [
- 0.04721680283546448
- ]
- ]
- ],
- [
- [
- [
- 0.034385718405246735
- ]
- ]
- ],
- [
- [
- [
- 0.032241370528936386
- ]
- ]
- ],
- [
- [
- [
- 0.03759273886680603
- ]
- ]
- ],
- [
- [
- [
- 0.04705129191279411
- ]
- ]
- ],
- [
- [
- [
- 0.041907746344804764
- ]
- ]
- ],
- [
- [
- [
- 0.03700495883822441
- ]
- ]
- ],
- [
- [
- [
- 0.054134566336870193
- ]
- ]
- ],
- [
- [
- [
- 0.03679701313376427
- ]
- ]
- ],
- [
- [
- [
- 0.027172571048140526
- ]
- ]
- ],
- [
- [
- [
- 0.03609693422913551
- ]
- ]
- ],
- [
- [
- [
- 0.027830850332975388
- ]
- ]
- ],
- [
- [
- [
- 0.038279708474874496
- ]
- ]
- ],
- [
- [
- [
- 0.04415452852845192
- ]
- ]
- ],
- [
- [
- [
- 0.032909851521253586
- ]
- ]
- ],
- [
- [
- [
- 0.084637850522995
- ]
- ]
- ],
- [
- [
- [
- 0.03384314104914665
- ]
- ]
- ],
- [
- [
- [
- 0.034919898957014084
- ]
- ]
- ],
- [
- [
- [
- 0.031461212784051895
- ]
- ]
- ],
- [
- [
- [
- 0.03606391325592995
- ]
- ]
- ],
- [
- [
- [
- 0.04785027727484703
- ]
- ]
- ],
- [
- [
- [
- 0.030733255669474602
- ]
- ]
- ],
- [
- [
- [
- 0.028861280530691147
- ]
- ]
- ],
- [
- [
- [
- 0.03426424041390419
- ]
- ]
- ],
- [
- [
- [
- 0.03281340003013611
- ]
- ]
- ],
- [
- [
- [
- 0.035501349717378616
- ]
- ]
- ],
- [
- [
- [
- 0.0565536804497242
- ]
- ]
- ],
- [
- [
- [
- 0.04713457450270653
- ]
- ]
- ],
- [
- [
- [
- 0.04047410190105438
- ]
- ]
- ],
- [
- [
- [
- 0.030533738434314728
- ]
- ]
- ],
- [
- [
- [
- 0.05733286961913109
- ]
- ]
- ],
- [
- [
- [
- 0.029280252754688263
- ]
- ]
- ],
- [
- [
- [
- 0.05995039641857147
- ]
- ]
- ],
- [
- [
- [
- 0.03414404019713402
- ]
- ]
- ],
- [
- [
- [
- 0.031162528321146965
- ]
- ]
- ],
- [
- [
- [
- 0.05529338866472244
- ]
- ]
- ],
- [
- [
- [
- 0.041553087532520294
- ]
- ]
- ],
- [
- [
- [
- 0.03407485783100128
- ]
- ]
- ],
- [
- [
- [
- 0.08021681010723114
- ]
- ]
- ],
- [
- [
- [
- 0.07208540290594101
- ]
- ]
- ],
- [
- [
- [
- 0.041135262697935104
- ]
- ]
- ],
- [
- [
- [
- 0.035251207649707794
- ]
- ]
- ],
- [
- [
- [
- 0.049896422773599625
- ]
- ]
- ],
- [
- [
- [
- 0.08242014795541763
- ]
- ]
- ],
- [
- [
- [
- 0.037995290011167526
- ]
- ]
- ],
- [
- [
- [
- 0.03501231223344803
- ]
- ]
- ],
- [
- [
- [
- 0.05200492590665817
- ]
- ]
- ],
- [
- [
- [
- 0.06204942241311073
- ]
- ]
- ],
- [
- [
- [
- 0.06910652667284012
- ]
- ]
- ],
- [
- [
- [
- 0.032587021589279175
- ]
- ]
- ],
- [
- [
- [
- 0.03392258286476135
- ]
- ]
- ],
- [
- [
- [
- 0.03342312574386597
- ]
- ]
- ],
- [
- [
- [
- 0.02373618446290493
- ]
- ]
- ],
- [
- [
- [
- 0.03866971284151077
- ]
- ]
- ],
- [
- [
- [
- 0.03260860964655876
- ]
- ]
- ],
- [
- [
- [
- 0.03314601257443428
- ]
- ]
- ],
- [
- [
- [
- 0.029359139502048492
- ]
- ]
- ],
- [
- [
- [
- 0.07682083547115326
- ]
- ]
- ],
- [
- [
- [
- 0.0342557393014431
- ]
- ]
- ],
- [
- [
- [
- 0.03469952195882797
- ]
- ]
- ],
- [
- [
- [
- 0.0314849391579628
- ]
- ]
- ],
- [
- [
- [
- 0.06117142736911774
- ]
- ]
- ],
- [
- [
- [
- 0.04416368901729584
- ]
- ]
- ],
- [
- [
- [
- 0.0345696359872818
- ]
- ]
- ],
- [
- [
- [
- 0.03480752184987068
- ]
- ]
- ],
- [
- [
- [
- 0.03985096886754036
- ]
- ]
- ],
- [
- [
- [
- 0.03637051209807396
- ]
- ]
- ],
- [
- [
- [
- 0.04126454144716263
- ]
- ]
- ],
- [
- [
- [
- 0.03977629169821739
- ]
- ]
- ],
- [
- [
- [
- 0.05400490015745163
- ]
- ]
- ],
- [
- [
- [
- 0.03173048794269562
- ]
- ]
- ],
- [
- [
- [
- 0.05865045636892319
- ]
- ]
- ],
- [
- [
- [
- 0.04508613795042038
- ]
- ]
- ],
- [
- [
- [
- 0.038319509476423264
- ]
- ]
- ],
- [
- [
- [
- 0.033879492431879044
- ]
- ]
- ],
- [
- [
- [
- 0.050934113562107086
- ]
- ]
- ],
- [
- [
- [
- 0.05498398840427399
- ]
- ]
- ],
- [
- [
- [
- 0.03843039274215698
- ]
- ]
- ],
- [
- [
- [
- 0.06002655252814293
- ]
- ]
- ],
- [
- [
- [
- 0.043717481195926666
- ]
- ]
- ],
- [
- [
- [
- 0.040958844125270844
- ]
- ]
- ],
- [
- [
- [
- 0.034725792706012726
- ]
- ]
- ],
- [
- [
- [
- 0.040714606642723083
- ]
- ]
- ],
- [
- [
- [
- 0.06383658945560455
- ]
- ]
- ],
- [
- [
- [
- 0.027538808062672615
- ]
- ]
- ],
- [
- [
- [
- 0.07063005119562149
- ]
- ]
- ],
- [
- [
- [
- 0.0694078579545021
- ]
- ]
- ],
- [
- [
- [
- 0.034045759588479996
- ]
- ]
- ],
- [
- [
- [
- 0.039702046662569046
- ]
- ]
- ],
- [
- [
- [
- 0.03575372323393822
- ]
- ]
- ],
- [
- [
- [
- 0.03476719930768013
- ]
- ]
- ],
- [
- [
- [
- 0.03487956523895264
- ]
- ]
- ],
- [
- [
- [
- 0.03509645536541939
- ]
- ]
- ],
- [
- [
- [
- 0.03416956216096878
- ]
- ]
- ],
- [
- [
- [
- 0.03450649976730347
- ]
- ]
- ],
- [
- [
- [
- 0.06434483081102371
- ]
- ]
- ],
- [
- [
- [
- 0.06497330963611603
- ]
- ]
- ],
- [
- [
- [
- 0.04397733882069588
- ]
- ]
- ],
- [
- [
- [
- 0.04017805680632591
- ]
- ]
- ],
- [
- [
- [
- 0.03514625132083893
- ]
- ]
- ],
- [
- [
- [
- 0.035985589027404785
- ]
- ]
- ],
- [
- [
- [
- 0.040099114179611206
- ]
- ]
- ],
- [
- [
- [
- 0.0674191564321518
- ]
- ]
- ],
- [
- [
- [
- 0.030339250341057777
- ]
- ]
- ],
- [
- [
- [
- 0.033812254667282104
- ]
- ]
- ],
- [
- [
- [
- 0.03639763221144676
- ]
- ]
- ],
- [
- [
- [
- 0.07950439304113388
- ]
- ]
- ],
- [
- [
- [
- 0.0388793908059597
- ]
- ]
- ],
- [
- [
- [
- 0.02936490997672081
- ]
- ]
- ],
- [
- [
- [
- 0.04564407840371132
- ]
- ]
- ],
- [
- [
- [
- 0.0515303872525692
- ]
- ]
- ],
- [
- [
- [
- 0.03721581771969795
- ]
- ]
- ],
- [
- [
- [
- 0.03273606672883034
- ]
- ]
- ],
- [
- [
- [
- 0.042879387736320496
- ]
- ]
- ],
- [
- [
- [
- 0.03232676163315773
- ]
- ]
- ],
- [
- [
- [
- 0.034471284598112106
- ]
- ]
- ],
- [
- [
- [
- 0.03294673562049866
- ]
- ]
- ],
- [
- [
- [
- 0.07672514766454697
- ]
- ]
- ],
- [
- [
- [
- 0.039100002497434616
- ]
- ]
- ],
- [
- [
- [
- 0.053071994334459305
- ]
- ]
- ],
- [
- [
- [
- 0.035070307552814484
- ]
- ]
- ],
- [
- [
- [
- 0.029490862041711807
- ]
- ]
- ],
- [
- [
- [
- 0.023629380390048027
- ]
- ]
- ],
- [
- [
- [
- 0.03346939757466316
- ]
- ]
- ],
- [
- [
- [
- 0.03268720954656601
- ]
- ]
- ]
- ]
- },
- "/features/features.16/Add/fq_output_0": {
- "input_low": -24.73925018310547,
- "input_high": 32.09416198730469,
- "output_low": -24.73925018310547,
- "output_high": 32.09416198730469
- },
- "/features/features.16/conv/conv.2/Conv/fq_output_0": {
- "input_low": -17.6124210357666,
- "input_high": 16.67129898071289,
- "output_low": -17.6124210357666,
- "output_high": 16.67129898071289
- },
- "/features/features.16/conv/conv.2/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.3702709376811981
- ]
- ]
- ],
- [
- [
- [
- -0.315247505903244
- ]
- ]
- ],
- [
- [
- [
- -0.3738367259502411
- ]
- ]
- ],
- [
- [
- [
- -0.3467261791229248
- ]
- ]
- ],
- [
- [
- [
- -0.32081130146980286
- ]
- ]
- ],
- [
- [
- [
- -0.3505990207195282
- ]
- ]
- ],
- [
- [
- [
- -0.3407725989818573
- ]
- ]
- ],
- [
- [
- [
- -0.4004156291484833
- ]
- ]
- ],
- [
- [
- [
- -0.3452341854572296
- ]
- ]
- ],
- [
- [
- [
- -0.23123857378959656
- ]
- ]
- ],
- [
- [
- [
- -0.4230501353740692
- ]
- ]
- ],
- [
- [
- [
- -0.36695754528045654
- ]
- ]
- ],
- [
- [
- [
- -0.322846919298172
- ]
- ]
- ],
- [
- [
- [
- -0.2854391038417816
- ]
- ]
- ],
- [
- [
- [
- -0.2947743535041809
- ]
- ]
- ],
- [
- [
- [
- -0.40608763694763184
- ]
- ]
- ],
- [
- [
- [
- -0.3217017352581024
- ]
- ]
- ],
- [
- [
- [
- -0.3113240599632263
- ]
- ]
- ],
- [
- [
- [
- -0.34319624304771423
- ]
- ]
- ],
- [
- [
- [
- -0.3485748767852783
- ]
- ]
- ],
- [
- [
- [
- -0.3908871114253998
- ]
- ]
- ],
- [
- [
- [
- -0.34973305463790894
- ]
- ]
- ],
- [
- [
- [
- -0.358466774225235
- ]
- ]
- ],
- [
- [
- [
- -0.31721097230911255
- ]
- ]
- ],
- [
- [
- [
- -0.34688353538513184
- ]
- ]
- ],
- [
- [
- [
- -0.38172081112861633
- ]
- ]
- ],
- [
- [
- [
- -0.44406354427337646
- ]
- ]
- ],
- [
- [
- [
- -0.27599066495895386
- ]
- ]
- ],
- [
- [
- [
- -0.3484956920146942
- ]
- ]
- ],
- [
- [
- [
- -0.3297535479068756
- ]
- ]
- ],
- [
- [
- [
- -0.43750688433647156
- ]
- ]
- ],
- [
- [
- [
- -0.29116469621658325
- ]
- ]
- ],
- [
- [
- [
- -0.32677161693573
- ]
- ]
- ],
- [
- [
- [
- -0.40166690945625305
- ]
- ]
- ],
- [
- [
- [
- -0.3381330370903015
- ]
- ]
- ],
- [
- [
- [
- -0.3406001031398773
- ]
- ]
- ],
- [
- [
- [
- -0.3424229025840759
- ]
- ]
- ],
- [
- [
- [
- -0.3669869303703308
- ]
- ]
- ],
- [
- [
- [
- -0.28698012232780457
- ]
- ]
- ],
- [
- [
- [
- -0.31755608320236206
- ]
- ]
- ],
- [
- [
- [
- -0.34088289737701416
- ]
- ]
- ],
- [
- [
- [
- -0.4071009159088135
- ]
- ]
- ],
- [
- [
- [
- -0.3121870458126068
- ]
- ]
- ],
- [
- [
- [
- -0.43478477001190186
- ]
- ]
- ],
- [
- [
- [
- -0.25370392203330994
- ]
- ]
- ],
- [
- [
- [
- -0.3563823699951172
- ]
- ]
- ],
- [
- [
- [
- -0.3834882080554962
- ]
- ]
- ],
- [
- [
- [
- -0.24564243853092194
- ]
- ]
- ],
- [
- [
- [
- -0.36686331033706665
- ]
- ]
- ],
- [
- [
- [
- -0.34937992691993713
- ]
- ]
- ],
- [
- [
- [
- -0.34615713357925415
- ]
- ]
- ],
- [
- [
- [
- -0.3432474136352539
- ]
- ]
- ],
- [
- [
- [
- -0.3251482844352722
- ]
- ]
- ],
- [
- [
- [
- -0.3400127589702606
- ]
- ]
- ],
- [
- [
- [
- -0.3160930275917053
- ]
- ]
- ],
- [
- [
- [
- -0.49689239263534546
- ]
- ]
- ],
- [
- [
- [
- -0.30519813299179077
- ]
- ]
- ],
- [
- [
- [
- -0.2927168011665344
- ]
- ]
- ],
- [
- [
- [
- -0.42768651247024536
- ]
- ]
- ],
- [
- [
- [
- -0.3342929482460022
- ]
- ]
- ],
- [
- [
- [
- -0.3519038259983063
- ]
- ]
- ],
- [
- [
- [
- -0.45331621170043945
- ]
- ]
- ],
- [
- [
- [
- -0.2316306233406067
- ]
- ]
- ],
- [
- [
- [
- -0.40831896662712097
- ]
- ]
- ],
- [
- [
- [
- -0.35051894187927246
- ]
- ]
- ],
- [
- [
- [
- -0.31765231490135193
- ]
- ]
- ],
- [
- [
- [
- -0.3596609830856323
- ]
- ]
- ],
- [
- [
- [
- -0.3711203932762146
- ]
- ]
- ],
- [
- [
- [
- -0.33716118335723877
- ]
- ]
- ],
- [
- [
- [
- -0.3249853551387787
- ]
- ]
- ],
- [
- [
- [
- -0.35122811794281006
- ]
- ]
- ],
- [
- [
- [
- -0.2909794747829437
- ]
- ]
- ],
- [
- [
- [
- -0.2891433537006378
- ]
- ]
- ],
- [
- [
- [
- -0.27814117074012756
- ]
- ]
- ],
- [
- [
- [
- -0.3842972218990326
- ]
- ]
- ],
- [
- [
- [
- -0.29571762681007385
- ]
- ]
- ],
- [
- [
- [
- -0.30872076749801636
- ]
- ]
- ],
- [
- [
- [
- -0.28553882241249084
- ]
- ]
- ],
- [
- [
- [
- -0.305556058883667
- ]
- ]
- ],
- [
- [
- [
- -0.41661936044692993
- ]
- ]
- ],
- [
- [
- [
- -0.3354753851890564
- ]
- ]
- ],
- [
- [
- [
- -0.41175374388694763
- ]
- ]
- ],
- [
- [
- [
- -0.309683620929718
- ]
- ]
- ],
- [
- [
- [
- -0.33466634154319763
- ]
- ]
- ],
- [
- [
- [
- -0.3731541037559509
- ]
- ]
- ],
- [
- [
- [
- -0.32270070910453796
- ]
- ]
- ],
- [
- [
- [
- -0.28024348616600037
- ]
- ]
- ],
- [
- [
- [
- -0.2680501341819763
- ]
- ]
- ],
- [
- [
- [
- -0.30398640036582947
- ]
- ]
- ],
- [
- [
- [
- -0.5386665463447571
- ]
- ]
- ],
- [
- [
- [
- -0.4460728168487549
- ]
- ]
- ],
- [
- [
- [
- -0.29162371158599854
- ]
- ]
- ],
- [
- [
- [
- -0.32186517119407654
- ]
- ]
- ],
- [
- [
- [
- -0.3703891932964325
- ]
- ]
- ],
- [
- [
- [
- -0.2736990749835968
- ]
- ]
- ],
- [
- [
- [
- -0.2770281136035919
- ]
- ]
- ],
- [
- [
- [
- -0.35105565190315247
- ]
- ]
- ],
- [
- [
- [
- -0.3186662495136261
- ]
- ]
- ],
- [
- [
- [
- -0.36965805292129517
- ]
- ]
- ],
- [
- [
- [
- -0.33268293738365173
- ]
- ]
- ],
- [
- [
- [
- -0.32289454340934753
- ]
- ]
- ],
- [
- [
- [
- -0.30104342103004456
- ]
- ]
- ],
- [
- [
- [
- -0.3817337453365326
- ]
- ]
- ],
- [
- [
- [
- -0.3010266125202179
- ]
- ]
- ],
- [
- [
- [
- -0.34843242168426514
- ]
- ]
- ],
- [
- [
- [
- -0.26133039593696594
- ]
- ]
- ],
- [
- [
- [
- -0.34402626752853394
- ]
- ]
- ],
- [
- [
- [
- -0.2712230384349823
- ]
- ]
- ],
- [
- [
- [
- -0.36589592695236206
- ]
- ]
- ],
- [
- [
- [
- -0.3358885943889618
- ]
- ]
- ],
- [
- [
- [
- -0.2586682438850403
- ]
- ]
- ],
- [
- [
- [
- -0.32237470149993896
- ]
- ]
- ],
- [
- [
- [
- -0.3192809820175171
- ]
- ]
- ],
- [
- [
- [
- -0.29754796624183655
- ]
- ]
- ],
- [
- [
- [
- -0.30340901017189026
- ]
- ]
- ],
- [
- [
- [
- -0.3239736258983612
- ]
- ]
- ],
- [
- [
- [
- -0.29962876439094543
- ]
- ]
- ],
- [
- [
- [
- -0.2925369441509247
- ]
- ]
- ],
- [
- [
- [
- -0.35140377283096313
- ]
- ]
- ],
- [
- [
- [
- -0.29427850246429443
- ]
- ]
- ],
- [
- [
- [
- -0.5525326728820801
- ]
- ]
- ],
- [
- [
- [
- -0.3948294222354889
- ]
- ]
- ],
- [
- [
- [
- -0.36064401268959045
- ]
- ]
- ],
- [
- [
- [
- -0.2786957323551178
- ]
- ]
- ],
- [
- [
- [
- -0.33254697918891907
- ]
- ]
- ],
- [
- [
- [
- -0.2909644544124603
- ]
- ]
- ],
- [
- [
- [
- -0.3431013524532318
- ]
- ]
- ],
- [
- [
- [
- -0.36342328786849976
- ]
- ]
- ],
- [
- [
- [
- -0.2969341278076172
- ]
- ]
- ],
- [
- [
- [
- -0.3189016282558441
- ]
- ]
- ],
- [
- [
- [
- -0.3151000142097473
- ]
- ]
- ],
- [
- [
- [
- -0.3991372883319855
- ]
- ]
- ],
- [
- [
- [
- -0.3065665364265442
- ]
- ]
- ],
- [
- [
- [
- -0.2555043399333954
- ]
- ]
- ],
- [
- [
- [
- -0.6098713278770447
- ]
- ]
- ],
- [
- [
- [
- -0.3098834455013275
- ]
- ]
- ],
- [
- [
- [
- -0.3477896451950073
- ]
- ]
- ],
- [
- [
- [
- -0.35159382224082947
- ]
- ]
- ],
- [
- [
- [
- -0.3217904269695282
- ]
- ]
- ],
- [
- [
- [
- -0.29981642961502075
- ]
- ]
- ],
- [
- [
- [
- -0.33922436833381653
- ]
- ]
- ],
- [
- [
- [
- -0.3279013931751251
- ]
- ]
- ],
- [
- [
- [
- -0.30826619267463684
- ]
- ]
- ],
- [
- [
- [
- -0.31083768606185913
- ]
- ]
- ],
- [
- [
- [
- -0.3352806270122528
- ]
- ]
- ],
- [
- [
- [
- -0.29060593247413635
- ]
- ]
- ],
- [
- [
- [
- -0.332036554813385
- ]
- ]
- ],
- [
- [
- [
- -0.35011816024780273
- ]
- ]
- ],
- [
- [
- [
- -0.3913189470767975
- ]
- ]
- ],
- [
- [
- [
- -0.2962770164012909
- ]
- ]
- ],
- [
- [
- [
- -0.26371756196022034
- ]
- ]
- ],
- [
- [
- [
- -0.3944655656814575
- ]
- ]
- ],
- [
- [
- [
- -0.2873530387878418
- ]
- ]
- ],
- [
- [
- [
- -0.434127539396286
- ]
- ]
- ],
- [
- [
- [
- -0.5398696064949036
- ]
- ]
- ],
- [
- [
- [
- -0.42986252903938293
- ]
- ]
- ],
- [
- [
- [
- -0.29010409116744995
- ]
- ]
- ],
- [
- [
- [
- -0.31901440024375916
- ]
- ]
- ],
- [
- [
- [
- -0.3243802785873413
- ]
- ]
- ],
- [
- [
- [
- -0.2642677128314972
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.3702709376811981
- ]
- ]
- ],
- [
- [
- [
- 0.315247505903244
- ]
- ]
- ],
- [
- [
- [
- 0.3738367259502411
- ]
- ]
- ],
- [
- [
- [
- 0.3467261791229248
- ]
- ]
- ],
- [
- [
- [
- 0.32081130146980286
- ]
- ]
- ],
- [
- [
- [
- 0.3505990207195282
- ]
- ]
- ],
- [
- [
- [
- 0.3407725989818573
- ]
- ]
- ],
- [
- [
- [
- 0.4004156291484833
- ]
- ]
- ],
- [
- [
- [
- 0.3452341854572296
- ]
- ]
- ],
- [
- [
- [
- 0.23123857378959656
- ]
- ]
- ],
- [
- [
- [
- 0.4230501353740692
- ]
- ]
- ],
- [
- [
- [
- 0.36695754528045654
- ]
- ]
- ],
- [
- [
- [
- 0.322846919298172
- ]
- ]
- ],
- [
- [
- [
- 0.2854391038417816
- ]
- ]
- ],
- [
- [
- [
- 0.2947743535041809
- ]
- ]
- ],
- [
- [
- [
- 0.40608763694763184
- ]
- ]
- ],
- [
- [
- [
- 0.3217017352581024
- ]
- ]
- ],
- [
- [
- [
- 0.3113240599632263
- ]
- ]
- ],
- [
- [
- [
- 0.34319624304771423
- ]
- ]
- ],
- [
- [
- [
- 0.3485748767852783
- ]
- ]
- ],
- [
- [
- [
- 0.3908871114253998
- ]
- ]
- ],
- [
- [
- [
- 0.34973305463790894
- ]
- ]
- ],
- [
- [
- [
- 0.358466774225235
- ]
- ]
- ],
- [
- [
- [
- 0.31721097230911255
- ]
- ]
- ],
- [
- [
- [
- 0.34688353538513184
- ]
- ]
- ],
- [
- [
- [
- 0.38172081112861633
- ]
- ]
- ],
- [
- [
- [
- 0.44406354427337646
- ]
- ]
- ],
- [
- [
- [
- 0.27599066495895386
- ]
- ]
- ],
- [
- [
- [
- 0.3484956920146942
- ]
- ]
- ],
- [
- [
- [
- 0.3297535479068756
- ]
- ]
- ],
- [
- [
- [
- 0.43750688433647156
- ]
- ]
- ],
- [
- [
- [
- 0.29116469621658325
- ]
- ]
- ],
- [
- [
- [
- 0.32677161693573
- ]
- ]
- ],
- [
- [
- [
- 0.40166690945625305
- ]
- ]
- ],
- [
- [
- [
- 0.3381330370903015
- ]
- ]
- ],
- [
- [
- [
- 0.3406001031398773
- ]
- ]
- ],
- [
- [
- [
- 0.3424229025840759
- ]
- ]
- ],
- [
- [
- [
- 0.3669869303703308
- ]
- ]
- ],
- [
- [
- [
- 0.28698012232780457
- ]
- ]
- ],
- [
- [
- [
- 0.31755608320236206
- ]
- ]
- ],
- [
- [
- [
- 0.34088289737701416
- ]
- ]
- ],
- [
- [
- [
- 0.4071009159088135
- ]
- ]
- ],
- [
- [
- [
- 0.3121870458126068
- ]
- ]
- ],
- [
- [
- [
- 0.43478477001190186
- ]
- ]
- ],
- [
- [
- [
- 0.25370392203330994
- ]
- ]
- ],
- [
- [
- [
- 0.3563823699951172
- ]
- ]
- ],
- [
- [
- [
- 0.3834882080554962
- ]
- ]
- ],
- [
- [
- [
- 0.24564243853092194
- ]
- ]
- ],
- [
- [
- [
- 0.36686331033706665
- ]
- ]
- ],
- [
- [
- [
- 0.34937992691993713
- ]
- ]
- ],
- [
- [
- [
- 0.34615713357925415
- ]
- ]
- ],
- [
- [
- [
- 0.3432474136352539
- ]
- ]
- ],
- [
- [
- [
- 0.3251482844352722
- ]
- ]
- ],
- [
- [
- [
- 0.3400127589702606
- ]
- ]
- ],
- [
- [
- [
- 0.3160930275917053
- ]
- ]
- ],
- [
- [
- [
- 0.49689239263534546
- ]
- ]
- ],
- [
- [
- [
- 0.30519813299179077
- ]
- ]
- ],
- [
- [
- [
- 0.2927168011665344
- ]
- ]
- ],
- [
- [
- [
- 0.42768651247024536
- ]
- ]
- ],
- [
- [
- [
- 0.3342929482460022
- ]
- ]
- ],
- [
- [
- [
- 0.3519038259983063
- ]
- ]
- ],
- [
- [
- [
- 0.45331621170043945
- ]
- ]
- ],
- [
- [
- [
- 0.2316306233406067
- ]
- ]
- ],
- [
- [
- [
- 0.40831896662712097
- ]
- ]
- ],
- [
- [
- [
- 0.35051894187927246
- ]
- ]
- ],
- [
- [
- [
- 0.31765231490135193
- ]
- ]
- ],
- [
- [
- [
- 0.3596609830856323
- ]
- ]
- ],
- [
- [
- [
- 0.3711203932762146
- ]
- ]
- ],
- [
- [
- [
- 0.33716118335723877
- ]
- ]
- ],
- [
- [
- [
- 0.3249853551387787
- ]
- ]
- ],
- [
- [
- [
- 0.35122811794281006
- ]
- ]
- ],
- [
- [
- [
- 0.2909794747829437
- ]
- ]
- ],
- [
- [
- [
- 0.2891433537006378
- ]
- ]
- ],
- [
- [
- [
- 0.27814117074012756
- ]
- ]
- ],
- [
- [
- [
- 0.3842972218990326
- ]
- ]
- ],
- [
- [
- [
- 0.29571762681007385
- ]
- ]
- ],
- [
- [
- [
- 0.30872076749801636
- ]
- ]
- ],
- [
- [
- [
- 0.28553882241249084
- ]
- ]
- ],
- [
- [
- [
- 0.305556058883667
- ]
- ]
- ],
- [
- [
- [
- 0.41661936044692993
- ]
- ]
- ],
- [
- [
- [
- 0.3354753851890564
- ]
- ]
- ],
- [
- [
- [
- 0.41175374388694763
- ]
- ]
- ],
- [
- [
- [
- 0.309683620929718
- ]
- ]
- ],
- [
- [
- [
- 0.33466634154319763
- ]
- ]
- ],
- [
- [
- [
- 0.3731541037559509
- ]
- ]
- ],
- [
- [
- [
- 0.32270070910453796
- ]
- ]
- ],
- [
- [
- [
- 0.28024348616600037
- ]
- ]
- ],
- [
- [
- [
- 0.2680501341819763
- ]
- ]
- ],
- [
- [
- [
- 0.30398640036582947
- ]
- ]
- ],
- [
- [
- [
- 0.5386665463447571
- ]
- ]
- ],
- [
- [
- [
- 0.4460728168487549
- ]
- ]
- ],
- [
- [
- [
- 0.29162371158599854
- ]
- ]
- ],
- [
- [
- [
- 0.32186517119407654
- ]
- ]
- ],
- [
- [
- [
- 0.3703891932964325
- ]
- ]
- ],
- [
- [
- [
- 0.2736990749835968
- ]
- ]
- ],
- [
- [
- [
- 0.2770281136035919
- ]
- ]
- ],
- [
- [
- [
- 0.35105565190315247
- ]
- ]
- ],
- [
- [
- [
- 0.3186662495136261
- ]
- ]
- ],
- [
- [
- [
- 0.36965805292129517
- ]
- ]
- ],
- [
- [
- [
- 0.33268293738365173
- ]
- ]
- ],
- [
- [
- [
- 0.32289454340934753
- ]
- ]
- ],
- [
- [
- [
- 0.30104342103004456
- ]
- ]
- ],
- [
- [
- [
- 0.3817337453365326
- ]
- ]
- ],
- [
- [
- [
- 0.3010266125202179
- ]
- ]
- ],
- [
- [
- [
- 0.34843242168426514
- ]
- ]
- ],
- [
- [
- [
- 0.26133039593696594
- ]
- ]
- ],
- [
- [
- [
- 0.34402626752853394
- ]
- ]
- ],
- [
- [
- [
- 0.2712230384349823
- ]
- ]
- ],
- [
- [
- [
- 0.36589592695236206
- ]
- ]
- ],
- [
- [
- [
- 0.3358885943889618
- ]
- ]
- ],
- [
- [
- [
- 0.2586682438850403
- ]
- ]
- ],
- [
- [
- [
- 0.32237470149993896
- ]
- ]
- ],
- [
- [
- [
- 0.3192809820175171
- ]
- ]
- ],
- [
- [
- [
- 0.29754796624183655
- ]
- ]
- ],
- [
- [
- [
- 0.30340901017189026
- ]
- ]
- ],
- [
- [
- [
- 0.3239736258983612
- ]
- ]
- ],
- [
- [
- [
- 0.29962876439094543
- ]
- ]
- ],
- [
- [
- [
- 0.2925369441509247
- ]
- ]
- ],
- [
- [
- [
- 0.35140377283096313
- ]
- ]
- ],
- [
- [
- [
- 0.29427850246429443
- ]
- ]
- ],
- [
- [
- [
- 0.5525326728820801
- ]
- ]
- ],
- [
- [
- [
- 0.3948294222354889
- ]
- ]
- ],
- [
- [
- [
- 0.36064401268959045
- ]
- ]
- ],
- [
- [
- [
- 0.2786957323551178
- ]
- ]
- ],
- [
- [
- [
- 0.33254697918891907
- ]
- ]
- ],
- [
- [
- [
- 0.2909644544124603
- ]
- ]
- ],
- [
- [
- [
- 0.3431013524532318
- ]
- ]
- ],
- [
- [
- [
- 0.36342328786849976
- ]
- ]
- ],
- [
- [
- [
- 0.2969341278076172
- ]
- ]
- ],
- [
- [
- [
- 0.3189016282558441
- ]
- ]
- ],
- [
- [
- [
- 0.3151000142097473
- ]
- ]
- ],
- [
- [
- [
- 0.3991372883319855
- ]
- ]
- ],
- [
- [
- [
- 0.3065665364265442
- ]
- ]
- ],
- [
- [
- [
- 0.2555043399333954
- ]
- ]
- ],
- [
- [
- [
- 0.6098713278770447
- ]
- ]
- ],
- [
- [
- [
- 0.3098834455013275
- ]
- ]
- ],
- [
- [
- [
- 0.3477896451950073
- ]
- ]
- ],
- [
- [
- [
- 0.35159382224082947
- ]
- ]
- ],
- [
- [
- [
- 0.3217904269695282
- ]
- ]
- ],
- [
- [
- [
- 0.29981642961502075
- ]
- ]
- ],
- [
- [
- [
- 0.33922436833381653
- ]
- ]
- ],
- [
- [
- [
- 0.3279013931751251
- ]
- ]
- ],
- [
- [
- [
- 0.30826619267463684
- ]
- ]
- ],
- [
- [
- [
- 0.31083768606185913
- ]
- ]
- ],
- [
- [
- [
- 0.3352806270122528
- ]
- ]
- ],
- [
- [
- [
- 0.29060593247413635
- ]
- ]
- ],
- [
- [
- [
- 0.332036554813385
- ]
- ]
- ],
- [
- [
- [
- 0.35011816024780273
- ]
- ]
- ],
- [
- [
- [
- 0.3913189470767975
- ]
- ]
- ],
- [
- [
- [
- 0.2962770164012909
- ]
- ]
- ],
- [
- [
- [
- 0.26371756196022034
- ]
- ]
- ],
- [
- [
- [
- 0.3944655656814575
- ]
- ]
- ],
- [
- [
- [
- 0.2873530387878418
- ]
- ]
- ],
- [
- [
- [
- 0.434127539396286
- ]
- ]
- ],
- [
- [
- [
- 0.5398696064949036
- ]
- ]
- ],
- [
- [
- [
- 0.42986252903938293
- ]
- ]
- ],
- [
- [
- [
- 0.29010409116744995
- ]
- ]
- ],
- [
- [
- [
- 0.31901440024375916
- ]
- ]
- ],
- [
- [
- [
- 0.3243802785873413
- ]
- ]
- ],
- [
- [
- [
- 0.2642677128314972
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.3702709376811981
- ]
- ]
- ],
- [
- [
- [
- -0.315247505903244
- ]
- ]
- ],
- [
- [
- [
- -0.3738367259502411
- ]
- ]
- ],
- [
- [
- [
- -0.3467261791229248
- ]
- ]
- ],
- [
- [
- [
- -0.32081130146980286
- ]
- ]
- ],
- [
- [
- [
- -0.3505990207195282
- ]
- ]
- ],
- [
- [
- [
- -0.3407725989818573
- ]
- ]
- ],
- [
- [
- [
- -0.4004156291484833
- ]
- ]
- ],
- [
- [
- [
- -0.3452341854572296
- ]
- ]
- ],
- [
- [
- [
- -0.23123857378959656
- ]
- ]
- ],
- [
- [
- [
- -0.4230501353740692
- ]
- ]
- ],
- [
- [
- [
- -0.36695754528045654
- ]
- ]
- ],
- [
- [
- [
- -0.322846919298172
- ]
- ]
- ],
- [
- [
- [
- -0.2854391038417816
- ]
- ]
- ],
- [
- [
- [
- -0.2947743535041809
- ]
- ]
- ],
- [
- [
- [
- -0.40608763694763184
- ]
- ]
- ],
- [
- [
- [
- -0.3217017352581024
- ]
- ]
- ],
- [
- [
- [
- -0.3113240599632263
- ]
- ]
- ],
- [
- [
- [
- -0.34319624304771423
- ]
- ]
- ],
- [
- [
- [
- -0.3485748767852783
- ]
- ]
- ],
- [
- [
- [
- -0.3908871114253998
- ]
- ]
- ],
- [
- [
- [
- -0.34973305463790894
- ]
- ]
- ],
- [
- [
- [
- -0.358466774225235
- ]
- ]
- ],
- [
- [
- [
- -0.31721097230911255
- ]
- ]
- ],
- [
- [
- [
- -0.34688353538513184
- ]
- ]
- ],
- [
- [
- [
- -0.38172081112861633
- ]
- ]
- ],
- [
- [
- [
- -0.44406354427337646
- ]
- ]
- ],
- [
- [
- [
- -0.27599066495895386
- ]
- ]
- ],
- [
- [
- [
- -0.3484956920146942
- ]
- ]
- ],
- [
- [
- [
- -0.3297535479068756
- ]
- ]
- ],
- [
- [
- [
- -0.43750688433647156
- ]
- ]
- ],
- [
- [
- [
- -0.29116469621658325
- ]
- ]
- ],
- [
- [
- [
- -0.32677161693573
- ]
- ]
- ],
- [
- [
- [
- -0.40166690945625305
- ]
- ]
- ],
- [
- [
- [
- -0.3381330370903015
- ]
- ]
- ],
- [
- [
- [
- -0.3406001031398773
- ]
- ]
- ],
- [
- [
- [
- -0.3424229025840759
- ]
- ]
- ],
- [
- [
- [
- -0.3669869303703308
- ]
- ]
- ],
- [
- [
- [
- -0.28698012232780457
- ]
- ]
- ],
- [
- [
- [
- -0.31755608320236206
- ]
- ]
- ],
- [
- [
- [
- -0.34088289737701416
- ]
- ]
- ],
- [
- [
- [
- -0.4071009159088135
- ]
- ]
- ],
- [
- [
- [
- -0.3121870458126068
- ]
- ]
- ],
- [
- [
- [
- -0.43478477001190186
- ]
- ]
- ],
- [
- [
- [
- -0.25370392203330994
- ]
- ]
- ],
- [
- [
- [
- -0.3563823699951172
- ]
- ]
- ],
- [
- [
- [
- -0.3834882080554962
- ]
- ]
- ],
- [
- [
- [
- -0.24564243853092194
- ]
- ]
- ],
- [
- [
- [
- -0.36686331033706665
- ]
- ]
- ],
- [
- [
- [
- -0.34937992691993713
- ]
- ]
- ],
- [
- [
- [
- -0.34615713357925415
- ]
- ]
- ],
- [
- [
- [
- -0.3432474136352539
- ]
- ]
- ],
- [
- [
- [
- -0.3251482844352722
- ]
- ]
- ],
- [
- [
- [
- -0.3400127589702606
- ]
- ]
- ],
- [
- [
- [
- -0.3160930275917053
- ]
- ]
- ],
- [
- [
- [
- -0.49689239263534546
- ]
- ]
- ],
- [
- [
- [
- -0.30519813299179077
- ]
- ]
- ],
- [
- [
- [
- -0.2927168011665344
- ]
- ]
- ],
- [
- [
- [
- -0.42768651247024536
- ]
- ]
- ],
- [
- [
- [
- -0.3342929482460022
- ]
- ]
- ],
- [
- [
- [
- -0.3519038259983063
- ]
- ]
- ],
- [
- [
- [
- -0.45331621170043945
- ]
- ]
- ],
- [
- [
- [
- -0.2316306233406067
- ]
- ]
- ],
- [
- [
- [
- -0.40831896662712097
- ]
- ]
- ],
- [
- [
- [
- -0.35051894187927246
- ]
- ]
- ],
- [
- [
- [
- -0.31765231490135193
- ]
- ]
- ],
- [
- [
- [
- -0.3596609830856323
- ]
- ]
- ],
- [
- [
- [
- -0.3711203932762146
- ]
- ]
- ],
- [
- [
- [
- -0.33716118335723877
- ]
- ]
- ],
- [
- [
- [
- -0.3249853551387787
- ]
- ]
- ],
- [
- [
- [
- -0.35122811794281006
- ]
- ]
- ],
- [
- [
- [
- -0.2909794747829437
- ]
- ]
- ],
- [
- [
- [
- -0.2891433537006378
- ]
- ]
- ],
- [
- [
- [
- -0.27814117074012756
- ]
- ]
- ],
- [
- [
- [
- -0.3842972218990326
- ]
- ]
- ],
- [
- [
- [
- -0.29571762681007385
- ]
- ]
- ],
- [
- [
- [
- -0.30872076749801636
- ]
- ]
- ],
- [
- [
- [
- -0.28553882241249084
- ]
- ]
- ],
- [
- [
- [
- -0.305556058883667
- ]
- ]
- ],
- [
- [
- [
- -0.41661936044692993
- ]
- ]
- ],
- [
- [
- [
- -0.3354753851890564
- ]
- ]
- ],
- [
- [
- [
- -0.41175374388694763
- ]
- ]
- ],
- [
- [
- [
- -0.309683620929718
- ]
- ]
- ],
- [
- [
- [
- -0.33466634154319763
- ]
- ]
- ],
- [
- [
- [
- -0.3731541037559509
- ]
- ]
- ],
- [
- [
- [
- -0.32270070910453796
- ]
- ]
- ],
- [
- [
- [
- -0.28024348616600037
- ]
- ]
- ],
- [
- [
- [
- -0.2680501341819763
- ]
- ]
- ],
- [
- [
- [
- -0.30398640036582947
- ]
- ]
- ],
- [
- [
- [
- -0.5386665463447571
- ]
- ]
- ],
- [
- [
- [
- -0.4460728168487549
- ]
- ]
- ],
- [
- [
- [
- -0.29162371158599854
- ]
- ]
- ],
- [
- [
- [
- -0.32186517119407654
- ]
- ]
- ],
- [
- [
- [
- -0.3703891932964325
- ]
- ]
- ],
- [
- [
- [
- -0.2736990749835968
- ]
- ]
- ],
- [
- [
- [
- -0.2770281136035919
- ]
- ]
- ],
- [
- [
- [
- -0.35105565190315247
- ]
- ]
- ],
- [
- [
- [
- -0.3186662495136261
- ]
- ]
- ],
- [
- [
- [
- -0.36965805292129517
- ]
- ]
- ],
- [
- [
- [
- -0.33268293738365173
- ]
- ]
- ],
- [
- [
- [
- -0.32289454340934753
- ]
- ]
- ],
- [
- [
- [
- -0.30104342103004456
- ]
- ]
- ],
- [
- [
- [
- -0.3817337453365326
- ]
- ]
- ],
- [
- [
- [
- -0.3010266125202179
- ]
- ]
- ],
- [
- [
- [
- -0.34843242168426514
- ]
- ]
- ],
- [
- [
- [
- -0.26133039593696594
- ]
- ]
- ],
- [
- [
- [
- -0.34402626752853394
- ]
- ]
- ],
- [
- [
- [
- -0.2712230384349823
- ]
- ]
- ],
- [
- [
- [
- -0.36589592695236206
- ]
- ]
- ],
- [
- [
- [
- -0.3358885943889618
- ]
- ]
- ],
- [
- [
- [
- -0.2586682438850403
- ]
- ]
- ],
- [
- [
- [
- -0.32237470149993896
- ]
- ]
- ],
- [
- [
- [
- -0.3192809820175171
- ]
- ]
- ],
- [
- [
- [
- -0.29754796624183655
- ]
- ]
- ],
- [
- [
- [
- -0.30340901017189026
- ]
- ]
- ],
- [
- [
- [
- -0.3239736258983612
- ]
- ]
- ],
- [
- [
- [
- -0.29962876439094543
- ]
- ]
- ],
- [
- [
- [
- -0.2925369441509247
- ]
- ]
- ],
- [
- [
- [
- -0.35140377283096313
- ]
- ]
- ],
- [
- [
- [
- -0.29427850246429443
- ]
- ]
- ],
- [
- [
- [
- -0.5525326728820801
- ]
- ]
- ],
- [
- [
- [
- -0.3948294222354889
- ]
- ]
- ],
- [
- [
- [
- -0.36064401268959045
- ]
- ]
- ],
- [
- [
- [
- -0.2786957323551178
- ]
- ]
- ],
- [
- [
- [
- -0.33254697918891907
- ]
- ]
- ],
- [
- [
- [
- -0.2909644544124603
- ]
- ]
- ],
- [
- [
- [
- -0.3431013524532318
- ]
- ]
- ],
- [
- [
- [
- -0.36342328786849976
- ]
- ]
- ],
- [
- [
- [
- -0.2969341278076172
- ]
- ]
- ],
- [
- [
- [
- -0.3189016282558441
- ]
- ]
- ],
- [
- [
- [
- -0.3151000142097473
- ]
- ]
- ],
- [
- [
- [
- -0.3991372883319855
- ]
- ]
- ],
- [
- [
- [
- -0.3065665364265442
- ]
- ]
- ],
- [
- [
- [
- -0.2555043399333954
- ]
- ]
- ],
- [
- [
- [
- -0.6098713278770447
- ]
- ]
- ],
- [
- [
- [
- -0.3098834455013275
- ]
- ]
- ],
- [
- [
- [
- -0.3477896451950073
- ]
- ]
- ],
- [
- [
- [
- -0.35159382224082947
- ]
- ]
- ],
- [
- [
- [
- -0.3217904269695282
- ]
- ]
- ],
- [
- [
- [
- -0.29981642961502075
- ]
- ]
- ],
- [
- [
- [
- -0.33922436833381653
- ]
- ]
- ],
- [
- [
- [
- -0.3279013931751251
- ]
- ]
- ],
- [
- [
- [
- -0.30826619267463684
- ]
- ]
- ],
- [
- [
- [
- -0.31083768606185913
- ]
- ]
- ],
- [
- [
- [
- -0.3352806270122528
- ]
- ]
- ],
- [
- [
- [
- -0.29060593247413635
- ]
- ]
- ],
- [
- [
- [
- -0.332036554813385
- ]
- ]
- ],
- [
- [
- [
- -0.35011816024780273
- ]
- ]
- ],
- [
- [
- [
- -0.3913189470767975
- ]
- ]
- ],
- [
- [
- [
- -0.2962770164012909
- ]
- ]
- ],
- [
- [
- [
- -0.26371756196022034
- ]
- ]
- ],
- [
- [
- [
- -0.3944655656814575
- ]
- ]
- ],
- [
- [
- [
- -0.2873530387878418
- ]
- ]
- ],
- [
- [
- [
- -0.434127539396286
- ]
- ]
- ],
- [
- [
- [
- -0.5398696064949036
- ]
- ]
- ],
- [
- [
- [
- -0.42986252903938293
- ]
- ]
- ],
- [
- [
- [
- -0.29010409116744995
- ]
- ]
- ],
- [
- [
- [
- -0.31901440024375916
- ]
- ]
- ],
- [
- [
- [
- -0.3243802785873413
- ]
- ]
- ],
- [
- [
- [
- -0.2642677128314972
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.3702709376811981
- ]
- ]
- ],
- [
- [
- [
- 0.315247505903244
- ]
- ]
- ],
- [
- [
- [
- 0.3738367259502411
- ]
- ]
- ],
- [
- [
- [
- 0.3467261791229248
- ]
- ]
- ],
- [
- [
- [
- 0.32081130146980286
- ]
- ]
- ],
- [
- [
- [
- 0.3505990207195282
- ]
- ]
- ],
- [
- [
- [
- 0.3407725989818573
- ]
- ]
- ],
- [
- [
- [
- 0.4004156291484833
- ]
- ]
- ],
- [
- [
- [
- 0.3452341854572296
- ]
- ]
- ],
- [
- [
- [
- 0.23123857378959656
- ]
- ]
- ],
- [
- [
- [
- 0.4230501353740692
- ]
- ]
- ],
- [
- [
- [
- 0.36695754528045654
- ]
- ]
- ],
- [
- [
- [
- 0.322846919298172
- ]
- ]
- ],
- [
- [
- [
- 0.2854391038417816
- ]
- ]
- ],
- [
- [
- [
- 0.2947743535041809
- ]
- ]
- ],
- [
- [
- [
- 0.40608763694763184
- ]
- ]
- ],
- [
- [
- [
- 0.3217017352581024
- ]
- ]
- ],
- [
- [
- [
- 0.3113240599632263
- ]
- ]
- ],
- [
- [
- [
- 0.34319624304771423
- ]
- ]
- ],
- [
- [
- [
- 0.3485748767852783
- ]
- ]
- ],
- [
- [
- [
- 0.3908871114253998
- ]
- ]
- ],
- [
- [
- [
- 0.34973305463790894
- ]
- ]
- ],
- [
- [
- [
- 0.358466774225235
- ]
- ]
- ],
- [
- [
- [
- 0.31721097230911255
- ]
- ]
- ],
- [
- [
- [
- 0.34688353538513184
- ]
- ]
- ],
- [
- [
- [
- 0.38172081112861633
- ]
- ]
- ],
- [
- [
- [
- 0.44406354427337646
- ]
- ]
- ],
- [
- [
- [
- 0.27599066495895386
- ]
- ]
- ],
- [
- [
- [
- 0.3484956920146942
- ]
- ]
- ],
- [
- [
- [
- 0.3297535479068756
- ]
- ]
- ],
- [
- [
- [
- 0.43750688433647156
- ]
- ]
- ],
- [
- [
- [
- 0.29116469621658325
- ]
- ]
- ],
- [
- [
- [
- 0.32677161693573
- ]
- ]
- ],
- [
- [
- [
- 0.40166690945625305
- ]
- ]
- ],
- [
- [
- [
- 0.3381330370903015
- ]
- ]
- ],
- [
- [
- [
- 0.3406001031398773
- ]
- ]
- ],
- [
- [
- [
- 0.3424229025840759
- ]
- ]
- ],
- [
- [
- [
- 0.3669869303703308
- ]
- ]
- ],
- [
- [
- [
- 0.28698012232780457
- ]
- ]
- ],
- [
- [
- [
- 0.31755608320236206
- ]
- ]
- ],
- [
- [
- [
- 0.34088289737701416
- ]
- ]
- ],
- [
- [
- [
- 0.4071009159088135
- ]
- ]
- ],
- [
- [
- [
- 0.3121870458126068
- ]
- ]
- ],
- [
- [
- [
- 0.43478477001190186
- ]
- ]
- ],
- [
- [
- [
- 0.25370392203330994
- ]
- ]
- ],
- [
- [
- [
- 0.3563823699951172
- ]
- ]
- ],
- [
- [
- [
- 0.3834882080554962
- ]
- ]
- ],
- [
- [
- [
- 0.24564243853092194
- ]
- ]
- ],
- [
- [
- [
- 0.36686331033706665
- ]
- ]
- ],
- [
- [
- [
- 0.34937992691993713
- ]
- ]
- ],
- [
- [
- [
- 0.34615713357925415
- ]
- ]
- ],
- [
- [
- [
- 0.3432474136352539
- ]
- ]
- ],
- [
- [
- [
- 0.3251482844352722
- ]
- ]
- ],
- [
- [
- [
- 0.3400127589702606
- ]
- ]
- ],
- [
- [
- [
- 0.3160930275917053
- ]
- ]
- ],
- [
- [
- [
- 0.49689239263534546
- ]
- ]
- ],
- [
- [
- [
- 0.30519813299179077
- ]
- ]
- ],
- [
- [
- [
- 0.2927168011665344
- ]
- ]
- ],
- [
- [
- [
- 0.42768651247024536
- ]
- ]
- ],
- [
- [
- [
- 0.3342929482460022
- ]
- ]
- ],
- [
- [
- [
- 0.3519038259983063
- ]
- ]
- ],
- [
- [
- [
- 0.45331621170043945
- ]
- ]
- ],
- [
- [
- [
- 0.2316306233406067
- ]
- ]
- ],
- [
- [
- [
- 0.40831896662712097
- ]
- ]
- ],
- [
- [
- [
- 0.35051894187927246
- ]
- ]
- ],
- [
- [
- [
- 0.31765231490135193
- ]
- ]
- ],
- [
- [
- [
- 0.3596609830856323
- ]
- ]
- ],
- [
- [
- [
- 0.3711203932762146
- ]
- ]
- ],
- [
- [
- [
- 0.33716118335723877
- ]
- ]
- ],
- [
- [
- [
- 0.3249853551387787
- ]
- ]
- ],
- [
- [
- [
- 0.35122811794281006
- ]
- ]
- ],
- [
- [
- [
- 0.2909794747829437
- ]
- ]
- ],
- [
- [
- [
- 0.2891433537006378
- ]
- ]
- ],
- [
- [
- [
- 0.27814117074012756
- ]
- ]
- ],
- [
- [
- [
- 0.3842972218990326
- ]
- ]
- ],
- [
- [
- [
- 0.29571762681007385
- ]
- ]
- ],
- [
- [
- [
- 0.30872076749801636
- ]
- ]
- ],
- [
- [
- [
- 0.28553882241249084
- ]
- ]
- ],
- [
- [
- [
- 0.305556058883667
- ]
- ]
- ],
- [
- [
- [
- 0.41661936044692993
- ]
- ]
- ],
- [
- [
- [
- 0.3354753851890564
- ]
- ]
- ],
- [
- [
- [
- 0.41175374388694763
- ]
- ]
- ],
- [
- [
- [
- 0.309683620929718
- ]
- ]
- ],
- [
- [
- [
- 0.33466634154319763
- ]
- ]
- ],
- [
- [
- [
- 0.3731541037559509
- ]
- ]
- ],
- [
- [
- [
- 0.32270070910453796
- ]
- ]
- ],
- [
- [
- [
- 0.28024348616600037
- ]
- ]
- ],
- [
- [
- [
- 0.2680501341819763
- ]
- ]
- ],
- [
- [
- [
- 0.30398640036582947
- ]
- ]
- ],
- [
- [
- [
- 0.5386665463447571
- ]
- ]
- ],
- [
- [
- [
- 0.4460728168487549
- ]
- ]
- ],
- [
- [
- [
- 0.29162371158599854
- ]
- ]
- ],
- [
- [
- [
- 0.32186517119407654
- ]
- ]
- ],
- [
- [
- [
- 0.3703891932964325
- ]
- ]
- ],
- [
- [
- [
- 0.2736990749835968
- ]
- ]
- ],
- [
- [
- [
- 0.2770281136035919
- ]
- ]
- ],
- [
- [
- [
- 0.35105565190315247
- ]
- ]
- ],
- [
- [
- [
- 0.3186662495136261
- ]
- ]
- ],
- [
- [
- [
- 0.36965805292129517
- ]
- ]
- ],
- [
- [
- [
- 0.33268293738365173
- ]
- ]
- ],
- [
- [
- [
- 0.32289454340934753
- ]
- ]
- ],
- [
- [
- [
- 0.30104342103004456
- ]
- ]
- ],
- [
- [
- [
- 0.3817337453365326
- ]
- ]
- ],
- [
- [
- [
- 0.3010266125202179
- ]
- ]
- ],
- [
- [
- [
- 0.34843242168426514
- ]
- ]
- ],
- [
- [
- [
- 0.26133039593696594
- ]
- ]
- ],
- [
- [
- [
- 0.34402626752853394
- ]
- ]
- ],
- [
- [
- [
- 0.2712230384349823
- ]
- ]
- ],
- [
- [
- [
- 0.36589592695236206
- ]
- ]
- ],
- [
- [
- [
- 0.3358885943889618
- ]
- ]
- ],
- [
- [
- [
- 0.2586682438850403
- ]
- ]
- ],
- [
- [
- [
- 0.32237470149993896
- ]
- ]
- ],
- [
- [
- [
- 0.3192809820175171
- ]
- ]
- ],
- [
- [
- [
- 0.29754796624183655
- ]
- ]
- ],
- [
- [
- [
- 0.30340901017189026
- ]
- ]
- ],
- [
- [
- [
- 0.3239736258983612
- ]
- ]
- ],
- [
- [
- [
- 0.29962876439094543
- ]
- ]
- ],
- [
- [
- [
- 0.2925369441509247
- ]
- ]
- ],
- [
- [
- [
- 0.35140377283096313
- ]
- ]
- ],
- [
- [
- [
- 0.29427850246429443
- ]
- ]
- ],
- [
- [
- [
- 0.5525326728820801
- ]
- ]
- ],
- [
- [
- [
- 0.3948294222354889
- ]
- ]
- ],
- [
- [
- [
- 0.36064401268959045
- ]
- ]
- ],
- [
- [
- [
- 0.2786957323551178
- ]
- ]
- ],
- [
- [
- [
- 0.33254697918891907
- ]
- ]
- ],
- [
- [
- [
- 0.2909644544124603
- ]
- ]
- ],
- [
- [
- [
- 0.3431013524532318
- ]
- ]
- ],
- [
- [
- [
- 0.36342328786849976
- ]
- ]
- ],
- [
- [
- [
- 0.2969341278076172
- ]
- ]
- ],
- [
- [
- [
- 0.3189016282558441
- ]
- ]
- ],
- [
- [
- [
- 0.3151000142097473
- ]
- ]
- ],
- [
- [
- [
- 0.3991372883319855
- ]
- ]
- ],
- [
- [
- [
- 0.3065665364265442
- ]
- ]
- ],
- [
- [
- [
- 0.2555043399333954
- ]
- ]
- ],
- [
- [
- [
- 0.6098713278770447
- ]
- ]
- ],
- [
- [
- [
- 0.3098834455013275
- ]
- ]
- ],
- [
- [
- [
- 0.3477896451950073
- ]
- ]
- ],
- [
- [
- [
- 0.35159382224082947
- ]
- ]
- ],
- [
- [
- [
- 0.3217904269695282
- ]
- ]
- ],
- [
- [
- [
- 0.29981642961502075
- ]
- ]
- ],
- [
- [
- [
- 0.33922436833381653
- ]
- ]
- ],
- [
- [
- [
- 0.3279013931751251
- ]
- ]
- ],
- [
- [
- [
- 0.30826619267463684
- ]
- ]
- ],
- [
- [
- [
- 0.31083768606185913
- ]
- ]
- ],
- [
- [
- [
- 0.3352806270122528
- ]
- ]
- ],
- [
- [
- [
- 0.29060593247413635
- ]
- ]
- ],
- [
- [
- [
- 0.332036554813385
- ]
- ]
- ],
- [
- [
- [
- 0.35011816024780273
- ]
- ]
- ],
- [
- [
- [
- 0.3913189470767975
- ]
- ]
- ],
- [
- [
- [
- 0.2962770164012909
- ]
- ]
- ],
- [
- [
- [
- 0.26371756196022034
- ]
- ]
- ],
- [
- [
- [
- 0.3944655656814575
- ]
- ]
- ],
- [
- [
- [
- 0.2873530387878418
- ]
- ]
- ],
- [
- [
- [
- 0.434127539396286
- ]
- ]
- ],
- [
- [
- [
- 0.5398696064949036
- ]
- ]
- ],
- [
- [
- [
- 0.42986252903938293
- ]
- ]
- ],
- [
- [
- [
- 0.29010409116744995
- ]
- ]
- ],
- [
- [
- [
- 0.31901440024375916
- ]
- ]
- ],
- [
- [
- [
- 0.3243802785873413
- ]
- ]
- ],
- [
- [
- [
- 0.2642677128314972
- ]
- ]
- ]
- ]
- },
- "/features/features.16/conv/conv.1/conv.1.2/Clip/fq_output_0": {
- "input_low": 0.0,
- "input_high": 6.0,
- "output_low": 0.0,
- "output_high": 6.0
- },
- "/features/features.16/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -2.365154266357422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2502856254577637
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.195976495742798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6656226515769958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5235556364059448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.383416771888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7349739074707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3859219551086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0918256044387817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2225666046142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9058722257614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5176022052764893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2063405513763428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8568055629730225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4696100950241089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7718397378921509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9281914234161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3874582350254059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1301209926605225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4776649475097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4061625003814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5813357830047607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.51966392993927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3051241636276245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2825267314910889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.316291093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3294159471988678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8673756122589111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1569430828094482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7022784948349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8111522197723389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3622260093688965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.422802448272705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4083030223846436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.797857403755188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.865492343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665010690689087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0659841299057007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8117184042930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3906818628311157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5190985202789307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38841769099235535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.061934232711792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.861913800239563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9901163578033447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8379106521606445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5921666622161865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42792728543281555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48010116815567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4040517807006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4095650315284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5218622088432312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9862950444221497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2761242389678955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.482344627380371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3484700918197632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7947816848754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47744277119636536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9089540243148804
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0144684314727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2864400148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8606069087982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1234145164489746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.441941261291504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4791277647018433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.580814242362976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6067547798156738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4366849660873413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5885063409805298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5150633454322815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43939727544784546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0742764472961426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3530089855194092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3134996891021729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.467299699783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5811209082603455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8302544951438904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7065587043762207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9262422323226929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.359300136566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4208852052688599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7830231189727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066783666610718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7208712697029114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8890447616577148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2101874351501465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240148663520813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5032323598861694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9251154661178589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5285356640815735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8035605549812317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2083942890167236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6683239340782166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5321238040924072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6122937202453613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3085720539093018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1574856042861938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8082057237625122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2479525804519653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5181660652160645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0770409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44887375831604004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4947596788406372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.517076313495636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42858824133872986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228711009025574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6608101725578308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4607475996017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1929562091827393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0950418710708618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5073009729385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9351087212562561
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2297215461730957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1183929443359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0463480949401855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2448593378067017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.744074583053589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.889711618423462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8719828128814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39498981833457947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2681257724761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2354611158370972
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.988520860671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5840260982513428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7470942735671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5332997441291809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0147616863250732
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0416935682296753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4344979524612427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.501255452632904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8075225353240967
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3067138195037842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1901631355285645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2038415670394897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5069471001625061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.397221803665161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0195796489715576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47426649928092957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4371474981307983
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.322723388671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4795702695846558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5493624806404114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5824236869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4290655255317688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8379619121551514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.684549331665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44978684186935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6127926111221313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3164023160934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2032181024551392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1101433038711548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2163625955581665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.74851655960083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.36630117893219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4608643352985382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.490586519241333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5731380581855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4558255672454834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8983877897262573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39807942509651184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5214321613311768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44346585869789124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3846985399723053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.462707042694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4962162673473358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7979395389556885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8467768430709839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6682210564613342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9580219984054565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5776892900466919
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43576717376708984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5738557577133179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3314252197742462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1488986015319824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5768033266067505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.107264280319214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4745110869407654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.511940062046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.7999112606048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5860536098480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1717400550842285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.17242693901062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.641208291053772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47548022866249084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5053732395172119
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5111262202262878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4427149295806885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9758982062339783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5990936160087585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.94158673286438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4246011972427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.29454267024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38089123368263245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4349736273288727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.282899260520935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5881908535957336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4247362613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2290650606155396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47410017251968384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0772950649261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9912594556808472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9115113019943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4716602563858032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.158721685409546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1930984258651733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2793633937835693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1252896785736084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4631080627441406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.20753812789917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806397676467896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6166443824768066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.493576318025589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.535193920135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1450151205062866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5797548294067383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6414289474487305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.131711959838867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9021028280258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0157121419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8343596458435059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.273404836654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0670766830444336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36362898349761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.364262104034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3267875611782074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41151919960975647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5571599006652832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9272567629814148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.520801067352295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1237949132919312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7056997418403625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6363872289657593
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3713085651397705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46596574783325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3197912871837616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4651396572589874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7828210592269897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.187846302986145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7577412128448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3392384052276611
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3918344974517822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6605550646781921
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6931370496749878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5139411687850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6244163513183594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3594436645507812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9311304688453674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6478650569915771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4164992570877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6563423871994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6347928047180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.695127248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44316110014915466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6109365224838257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42503848671913147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.489096164703369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4890958070755005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3578544855117798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8068422675132751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.655853033065796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0775747299194336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0842044353485107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5615170001983643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6385029554367065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8328895568847656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5544050931930542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4396207928657532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5923227667808533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6719357967376709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3741087317466736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6009955406188965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5772700905799866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4963788986206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9733325242996216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4425033628940582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0214834213256836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3774733543395996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9393891096115112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7054989337921143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37484779953956604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7879034280776978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0657979249954224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5733355283737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5267959237098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2361390590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7777960300445557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6099814176559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8204162120819092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6569156646728516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.140491247177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8730177879333496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.331648111343384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.738986611366272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1505608558654785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5773409008979797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3624129891395569
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0386313199996948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5162652730941772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4362314939498901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.294535517692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47646355628967285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3880600929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5490675568580627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4228892922401428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2102537155151367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8515461683273315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.585203230381012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0989584922790527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3798627853393555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.381253480911255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9082140922546387
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5956931114196777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4335461854934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.530609607696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9071547985076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.643527626991272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37366729974746704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4987322688102722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.050297498703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5970268845558167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.596073567867279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0207550525665283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39282116293907166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.512916088104248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0831856727600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.395559549331665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.110025405883789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1072208881378174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2785171270370483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.537150502204895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.512019634246826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.653759002685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4339343309402466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3684107065200806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5979560613632202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.442079097032547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.649391233921051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47577887773513794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3095433712005615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3081814050674438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -7.2889885902404785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.821020483970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.108541965484619
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.759665846824646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5533196330070496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5389586687088013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.676385521888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.12655776739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.718506097793579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0589076280593872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.173376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2307566404342651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43032413721084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6596243381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6075317859649658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3496910333633423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.304323434829712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5429072380065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.23784601688385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3839605450630188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3578325510025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4101458191871643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5593498945236206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5261962413787842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6069560050964355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5134009718894958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.492754340171814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.106074333190918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2267673015594482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8125263452529907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9957770109176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38836899399757385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3864234685897827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8670494556427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5020266771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9532723426818848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0035141706466675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6147872805595398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3020384311676025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.621870279312134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.171035647392273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3979039192199707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4522596299648285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9570648670196533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1924688816070557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9323089122772217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4758661091327667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0563626289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9182753562927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1008305549621582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.877232313156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3114378452301025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.016117572784424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.38308846950531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6588895320892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7082113027572632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8605692386627197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39676493406295776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37596362829208374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36896127462387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4712553322315216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5779051184654236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1398513317108154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5383908152580261
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.24183988571167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5801516771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9949736595153809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.936933159828186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49532994627952576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.82725989818573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8321367502212524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2679283618927002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3514699935913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2529927492141724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37957459688186646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5978503823280334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1099050045013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.126640796661377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3944718837738037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1986825466156006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.705367922782898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.521445870399475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5750682950019836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0304111242294312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3130147457122803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7765330076217651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6042109727859497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.19131338596344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1385242938995361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.153409719467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0666694641113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2491624355316162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7296414375305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4094323217868805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8212140202522278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5424342751502991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1804935932159424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.584382951259613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.18027400970459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6552503108978271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.140998125076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7210959196090698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5415948033332825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7337541580200195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5148993730545044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6149206161499023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8758225440979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.603874683380127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5631306171417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.590010404586792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.199794292449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3402215242385864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48524853587150574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.606766939163208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4283145666122437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7475863695144653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2288241386413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6502598524093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.393964022397995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5633406043052673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2742890119552612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6283440589904785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4668879508972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1814024448394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4795949459075928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.025648593902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8654574155807495
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5837287306785583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6177130341529846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42249807715415955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3359743356704712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7711889743804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4627164900302887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5470774173736572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4782664179801941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5026451349258423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6481448411941528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.011906623840332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.659970998764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4481761157512665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3499934673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.415173292160034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8273252248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46692001819610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4156922698020935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.42618727684021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6293945908546448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3561046123504639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9299198389053345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4789397716522217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8671508431434631
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0544230937957764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4891733229160309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5193216800689697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6288394927978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46501144766807556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.573005199432373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6563849449157715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.376950979232788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5023618936538696
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43532949686050415
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.069095611572266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1481329202651978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6182913780212402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4355505108833313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4609612226486206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6487643718719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5008635520935059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4530932307243347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4123900830745697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2493983507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7447134256362915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5340399742126465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.201573371887207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0712497234344482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9384263753890991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3858661651611328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8245929479599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6111096143722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8280545473098755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45077618956565857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4108709990978241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.557913899421692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.375770926475525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36314165592193604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.335066318511963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5816086530685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39845460653305054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5166926383972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2392961978912354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5071763396263123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8943676948547363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.212531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.235552787780762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5760971307754517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7883272171020508
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0769370794296265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.469876766204834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7884842753410339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2952585220336914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7000725269317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.918551504611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2618842124938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8582968711853027
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5114812850952148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4955310821533203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0411080121994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.522932767868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671072244644165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4964386522769928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3713104724884033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3290482759475708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4658299684524536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5183764696121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.170806884765625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45788252353668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7929836511611938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6390559673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.554566740989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4179447889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48164719343185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2802910804748535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.739309310913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3915804326534271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1514497995376587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7510595321655273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8542990684509277
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5022305846214294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.342990756034851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3218491077423096
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2761988639831543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0210509300231934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8444874882698059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4764413833618164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.310550570487976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9131697416305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6410210132598877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0014939308166504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0974534749984741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.190657377243042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.149144172668457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1327372789382935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.217910885810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5832631587982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9759913682937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5831543207168579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.28791970014572144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7957351207733154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5672781467437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.637507677078247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2728245258331299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9955363273620605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5518388152122498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7410601377487183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0535590648651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0628052949905396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.798543095588684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8823739290237427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0598775148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4610074758529663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5559854507446289
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.342036485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5314148664474487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.490963101387024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.135053873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5769540071487427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.47151517868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5739519596099854
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5626778602600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7714656591415405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5664714574813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.59525465965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9344476461410522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7931673526763916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5738069415092468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5572841167449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5679103136062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3279736042022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.771734356880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5547053813934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.338598608970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4005167484283447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.069177269935608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.500708818435669
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.382873773574829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6665394306182861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7845146656036377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5847762227058411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0113850831985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -7.328582286834717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1468008756637573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3576945066452026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7290750741958618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5477436780929565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3803749084472656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6419053077697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9311054348945618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.790879726409912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5431473255157471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3581527471542358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5427380800247192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.996806263923645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1306250095367432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0293116569519043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3141690492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6717522144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9910856485366821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.501651406288147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0210797786712646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2995688915252686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1933984756469727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1563868522644043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.57889986038208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.33343505859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7907320857048035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.277464747428894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2692526578903198
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.705647587776184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0757899284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.735884666442871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8885678052902222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.049253463745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9029343724250793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3997860252857208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2796847820281982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2447768449783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.267207622528076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1547489166259766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6144429445266724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4733537435531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40177106857299805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3856289386749268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6243728399276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9285609126091003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9549242854118347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.777754783630371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46900221705436707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.147222876548767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2224969863891602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4563349187374115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0694584846496582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8013917207717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39001065492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0754632949829102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.008807897567749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5494238138198853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4901984930038452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6350088119506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3932796716690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7530969381332397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2969844341278076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5278444290161133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9759458303451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5059917569160461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5827722549438477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.097651720046997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7351456880569458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5103279948234558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5125837326049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1640477180480957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525748491287231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7320597171783447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.191646933555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2992949485778809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7689993381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.659073829650879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4195737838745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4201876223087311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8220775127410889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4831448495388031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0032951831817627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7477691769599915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0728884935379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6316086649894714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39796021580696106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.300482749938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.455426812171936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1749696731567383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.993137240409851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4360930919647217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5461985468864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.262329578399658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6466199159622192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6029934883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2619385719299316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.7002346515655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7215750217437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066882610321045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4316707849502563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4053380489349365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46721047163009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4802652597427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4859369993209839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.067298173904419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8308954834938049
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.4026360511779785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5849316120147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4426380693912506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9366557002067566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47084856033325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.326252818107605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7994531393051147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5847350358963013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.763952374458313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43477311730384827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9247066974639893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0819483995437622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4574756622314453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0731523036956787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9998233318328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1620562076568604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48108065128326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1307677030563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0497219562530518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6550147533416748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1874583959579468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4161274433135986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.541524887084961
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6376175284385681
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3023650646209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5728920102119446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.770143985748291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8952652215957642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.713618278503418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.351290225982666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8703325986862183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.761092483997345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.45133376121521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.27535879611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4001660645008087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6848983764648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0981545448303223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6804636716842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.4065332412719727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9051259160041809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.450719952583313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4750249981880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6830860376358032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.070791244506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4182596206665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6132545471191406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.853760004043579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4143600463867188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7560278177261353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2231048345565796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3289573192596436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6140912771224976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.196281671524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4425450563430786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6351835131645203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3141846656799316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42445218563079834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.872501254081726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2997523546218872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3967695236206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1731147766113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4010355472564697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1333091259002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.697062373161316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45786187052726746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4066384434700012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6408779621124268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.086958885192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7838356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.129048228263855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49674853682518005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.433589935302734
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0900267362594604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.486768364906311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.837596416473389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8801510334014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45715922117233276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.822908878326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5890851020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2418317794799805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4339539706707001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.402304470539093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7735748291015625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8683412075042725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5893587470054626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3234039545059204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8234903812408447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49099671840667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.135196328163147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.534764051437378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.203521966934204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3070564270019531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.108138918876648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4503104090690613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4611432552337646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3794207572937012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2974584102630615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7431427240371704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1376235485076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5858887434005737
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6627254486083984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0605976581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9590171575546265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.773334264755249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6201431155204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3959715366363525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.8617730140686035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8081532716751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8276747465133667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2755672931671143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33478179574012756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5779248476028442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.864978313446045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8278477787971497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.236893892288208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8369770050048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6836453676223755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5134518146514893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.618048667907715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5274408459663391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6022509336471558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9968761801719666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5500928163528442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4625037908554077
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49480509757995605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45487236976623535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.593996286392212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5509379506111145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4006744921207428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6460273265838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -6.714150428771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5315635204315186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2926726341247559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7631443738937378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0979772806167603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2107499837875366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.356029033660889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1107990741729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.524548053741455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5032671689987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4625779986381531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1371365785598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5438494682312012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6432154178619385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6418410539627075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6781266927719116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.594061553478241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.538487434387207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5809050798416138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6045233011245728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0850166082382202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4812604486942291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5584777593612671
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.578949451446533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.252859115600586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.987183153629303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2889231443405151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.486135959625244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.14326810836792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0697472095489502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2002816200256348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3867114186286926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1575876474380493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5096424221992493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6913069486618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7322458624839783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.72360098361969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.190131902694702
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5181514024734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.553372859954834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.028592109680176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8581176996231079
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44315648078918457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4880378246307373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1511939764022827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4283127784729004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2421444654464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0400806665420532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.600857138633728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0905394554138184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.334312915802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.191941499710083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3219640254974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7438362836837769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.437826156616211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1877576112747192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228765249252319
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6597931385040283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3904961347579956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6207352876663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40472251176834106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42321935296058655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.087113380432129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.408213496208191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.040294170379639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5250533819198608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4520111680030823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5113906860351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3880245685577393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3753284215927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.462991863489151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.932504177093506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3814994990825653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3903521299362183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47113391757011414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6435866355895996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9923376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6238784790039062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.272220253944397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4693327248096466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4295146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3546120822429657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9113097190856934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6967507600784302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5039512515068054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.908441960811615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8763558268547058
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1253199577331543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0552581548690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1578786373138428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2271555662155151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5786930322647095
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 2.365154266357422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2502856254577637
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.195976495742798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6656226515769958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5235556364059448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.383416771888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7349739074707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3859219551086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0918256044387817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2225666046142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9058722257614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5176022052764893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2063405513763428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8568055629730225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4696100950241089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7718397378921509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9281914234161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3874582350254059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1301209926605225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4776649475097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4061625003814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5813357830047607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.51966392993927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3051241636276245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2825267314910889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.316291093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3294159471988678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8673756122589111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1569430828094482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7022784948349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8111522197723389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3622260093688965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.422802448272705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4083030223846436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.797857403755188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.865492343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665010690689087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0659841299057007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8117184042930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3906818628311157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5190985202789307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38841769099235535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.061934232711792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.861913800239563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9901163578033447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8379106521606445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5921666622161865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42792728543281555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48010116815567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4040517807006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4095650315284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5218622088432312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9862950444221497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2761242389678955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.482344627380371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3484700918197632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7947816848754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47744277119636536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9089540243148804
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0144684314727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2864400148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8606069087982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1234145164489746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.441941261291504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4791277647018433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.580814242362976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6067547798156738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4366849660873413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5885063409805298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5150633454322815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43939727544784546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0742764472961426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3530089855194092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3134996891021729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.467299699783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5811209082603455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8302544951438904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7065587043762207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9262422323226929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.359300136566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4208852052688599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7830231189727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066783666610718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7208712697029114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8890447616577148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2101874351501465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240148663520813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5032323598861694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9251154661178589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5285356640815735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8035605549812317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2083942890167236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6683239340782166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5321238040924072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6122937202453613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3085720539093018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1574856042861938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8082057237625122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2479525804519653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5181660652160645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0770409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44887375831604004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4947596788406372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.517076313495636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42858824133872986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228711009025574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6608101725578308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4607475996017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1929562091827393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0950418710708618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5073009729385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9351087212562561
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2297215461730957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1183929443359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0463480949401855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2448593378067017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.744074583053589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.889711618423462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8719828128814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39498981833457947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2681257724761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2354611158370972
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.988520860671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5840260982513428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7470942735671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5332997441291809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0147616863250732
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0416935682296753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4344979524612427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.501255452632904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8075225353240967
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3067138195037842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1901631355285645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2038415670394897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5069471001625061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.397221803665161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0195796489715576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47426649928092957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4371474981307983
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.322723388671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4795702695846558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5493624806404114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5824236869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4290655255317688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8379619121551514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.684549331665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44978684186935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6127926111221313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3164023160934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2032181024551392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1101433038711548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2163625955581665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.74851655960083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.36630117893219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4608643352985382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.490586519241333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5731380581855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4558255672454834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8983877897262573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39807942509651184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5214321613311768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44346585869789124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3846985399723053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.462707042694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4962162673473358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7979395389556885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8467768430709839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6682210564613342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9580219984054565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5776892900466919
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43576717376708984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5738557577133179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3314252197742462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1488986015319824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5768033266067505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.107264280319214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4745110869407654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.511940062046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.7999112606048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5860536098480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1717400550842285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.17242693901062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.641208291053772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47548022866249084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5053732395172119
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5111262202262878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4427149295806885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9758982062339783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5990936160087585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.94158673286438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4246011972427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.29454267024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38089123368263245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4349736273288727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.282899260520935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5881908535957336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4247362613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2290650606155396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47410017251968384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0772950649261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9912594556808472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9115113019943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4716602563858032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.158721685409546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1930984258651733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2793633937835693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1252896785736084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4631080627441406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.20753812789917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806397676467896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6166443824768066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.493576318025589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.535193920135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1450151205062866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5797548294067383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6414289474487305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.131711959838867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9021028280258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0157121419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8343596458435059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.273404836654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0670766830444336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36362898349761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.364262104034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3267875611782074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41151919960975647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5571599006652832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9272567629814148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.520801067352295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1237949132919312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7056997418403625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6363872289657593
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3713085651397705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46596574783325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3197912871837616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4651396572589874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7828210592269897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.187846302986145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7577412128448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3392384052276611
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3918344974517822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6605550646781921
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6931370496749878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5139411687850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6244163513183594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3594436645507812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9311304688453674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6478650569915771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4164992570877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6563423871994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6347928047180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.695127248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44316110014915466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6109365224838257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42503848671913147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.489096164703369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4890958070755005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3578544855117798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8068422675132751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.655853033065796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0775747299194336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0842044353485107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5615170001983643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6385029554367065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8328895568847656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5544050931930542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4396207928657532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5923227667808533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6719357967376709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3741087317466736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6009955406188965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5772700905799866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4963788986206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9733325242996216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4425033628940582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0214834213256836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3774733543395996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9393891096115112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7054989337921143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37484779953956604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7879034280776978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0657979249954224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5733355283737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5267959237098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2361390590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7777960300445557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6099814176559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8204162120819092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6569156646728516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.140491247177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8730177879333496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.331648111343384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.738986611366272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1505608558654785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5773409008979797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3624129891395569
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0386313199996948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5162652730941772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4362314939498901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.294535517692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47646355628967285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3880600929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5490675568580627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4228892922401428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2102537155151367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8515461683273315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.585203230381012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0989584922790527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3798627853393555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.381253480911255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9082140922546387
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5956931114196777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4335461854934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.530609607696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9071547985076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.643527626991272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37366729974746704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4987322688102722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.050297498703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5970268845558167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.596073567867279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0207550525665283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39282116293907166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.512916088104248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0831856727600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.395559549331665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.110025405883789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1072208881378174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2785171270370483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.537150502204895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.512019634246826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.653759002685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4339343309402466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3684107065200806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5979560613632202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.442079097032547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.649391233921051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47577887773513794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3095433712005615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3081814050674438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 7.2889885902404785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.821020483970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.108541965484619
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.759665846824646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5533196330070496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5389586687088013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.676385521888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.12655776739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.718506097793579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0589076280593872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.173376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2307566404342651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43032413721084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6596243381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6075317859649658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3496910333633423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.304323434829712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5429072380065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.23784601688385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3839605450630188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3578325510025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4101458191871643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5593498945236206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5261962413787842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6069560050964355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5134009718894958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.492754340171814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.106074333190918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2267673015594482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8125263452529907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9957770109176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38836899399757385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3864234685897827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8670494556427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5020266771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9532723426818848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0035141706466675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6147872805595398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3020384311676025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.621870279312134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.171035647392273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3979039192199707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4522596299648285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9570648670196533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1924688816070557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9323089122772217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4758661091327667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0563626289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9182753562927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1008305549621582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.877232313156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3114378452301025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.016117572784424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.38308846950531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6588895320892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7082113027572632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8605692386627197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39676493406295776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37596362829208374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36896127462387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4712553322315216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5779051184654236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1398513317108154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5383908152580261
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.24183988571167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5801516771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9949736595153809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.936933159828186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49532994627952576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.82725989818573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8321367502212524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2679283618927002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3514699935913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2529927492141724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37957459688186646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5978503823280334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1099050045013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.126640796661377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3944718837738037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1986825466156006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.705367922782898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.521445870399475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5750682950019836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0304111242294312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3130147457122803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7765330076217651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6042109727859497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.19131338596344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1385242938995361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.153409719467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0666694641113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2491624355316162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7296414375305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4094323217868805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8212140202522278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5424342751502991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1804935932159424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.584382951259613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.18027400970459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6552503108978271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.140998125076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7210959196090698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5415948033332825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7337541580200195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5148993730545044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6149206161499023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8758225440979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.603874683380127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5631306171417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.590010404586792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.199794292449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3402215242385864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48524853587150574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.606766939163208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4283145666122437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7475863695144653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2288241386413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6502598524093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.393964022397995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5633406043052673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2742890119552612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6283440589904785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4668879508972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1814024448394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4795949459075928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.025648593902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8654574155807495
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5837287306785583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6177130341529846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42249807715415955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3359743356704712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7711889743804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4627164900302887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5470774173736572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4782664179801941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5026451349258423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6481448411941528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.011906623840332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.659970998764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4481761157512665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3499934673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.415173292160034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8273252248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46692001819610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4156922698020935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.42618727684021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6293945908546448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3561046123504639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9299198389053345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4789397716522217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8671508431434631
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0544230937957764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4891733229160309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5193216800689697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6288394927978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46501144766807556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.573005199432373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6563849449157715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.376950979232788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5023618936538696
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43532949686050415
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.069095611572266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1481329202651978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6182913780212402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4355505108833313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4609612226486206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6487643718719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5008635520935059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4530932307243347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4123900830745697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2493983507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7447134256362915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5340399742126465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.201573371887207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0712497234344482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9384263753890991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3858661651611328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8245929479599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6111096143722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8280545473098755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45077618956565857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4108709990978241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.557913899421692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.375770926475525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36314165592193604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.335066318511963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5816086530685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39845460653305054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5166926383972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2392961978912354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5071763396263123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8943676948547363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.212531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.235552787780762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5760971307754517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7883272171020508
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0769370794296265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.469876766204834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7884842753410339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2952585220336914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7000725269317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.918551504611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2618842124938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8582968711853027
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5114812850952148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4955310821533203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0411080121994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.522932767868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671072244644165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4964386522769928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3713104724884033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3290482759475708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4658299684524536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5183764696121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.170806884765625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45788252353668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7929836511611938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6390559673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.554566740989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4179447889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48164719343185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2802910804748535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.739309310913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3915804326534271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1514497995376587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7510595321655273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8542990684509277
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5022305846214294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.342990756034851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3218491077423096
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2761988639831543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0210509300231934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8444874882698059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4764413833618164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.310550570487976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9131697416305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6410210132598877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0014939308166504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0974534749984741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.190657377243042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.149144172668457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1327372789382935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.217910885810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5832631587982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9759913682937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5831543207168579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.28791970014572144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7957351207733154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5672781467437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.637507677078247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2728245258331299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9955363273620605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5518388152122498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7410601377487183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0535590648651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0628052949905396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.798543095588684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8823739290237427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0598775148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4610074758529663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5559854507446289
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.342036485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5314148664474487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.490963101387024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.135053873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5769540071487427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.47151517868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5739519596099854
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5626778602600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7714656591415405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5664714574813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.59525465965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9344476461410522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7931673526763916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5738069415092468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5572841167449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5679103136062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3279736042022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.771734356880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5547053813934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.338598608970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4005167484283447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.069177269935608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.500708818435669
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.382873773574829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6665394306182861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7845146656036377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5847762227058411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0113850831985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 7.328582286834717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1468008756637573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3576945066452026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7290750741958618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5477436780929565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3803749084472656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6419053077697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9311054348945618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.790879726409912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5431473255157471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3581527471542358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5427380800247192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.996806263923645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1306250095367432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0293116569519043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3141690492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6717522144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9910856485366821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.501651406288147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0210797786712646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2995688915252686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1933984756469727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1563868522644043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.57889986038208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.33343505859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7907320857048035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.277464747428894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2692526578903198
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.705647587776184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0757899284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.735884666442871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8885678052902222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.049253463745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9029343724250793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3997860252857208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2796847820281982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2447768449783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.267207622528076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1547489166259766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6144429445266724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4733537435531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40177106857299805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3856289386749268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6243728399276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9285609126091003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9549242854118347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.777754783630371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46900221705436707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.147222876548767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2224969863891602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4563349187374115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0694584846496582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8013917207717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39001065492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0754632949829102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.008807897567749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5494238138198853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4901984930038452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6350088119506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3932796716690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7530969381332397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2969844341278076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5278444290161133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9759458303451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5059917569160461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5827722549438477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.097651720046997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7351456880569458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5103279948234558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5125837326049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1640477180480957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525748491287231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7320597171783447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.191646933555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2992949485778809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7689993381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.659073829650879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4195737838745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4201876223087311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8220775127410889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4831448495388031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0032951831817627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7477691769599915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0728884935379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6316086649894714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39796021580696106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.300482749938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.455426812171936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1749696731567383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.993137240409851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4360930919647217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5461985468864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.262329578399658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6466199159622192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6029934883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2619385719299316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.7002346515655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7215750217437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066882610321045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4316707849502563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4053380489349365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46721047163009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4802652597427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4859369993209839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.067298173904419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8308954834938049
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.4026360511779785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5849316120147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4426380693912506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9366557002067566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47084856033325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.326252818107605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7994531393051147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5847350358963013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.763952374458313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43477311730384827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9247066974639893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0819483995437622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4574756622314453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0731523036956787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9998233318328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1620562076568604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48108065128326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1307677030563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0497219562530518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6550147533416748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1874583959579468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4161274433135986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.541524887084961
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6376175284385681
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3023650646209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5728920102119446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.770143985748291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8952652215957642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.713618278503418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.351290225982666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8703325986862183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.761092483997345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.45133376121521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.27535879611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4001660645008087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6848983764648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0981545448303223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6804636716842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.4065332412719727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9051259160041809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.450719952583313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4750249981880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6830860376358032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.070791244506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4182596206665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6132545471191406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.853760004043579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4143600463867188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7560278177261353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2231048345565796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3289573192596436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6140912771224976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.196281671524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4425450563430786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6351835131645203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3141846656799316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42445218563079834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.872501254081726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2997523546218872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3967695236206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1731147766113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4010355472564697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1333091259002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.697062373161316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45786187052726746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4066384434700012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6408779621124268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.086958885192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7838356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.129048228263855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49674853682518005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.433589935302734
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0900267362594604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.486768364906311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.837596416473389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8801510334014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45715922117233276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.822908878326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5890851020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2418317794799805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4339539706707001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.402304470539093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7735748291015625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8683412075042725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5893587470054626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3234039545059204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8234903812408447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49099671840667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.135196328163147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.534764051437378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.203521966934204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3070564270019531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.108138918876648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4503104090690613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4611432552337646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3794207572937012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2974584102630615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7431427240371704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1376235485076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5858887434005737
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6627254486083984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0605976581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9590171575546265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.773334264755249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6201431155204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3959715366363525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.8617730140686035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8081532716751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8276747465133667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2755672931671143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33478179574012756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5779248476028442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.864978313446045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8278477787971497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.236893892288208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8369770050048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6836453676223755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5134518146514893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.618048667907715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5274408459663391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6022509336471558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9968761801719666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5500928163528442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4625037908554077
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49480509757995605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45487236976623535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.593996286392212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5509379506111145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4006744921207428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6460273265838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 6.714150428771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5315635204315186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2926726341247559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7631443738937378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0979772806167603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2107499837875366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.356029033660889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1107990741729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.524548053741455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5032671689987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4625779986381531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1371365785598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5438494682312012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6432154178619385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6418410539627075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6781266927719116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.594061553478241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.538487434387207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5809050798416138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6045233011245728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0850166082382202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4812604486942291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5584777593612671
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.578949451446533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.252859115600586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.987183153629303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2889231443405151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.486135959625244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.14326810836792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0697472095489502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2002816200256348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3867114186286926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1575876474380493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5096424221992493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6913069486618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7322458624839783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.72360098361969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.190131902694702
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5181514024734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.553372859954834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.028592109680176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8581176996231079
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44315648078918457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4880378246307373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1511939764022827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4283127784729004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2421444654464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0400806665420532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.600857138633728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0905394554138184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.334312915802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.191941499710083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3219640254974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7438362836837769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.437826156616211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1877576112747192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228765249252319
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6597931385040283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3904961347579956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6207352876663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40472251176834106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42321935296058655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.087113380432129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.408213496208191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.040294170379639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5250533819198608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4520111680030823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5113906860351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3880245685577393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3753284215927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.462991863489151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.932504177093506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3814994990825653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3903521299362183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47113391757011414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6435866355895996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9923376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6238784790039062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.272220253944397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4693327248096466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4295146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3546120822429657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9113097190856934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6967507600784302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5039512515068054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.908441960811615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8763558268547058
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1253199577331543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0552581548690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1578786373138428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2271555662155151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5786930322647095
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -2.365154266357422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2502856254577637
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.195976495742798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6656226515769958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5235556364059448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.383416771888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7349739074707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3859219551086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0918256044387817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2225666046142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9058722257614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5176022052764893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2063405513763428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8568055629730225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4696100950241089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7718397378921509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9281914234161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3874582350254059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1301209926605225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4776649475097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4061625003814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5813357830047607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.51966392993927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3051241636276245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2825267314910889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.316291093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3294159471988678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8673756122589111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1569430828094482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7022784948349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8111522197723389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3622260093688965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.422802448272705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4083030223846436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.797857403755188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.865492343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665010690689087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0659841299057007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8117184042930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3906818628311157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5190985202789307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38841769099235535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.061934232711792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.861913800239563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9901163578033447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8379106521606445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5921666622161865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42792728543281555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48010116815567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4040517807006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4095650315284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5218622088432312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9862950444221497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2761242389678955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.482344627380371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3484700918197632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7947816848754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47744277119636536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9089540243148804
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0144684314727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2864400148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8606069087982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1234145164489746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.441941261291504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4791277647018433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.580814242362976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6067547798156738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4366849660873413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5885063409805298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5150633454322815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43939727544784546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0742764472961426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3530089855194092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3134996891021729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.467299699783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5811209082603455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8302544951438904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7065587043762207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9262422323226929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.359300136566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4208852052688599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7830231189727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066783666610718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7208712697029114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8890447616577148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2101874351501465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240148663520813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5032323598861694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9251154661178589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5285356640815735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8035605549812317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2083942890167236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6683239340782166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5321238040924072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6122937202453613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3085720539093018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1574856042861938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8082057237625122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2479525804519653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5181660652160645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0770409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44887375831604004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4947596788406372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.517076313495636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42858824133872986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228711009025574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6608101725578308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4607475996017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1929562091827393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0950418710708618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5073009729385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9351087212562561
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2297215461730957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1183929443359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0463480949401855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2448593378067017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.744074583053589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.889711618423462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8719828128814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39498981833457947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2681257724761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2354611158370972
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.988520860671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5840260982513428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7470942735671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5332997441291809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0147616863250732
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0416935682296753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4344979524612427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.501255452632904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8075225353240967
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3067138195037842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1901631355285645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2038415670394897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5069471001625061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.397221803665161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0195796489715576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47426649928092957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4371474981307983
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.322723388671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4795702695846558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5493624806404114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5824236869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4290655255317688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8379619121551514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.684549331665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44978684186935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6127926111221313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3164023160934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2032181024551392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1101433038711548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2163625955581665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.74851655960083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.36630117893219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4608643352985382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.490586519241333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5731380581855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4558255672454834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8983877897262573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39807942509651184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5214321613311768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44346585869789124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3846985399723053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.462707042694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4962162673473358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7979395389556885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8467768430709839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6682210564613342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9580219984054565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5776892900466919
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43576717376708984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5738557577133179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3314252197742462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1488986015319824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5768033266067505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.107264280319214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4745110869407654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.511940062046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.7999112606048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5860536098480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1717400550842285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.17242693901062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.641208291053772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47548022866249084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5053732395172119
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5111262202262878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4427149295806885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9758982062339783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5990936160087585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.94158673286438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4246011972427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.29454267024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38089123368263245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4349736273288727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.282899260520935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5881908535957336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4247362613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2290650606155396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47410017251968384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0772950649261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9912594556808472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9115113019943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4716602563858032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.158721685409546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1930984258651733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2793633937835693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1252896785736084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4631080627441406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.20753812789917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806397676467896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6166443824768066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.493576318025589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.535193920135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1450151205062866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5797548294067383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6414289474487305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.131711959838867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9021028280258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0157121419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8343596458435059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.273404836654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0670766830444336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36362898349761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.364262104034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3267875611782074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41151919960975647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5571599006652832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9272567629814148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.520801067352295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1237949132919312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7056997418403625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6363872289657593
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3713085651397705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46596574783325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3197912871837616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4651396572589874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7828210592269897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.187846302986145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7577412128448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3392384052276611
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3918344974517822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6605550646781921
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6931370496749878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5139411687850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6244163513183594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3594436645507812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9311304688453674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6478650569915771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4164992570877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6563423871994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6347928047180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.695127248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44316110014915466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6109365224838257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42503848671913147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.489096164703369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4890958070755005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3578544855117798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8068422675132751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.655853033065796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0775747299194336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0842044353485107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5615170001983643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6385029554367065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8328895568847656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5544050931930542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4396207928657532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5923227667808533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6719357967376709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3741087317466736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6009955406188965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5772700905799866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4963788986206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9733325242996216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4425033628940582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0214834213256836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3774733543395996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9393891096115112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7054989337921143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37484779953956604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7879034280776978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0657979249954224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5733355283737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5267959237098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2361390590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7777960300445557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6099814176559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8204162120819092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6569156646728516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.140491247177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8730177879333496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.331648111343384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.738986611366272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1505608558654785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5773409008979797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3624129891395569
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0386313199996948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5162652730941772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4362314939498901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.294535517692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47646355628967285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3880600929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5490675568580627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4228892922401428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2102537155151367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8515461683273315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.585203230381012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0989584922790527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3798627853393555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.381253480911255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9082140922546387
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5956931114196777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4335461854934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.530609607696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9071547985076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.643527626991272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37366729974746704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4987322688102722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.050297498703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5970268845558167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.596073567867279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0207550525665283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39282116293907166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.512916088104248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0831856727600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.395559549331665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.110025405883789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1072208881378174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2785171270370483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.537150502204895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.512019634246826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.653759002685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4339343309402466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3684107065200806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5979560613632202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.442079097032547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.649391233921051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47577887773513794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3095433712005615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3081814050674438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -7.2889885902404785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.821020483970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.108541965484619
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.759665846824646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5533196330070496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5389586687088013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.676385521888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.12655776739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.718506097793579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0589076280593872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.173376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2307566404342651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43032413721084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6596243381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6075317859649658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3496910333633423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.304323434829712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5429072380065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.23784601688385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3839605450630188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3578325510025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4101458191871643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5593498945236206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5261962413787842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6069560050964355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5134009718894958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.492754340171814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.106074333190918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2267673015594482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8125263452529907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9957770109176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38836899399757385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3864234685897827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8670494556427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5020266771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9532723426818848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0035141706466675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6147872805595398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3020384311676025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.621870279312134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.171035647392273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3979039192199707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4522596299648285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9570648670196533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1924688816070557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9323089122772217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4758661091327667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0563626289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9182753562927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1008305549621582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.877232313156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3114378452301025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.016117572784424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.38308846950531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6588895320892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7082113027572632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8605692386627197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39676493406295776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37596362829208374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36896127462387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4712553322315216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5779051184654236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1398513317108154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5383908152580261
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.24183988571167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5801516771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9949736595153809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.936933159828186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49532994627952576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.82725989818573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8321367502212524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2679283618927002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3514699935913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2529927492141724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37957459688186646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5978503823280334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1099050045013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.126640796661377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3944718837738037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1986825466156006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.705367922782898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.521445870399475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5750682950019836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0304111242294312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3130147457122803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7765330076217651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6042109727859497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.19131338596344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1385242938995361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.153409719467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0666694641113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2491624355316162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7296414375305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4094323217868805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8212140202522278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5424342751502991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1804935932159424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.584382951259613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.18027400970459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6552503108978271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.140998125076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7210959196090698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5415948033332825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7337541580200195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5148993730545044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6149206161499023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8758225440979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.603874683380127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5631306171417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.590010404586792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.199794292449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3402215242385864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48524853587150574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.606766939163208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4283145666122437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7475863695144653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2288241386413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6502598524093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.393964022397995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5633406043052673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2742890119552612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6283440589904785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4668879508972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1814024448394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4795949459075928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.025648593902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8654574155807495
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5837287306785583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6177130341529846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42249807715415955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3359743356704712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7711889743804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4627164900302887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5470774173736572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4782664179801941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5026451349258423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6481448411941528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.011906623840332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.659970998764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4481761157512665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3499934673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.415173292160034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8273252248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46692001819610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4156922698020935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.42618727684021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6293945908546448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3561046123504639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9299198389053345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4789397716522217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8671508431434631
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0544230937957764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4891733229160309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5193216800689697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6288394927978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46501144766807556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.573005199432373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6563849449157715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.376950979232788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5023618936538696
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43532949686050415
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.069095611572266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1481329202651978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6182913780212402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4355505108833313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4609612226486206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6487643718719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5008635520935059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4530932307243347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4123900830745697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2493983507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7447134256362915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5340399742126465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.201573371887207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0712497234344482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9384263753890991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3858661651611328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8245929479599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6111096143722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8280545473098755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45077618956565857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4108709990978241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.557913899421692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.375770926475525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36314165592193604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.335066318511963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5816086530685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39845460653305054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5166926383972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2392961978912354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5071763396263123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8943676948547363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.212531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.235552787780762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5760971307754517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7883272171020508
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0769370794296265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.469876766204834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7884842753410339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2952585220336914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7000725269317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.918551504611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2618842124938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8582968711853027
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5114812850952148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4955310821533203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0411080121994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.522932767868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671072244644165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4964386522769928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3713104724884033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3290482759475708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4658299684524536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5183764696121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.170806884765625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45788252353668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7929836511611938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6390559673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.554566740989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4179447889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48164719343185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2802910804748535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.739309310913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3915804326534271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1514497995376587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7510595321655273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8542990684509277
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5022305846214294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.342990756034851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3218491077423096
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2761988639831543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0210509300231934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8444874882698059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4764413833618164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.310550570487976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9131697416305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6410210132598877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0014939308166504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0974534749984741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.190657377243042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.149144172668457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1327372789382935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.217910885810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5832631587982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9759913682937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5831543207168579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.28791970014572144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7957351207733154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5672781467437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.637507677078247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2728245258331299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9955363273620605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5518388152122498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7410601377487183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0535590648651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0628052949905396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.798543095588684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8823739290237427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0598775148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4610074758529663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5559854507446289
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.342036485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5314148664474487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.490963101387024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.135053873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5769540071487427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.47151517868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5739519596099854
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5626778602600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7714656591415405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5664714574813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.59525465965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9344476461410522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7931673526763916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5738069415092468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5572841167449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5679103136062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3279736042022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.771734356880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5547053813934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.338598608970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4005167484283447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.069177269935608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.500708818435669
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.382873773574829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6665394306182861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7845146656036377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5847762227058411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0113850831985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -7.328582286834717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1468008756637573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3576945066452026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7290750741958618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5477436780929565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3803749084472656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6419053077697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9311054348945618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.790879726409912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5431473255157471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3581527471542358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5427380800247192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.996806263923645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1306250095367432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0293116569519043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3141690492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6717522144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9910856485366821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.501651406288147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0210797786712646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2995688915252686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1933984756469727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1563868522644043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.57889986038208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.33343505859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7907320857048035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.277464747428894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2692526578903198
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.705647587776184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0757899284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.735884666442871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8885678052902222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.049253463745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9029343724250793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3997860252857208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2796847820281982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2447768449783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.267207622528076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1547489166259766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6144429445266724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4733537435531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40177106857299805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3856289386749268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6243728399276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9285609126091003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9549242854118347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.777754783630371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46900221705436707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.147222876548767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2224969863891602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4563349187374115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0694584846496582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8013917207717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39001065492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0754632949829102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.008807897567749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5494238138198853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4901984930038452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6350088119506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3932796716690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7530969381332397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2969844341278076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5278444290161133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9759458303451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5059917569160461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5827722549438477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.097651720046997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7351456880569458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5103279948234558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5125837326049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1640477180480957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4525748491287231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7320597171783447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.191646933555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2992949485778809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7689993381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.659073829650879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4195737838745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4201876223087311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8220775127410889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4831448495388031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0032951831817627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7477691769599915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0728884935379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6316086649894714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39796021580696106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.300482749938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.455426812171936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1749696731567383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.993137240409851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4360930919647217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5461985468864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.262329578399658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6466199159622192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6029934883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2619385719299316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.7002346515655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7215750217437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6066882610321045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4316707849502563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4053380489349365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46721047163009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4802652597427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4859369993209839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.067298173904419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8308954834938049
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.4026360511779785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5849316120147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4426380693912506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9366557002067566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47084856033325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.326252818107605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7994531393051147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5847350358963013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.763952374458313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43477311730384827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9247066974639893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0819483995437622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4574756622314453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0731523036956787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9998233318328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1620562076568604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48108065128326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1307677030563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.0497219562530518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6550147533416748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1874583959579468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4161274433135986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.541524887084961
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6376175284385681
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3023650646209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5728920102119446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.770143985748291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8952652215957642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.713618278503418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.351290225982666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8703325986862183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.761092483997345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.45133376121521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.27535879611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4001660645008087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6848983764648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0981545448303223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6804636716842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.4065332412719727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9051259160041809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.450719952583313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4750249981880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6830860376358032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.070791244506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4182596206665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6132545471191406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.853760004043579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4143600463867188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7560278177261353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2231048345565796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3289573192596436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6140912771224976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.196281671524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4425450563430786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6351835131645203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3141846656799316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42445218563079834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.872501254081726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2997523546218872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3967695236206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1731147766113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4010355472564697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1333091259002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.697062373161316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45786187052726746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4066384434700012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6408779621124268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.086958885192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7838356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.129048228263855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49674853682518005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.433589935302734
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0900267362594604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.486768364906311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.837596416473389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8801510334014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45715922117233276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.822908878326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5890851020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2418317794799805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4339539706707001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.402304470539093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7735748291015625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8683412075042725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5893587470054626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3234039545059204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8234903812408447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49099671840667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.135196328163147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.534764051437378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.203521966934204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3070564270019531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.108138918876648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4503104090690613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4611432552337646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3794207572937012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2974584102630615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7431427240371704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1376235485076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5858887434005737
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6627254486083984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0605976581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9590171575546265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.773334264755249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6201431155204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3959715366363525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.8617730140686035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8081532716751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8276747465133667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2755672931671143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.33478179574012756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5779248476028442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.864978313446045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8278477787971497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.236893892288208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8369770050048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6836453676223755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5134518146514893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.618048667907715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5274408459663391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6022509336471558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9968761801719666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5500928163528442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4625037908554077
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49480509757995605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45487236976623535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.593996286392212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5509379506111145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4006744921207428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6460273265838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -6.714150428771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5315635204315186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2926726341247559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7631443738937378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0979772806167603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2107499837875366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.356029033660889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1107990741729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.524548053741455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5032671689987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4625779986381531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1371365785598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5438494682312012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6432154178619385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6418410539627075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6781266927719116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.594061553478241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.538487434387207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5809050798416138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6045233011245728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0850166082382202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4812604486942291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5584777593612671
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.578949451446533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.252859115600586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.987183153629303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2889231443405151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.486135959625244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.14326810836792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0697472095489502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2002816200256348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3867114186286926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1575876474380493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5096424221992493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6913069486618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7322458624839783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.72360098361969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.190131902694702
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5181514024734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.553372859954834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.028592109680176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8581176996231079
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44315648078918457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4880378246307373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1511939764022827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4283127784729004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2421444654464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0400806665420532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.600857138633728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0905394554138184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.334312915802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.191941499710083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3219640254974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7438362836837769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.437826156616211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1877576112747192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6228765249252319
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6597931385040283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3904961347579956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6207352876663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40472251176834106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42321935296058655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.087113380432129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.408213496208191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.040294170379639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5250533819198608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4520111680030823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5113906860351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3880245685577393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3753284215927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.462991863489151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.932504177093506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3814994990825653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3903521299362183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47113391757011414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6435866355895996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9923376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6238784790039062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.272220253944397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4693327248096466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4295146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3546120822429657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9113097190856934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6967507600784302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5039512515068054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.908441960811615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8763558268547058
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1253199577331543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0552581548690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1578786373138428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2271555662155151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5786930322647095
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 2.365154266357422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2502856254577637
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.195976495742798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6656226515769958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5235556364059448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.383416771888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7349739074707031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3859219551086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0918256044387817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2225666046142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9058722257614136
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5176022052764893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2063405513763428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8568055629730225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4696100950241089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7718397378921509
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9281914234161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3874582350254059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1301209926605225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4776649475097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4061625003814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5813357830047607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.51966392993927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3051241636276245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2825267314910889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.316291093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3294159471988678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8673756122589111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1569430828094482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7022784948349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8111522197723389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3622260093688965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.422802448272705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4083030223846436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.797857403755188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.865492343902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665010690689087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0659841299057007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8117184042930603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3906818628311157
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5190985202789307
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38841769099235535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.061934232711792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.861913800239563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9901163578033447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8379106521606445
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5921666622161865
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42792728543281555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48010116815567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4040517807006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4095650315284729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5218622088432312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9862950444221497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2761242389678955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.482344627380371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3484700918197632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7947816848754883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47744277119636536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9089540243148804
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0144684314727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2864400148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8606069087982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1234145164489746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.441941261291504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4791277647018433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.580814242362976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6067547798156738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4366849660873413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5885063409805298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5150633454322815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43939727544784546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0742764472961426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3530089855194092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3134996891021729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.467299699783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5811209082603455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8302544951438904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7065587043762207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9262422323226929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.359300136566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4208852052688599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7830231189727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066783666610718
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7208712697029114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8890447616577148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2101874351501465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240148663520813
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5032323598861694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9251154661178589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5285356640815735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8035605549812317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2083942890167236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6683239340782166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5321238040924072
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6122937202453613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3085720539093018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1574856042861938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8082057237625122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2479525804519653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5181660652160645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0770409107208252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44887375831604004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4947596788406372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.517076313495636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42858824133872986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228711009025574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6608101725578308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4607475996017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1929562091827393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0950418710708618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5073009729385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9351087212562561
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2297215461730957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1183929443359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0463480949401855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2448593378067017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.744074583053589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.889711618423462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8719828128814697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39498981833457947
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2681257724761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2354611158370972
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.988520860671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5840260982513428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7470942735671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5332997441291809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0147616863250732
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0416935682296753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4344979524612427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.501255452632904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8075225353240967
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3067138195037842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1901631355285645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2038415670394897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5069471001625061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.397221803665161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0195796489715576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47426649928092957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4371474981307983
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.322723388671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4795702695846558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5493624806404114
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5824236869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4290655255317688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8379619121551514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.684549331665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44978684186935425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6127926111221313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3164023160934448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2032181024551392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1101433038711548
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2163625955581665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.74851655960083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.36630117893219
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4608643352985382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.490586519241333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5731380581855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4558255672454834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8983877897262573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39807942509651184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5214321613311768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44346585869789124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3846985399723053
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.462707042694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4962162673473358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7979395389556885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8467768430709839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6682210564613342
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9580219984054565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5776892900466919
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43576717376708984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5738557577133179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3314252197742462
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1488986015319824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5768033266067505
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.107264280319214
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4745110869407654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.511940062046051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.7999112606048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5860536098480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1717400550842285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.17242693901062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.641208291053772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47548022866249084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5053732395172119
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5111262202262878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4427149295806885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9758982062339783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5990936160087585
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.94158673286438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4246011972427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.29454267024993896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38089123368263245
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4349736273288727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.282899260520935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5881908535957336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4247362613677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2290650606155396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47410017251968384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0772950649261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9912594556808472
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9115113019943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4716602563858032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.158721685409546
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1930984258651733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2793633937835693
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1252896785736084
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4631080627441406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.20753812789917
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806397676467896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6166443824768066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.493576318025589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.535193920135498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1450151205062866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5797548294067383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6414289474487305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.131711959838867
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9021028280258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0157121419906616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8343596458435059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.273404836654663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0670766830444336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36362898349761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.364262104034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3267875611782074
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41151919960975647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5571599006652832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9272567629814148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.520801067352295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1237949132919312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7056997418403625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6363872289657593
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3713085651397705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46596574783325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3197912871837616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4651396572589874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7828210592269897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.187846302986145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7577412128448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3392384052276611
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3918344974517822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6605550646781921
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6931370496749878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5139411687850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6244163513183594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3594436645507812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9311304688453674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6478650569915771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4164992570877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6563423871994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6347928047180176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.695127248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44316110014915466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6109365224838257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42503848671913147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.489096164703369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4890958070755005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3578544855117798
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8068422675132751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.655853033065796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0775747299194336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0842044353485107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5615170001983643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6385029554367065
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8328895568847656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5544050931930542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4396207928657532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5923227667808533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6719357967376709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3741087317466736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6009955406188965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5772700905799866
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4963788986206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9733325242996216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4425033628940582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0214834213256836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3774733543395996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9393891096115112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7054989337921143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37484779953956604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7879034280776978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0657979249954224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5733355283737183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5267959237098694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2361390590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7777960300445557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6099814176559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8204162120819092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6569156646728516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.140491247177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8730177879333496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.331648111343384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.738986611366272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1505608558654785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5773409008979797
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3624129891395569
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0386313199996948
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5162652730941772
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4362314939498901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.294535517692566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47646355628967285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3880600929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5490675568580627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4228892922401428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2102537155151367
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8515461683273315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.585203230381012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0989584922790527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3798627853393555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.381253480911255
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9082140922546387
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5956931114196777
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4335461854934692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.530609607696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9071547985076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.643527626991272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37366729974746704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4987322688102722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.050297498703003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5970268845558167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.596073567867279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0207550525665283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39282116293907166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.512916088104248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0831856727600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.395559549331665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.110025405883789
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1072208881378174
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2785171270370483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.537150502204895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.512019634246826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.653759002685547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4339343309402466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3684107065200806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5979560613632202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.442079097032547
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.649391233921051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47577887773513794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3095433712005615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3081814050674438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 7.2889885902404785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.821020483970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.108541965484619
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.759665846824646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5533196330070496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5389586687088013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.676385521888733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.12655776739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.718506097793579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0589076280593872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.173376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2307566404342651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43032413721084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6596243381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6075317859649658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3496910333633423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.304323434829712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5429072380065918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.23784601688385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3839605450630188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3578325510025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4101458191871643
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5593498945236206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5261962413787842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6069560050964355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5134009718894958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.492754340171814
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.106074333190918
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2267673015594482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8125263452529907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9957770109176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38836899399757385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3864234685897827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8670494556427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5020266771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9532723426818848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0035141706466675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6147872805595398
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3020384311676025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.621870279312134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.171035647392273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3979039192199707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4522596299648285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9570648670196533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1924688816070557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9323089122772217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4758661091327667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0563626289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9182753562927246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1008305549621582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.877232313156128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3114378452301025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.016117572784424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.38308846950531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6588895320892334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7082113027572632
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8605692386627197
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39676493406295776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37596362829208374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36896127462387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4712553322315216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5779051184654236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1398513317108154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5383908152580261
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.24183988571167
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5801516771316528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9949736595153809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.936933159828186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49532994627952576
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.82725989818573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8321367502212524
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2679283618927002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3514699935913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2529927492141724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37957459688186646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5978503823280334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1099050045013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.126640796661377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3944718837738037
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1986825466156006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.705367922782898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.521445870399475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5750682950019836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0304111242294312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3130147457122803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7765330076217651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6042109727859497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.19131338596344
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1385242938995361
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.153409719467163
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0666694641113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2491624355316162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7296414375305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4094323217868805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8212140202522278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5424342751502991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1804935932159424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.584382951259613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.18027400970459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6552503108978271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.140998125076294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7210959196090698
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5415948033332825
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7337541580200195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5148993730545044
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6149206161499023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8758225440979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.603874683380127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5631306171417236
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.590010404586792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.199794292449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3402215242385864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48524853587150574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.606766939163208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4283145666122437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7475863695144653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2288241386413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6502598524093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.393964022397995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5633406043052673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2742890119552612
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6283440589904785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4668879508972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1814024448394775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4795949459075928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.025648593902588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8654574155807495
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5837287306785583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6177130341529846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42249807715415955
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3359743356704712
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7711889743804932
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4627164900302887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5470774173736572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4782664179801941
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5026451349258423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6481448411941528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.011906623840332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.659970998764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4481761157512665
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3499934673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.415173292160034
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8273252248764038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46692001819610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4156922698020935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.42618727684021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6293945908546448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3561046123504639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9299198389053345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4789397716522217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8671508431434631
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0544230937957764
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4891733229160309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5193216800689697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6288394927978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46501144766807556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.573005199432373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6563849449157715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.376950979232788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5023618936538696
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43532949686050415
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.069095611572266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1481329202651978
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6182913780212402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4355505108833313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4609612226486206
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6487643718719482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5008635520935059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4530932307243347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4123900830745697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2493983507156372
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7447134256362915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5340399742126465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.201573371887207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0712497234344482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9384263753890991
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3858661651611328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8245929479599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6111096143722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8280545473098755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45077618956565857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4108709990978241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.557913899421692
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.375770926475525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36314165592193604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.335066318511963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5816086530685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39845460653305054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5166926383972168
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2392961978912354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5071763396263123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8943676948547363
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.212531566619873
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.235552787780762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5760971307754517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7883272171020508
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0769370794296265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.469876766204834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7884842753410339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2952585220336914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7000725269317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.918551504611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2618842124938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8582968711853027
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5114812850952148
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4955310821533203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0411080121994019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.522932767868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671072244644165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4964386522769928
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3713104724884033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3290482759475708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4658299684524536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5183764696121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.170806884765625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45788252353668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7929836511611938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6390559673309326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.554566740989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4179447889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48164719343185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2802910804748535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.739309310913086
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3915804326534271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1514497995376587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7510595321655273
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8542990684509277
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5022305846214294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.342990756034851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3218491077423096
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2761988639831543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0210509300231934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8444874882698059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4764413833618164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.310550570487976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9131697416305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6410210132598877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0014939308166504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0974534749984741
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.190657377243042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.149144172668457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1327372789382935
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.217910885810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5832631587982178
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9759913682937622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5831543207168579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.28791970014572144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7957351207733154
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5672781467437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.637507677078247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2728245258331299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9955363273620605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5518388152122498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7410601377487183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0535590648651123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0628052949905396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.798543095588684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8823739290237427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0598775148391724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4610074758529663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5559854507446289
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.342036485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5314148664474487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.490963101387024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.135053873062134
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5769540071487427
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.47151517868042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5739519596099854
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5626778602600098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7714656591415405
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5664714574813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.59525465965271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9344476461410522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7931673526763916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5738069415092468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5572841167449951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5679103136062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3279736042022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.771734356880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5547053813934326
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.338598608970642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4005167484283447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.069177269935608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.500708818435669
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.382873773574829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6665394306182861
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7845146656036377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5847762227058411
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0113850831985474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 7.328582286834717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1468008756637573
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3576945066452026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7290750741958618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5477436780929565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3803749084472656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6419053077697754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9311054348945618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.790879726409912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5431473255157471
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3581527471542358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5427380800247192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.996806263923645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1306250095367432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0293116569519043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3141690492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6717522144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9910856485366821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.501651406288147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0210797786712646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2995688915252686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1933984756469727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1563868522644043
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.57889986038208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.33343505859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7907320857048035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.277464747428894
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2692526578903198
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.705647587776184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0757899284362793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.735884666442871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8885678052902222
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.049253463745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9029343724250793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3997860252857208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2796847820281982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2447768449783325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.267207622528076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1547489166259766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6144429445266724
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4733537435531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40177106857299805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3856289386749268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6243728399276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9285609126091003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9549242854118347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.777754783630371
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46900221705436707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.147222876548767
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2224969863891602
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4563349187374115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0694584846496582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8013917207717896
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39001065492630005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0754632949829102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.008807897567749
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5494238138198853
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4901984930038452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6350088119506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3932796716690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7530969381332397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2969844341278076
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5278444290161133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9759458303451538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5059917569160461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5827722549438477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.097651720046997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7351456880569458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5103279948234558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5125837326049805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1640477180480957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4525748491287231
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7320597171783447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.191646933555603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2992949485778809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7689993381500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.659073829650879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4195737838745117
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4201876223087311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8220775127410889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4831448495388031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0032951831817627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7477691769599915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0728884935379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6316086649894714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39796021580696106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.300482749938965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.455426812171936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1749696731567383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.993137240409851
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4360930919647217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5461985468864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.262329578399658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6466199159622192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6029934883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2619385719299316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.7002346515655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7215750217437744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6066882610321045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4316707849502563
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4053380489349365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46721047163009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4802652597427368
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4859369993209839
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.067298173904419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8308954834938049
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.4026360511779785
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5849316120147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4426380693912506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9366557002067566
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47084856033325195
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.326252818107605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7994531393051147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5847350358963013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.763952374458313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43477311730384827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9247066974639893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0819483995437622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4574756622314453
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0731523036956787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9998233318328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1620562076568604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48108065128326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1307677030563354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.0497219562530518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6550147533416748
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1874583959579468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4161274433135986
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.541524887084961
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6376175284385681
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3023650646209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5728920102119446
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.770143985748291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8952652215957642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.713618278503418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.351290225982666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8703325986862183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.761092483997345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.45133376121521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.27535879611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4001660645008087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6848983764648438
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0981545448303223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6804636716842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.4065332412719727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9051259160041809
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.450719952583313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4750249981880188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6830860376358032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.070791244506836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4182596206665039
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6132545471191406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.853760004043579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4143600463867188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7560278177261353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2231048345565796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3289573192596436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6140912771224976
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.196281671524048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4425450563430786
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6351835131645203
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3141846656799316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42445218563079834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.872501254081726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2997523546218872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3967695236206055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1731147766113281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4010355472564697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1333091259002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.697062373161316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45786187052726746
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4066384434700012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6408779621124268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.086958885192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7838356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.129048228263855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49674853682518005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.433589935302734
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0900267362594604
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.486768364906311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.837596416473389
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8801510334014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45715922117233276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.07328582555055618
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.822908878326416
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5890851020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2418317794799805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4339539706707001
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.402304470539093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7735748291015625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8683412075042725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5893587470054626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3234039545059204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8234903812408447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49099671840667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.135196328163147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.534764051437378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.203521966934204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3070564270019531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.108138918876648
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4503104090690613
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4611432552337646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3794207572937012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2974584102630615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7431427240371704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1376235485076904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5858887434005737
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6627254486083984
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0605976581573486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9590171575546265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.773334264755249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6201431155204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3959715366363525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.8617730140686035
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8081532716751099
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8276747465133667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2755672931671143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.33478179574012756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5779248476028442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.864978313446045
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8278477787971497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.236893892288208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8369770050048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6836453676223755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5134518146514893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.618048667907715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5274408459663391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6022509336471558
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9968761801719666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5500928163528442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4625037908554077
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49480509757995605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45487236976623535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.593996286392212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5509379506111145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4006744921207428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6460273265838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 6.714150428771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5315635204315186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2926726341247559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7631443738937378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0979772806167603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2107499837875366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.356029033660889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1107990741729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.524548053741455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5032671689987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4625779986381531
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1371365785598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5438494682312012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6432154178619385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6418410539627075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6781266927719116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.594061553478241
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.538487434387207
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5809050798416138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6045233011245728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0850166082382202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4812604486942291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5584777593612671
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.578949451446533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.252859115600586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.987183153629303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2889231443405151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.486135959625244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.14326810836792
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0697472095489502
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2002816200256348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3867114186286926
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1575876474380493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5096424221992493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6913069486618042
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7322458624839783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.72360098361969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.190131902694702
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5181514024734497
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.553372859954834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.028592109680176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8581176996231079
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44315648078918457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4880378246307373
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1511939764022827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4283127784729004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2421444654464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0400806665420532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.600857138633728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0905394554138184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.334312915802002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.191941499710083
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3219640254974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7438362836837769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.437826156616211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1877576112747192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6228765249252319
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6597931385040283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3904961347579956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6207352876663208
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40472251176834106
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42321935296058655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.087113380432129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.408213496208191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.040294170379639
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5250533819198608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4520111680030823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5113906860351562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3880245685577393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3753284215927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.462991863489151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.932504177093506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3814994990825653
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3903521299362183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47113391757011414
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6435866355895996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9923376441001892
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6238784790039062
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.272220253944397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4693327248096466
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4295146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3546120822429657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9113097190856934
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6967507600784302
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5039512515068054
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.908441960811615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8763558268547058
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1253199577331543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0552581548690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1578786373138428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2271555662155151
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5786930322647095
- ]
- ]
- ]
- ]
- ]
- },
- "/features/features.16/conv/conv.0/conv.0.2/Clip/fq_output_0": {
- "input_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.006891258060932159
- ]
- ],
- [
- [
- 0.3504652976989746
- ]
- ],
- [
- [
- 1.1684147119522095
- ]
- ],
- [
- [
- 1.992400050163269
- ]
- ],
- [
- [
- 2.970536231994629
- ]
- ],
- [
- [
- 0.6870988011360168
- ]
- ],
- [
- [
- 0.7613338232040405
- ]
- ],
- [
- [
- 0.7910606861114502
- ]
- ],
- [
- [
- 0.37382104992866516
- ]
- ],
- [
- [
- 0.3668709993362427
- ]
- ],
- [
- [
- 0.8176097869873047
- ]
- ],
- [
- [
- 1.9830882549285889
- ]
- ],
- [
- [
- 1.02752685546875
- ]
- ],
- [
- [
- 0.42978087067604065
- ]
- ],
- [
- [
- 0.19562435150146484
- ]
- ],
- [
- [
- 0.8520280718803406
- ]
- ],
- [
- [
- 1.0888880491256714
- ]
- ],
- [
- [
- 0.789987325668335
- ]
- ],
- [
- [
- 0.2167913019657135
- ]
- ],
- [
- [
- 0.4350156784057617
- ]
- ],
- [
- [
- 0.5484710931777954
- ]
- ],
- [
- [
- 1.2675206661224365
- ]
- ],
- [
- [
- 2.112257719039917
- ]
- ],
- [
- [
- 1.0200294256210327
- ]
- ],
- [
- [
- 0.19183096289634705
- ]
- ],
- [
- [
- 0.8594831228256226
- ]
- ],
- [
- [
- 0.685897946357727
- ]
- ],
- [
- [
- 0.19769851863384247
- ]
- ],
- [
- [
- 1.1640785932540894
- ]
- ],
- [
- [
- 0.2672795355319977
- ]
- ],
- [
- [
- 0.23542150855064392
- ]
- ],
- [
- [
- 1.0620688199996948
- ]
- ],
- [
- [
- 0.29872292280197144
- ]
- ],
- [
- [
- 2.1032791137695312
- ]
- ],
- [
- [
- 0.25303730368614197
- ]
- ],
- [
- [
- 0.5038049817085266
- ]
- ],
- [
- [
- 3.227356433868408
- ]
- ],
- [
- [
- 1.6912593841552734
- ]
- ],
- [
- [
- 0.518845796585083
- ]
- ],
- [
- [
- 0.4429967403411865
- ]
- ],
- [
- [
- 0.8874638676643372
- ]
- ],
- [
- [
- 0.12695012986660004
- ]
- ],
- [
- [
- 1.8838740587234497
- ]
- ],
- [
- [
- 0.47099778056144714
- ]
- ],
- [
- [
- 0.8247132301330566
- ]
- ],
- [
- [
- 0.4914819598197937
- ]
- ],
- [
- [
- 1.0608625411987305
- ]
- ],
- [
- [
- 0.1989663690328598
- ]
- ],
- [
- [
- 0.31627532839775085
- ]
- ],
- [
- [
- 1.2405040264129639
- ]
- ],
- [
- [
- 0.354045033454895
- ]
- ],
- [
- [
- 0.2468685805797577
- ]
- ],
- [
- [
- 2.6733436584472656
- ]
- ],
- [
- [
- 3.3597323894500732
- ]
- ],
- [
- [
- 0.9949195981025696
- ]
- ],
- [
- [
- 1.389163613319397
- ]
- ],
- [
- [
- 1.0155315399169922
- ]
- ],
- [
- [
- 1.9318660497665405
- ]
- ],
- [
- [
- 0.2726866900920868
- ]
- ],
- [
- [
- 0.3411402702331543
- ]
- ],
- [
- [
- 0.631507396697998
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6200932860374451
- ]
- ],
- [
- [
- 0.6708743572235107
- ]
- ],
- [
- [
- 0.9056058526039124
- ]
- ],
- [
- [
- 0.34877490997314453
- ]
- ],
- [
- [
- 0.9262478947639465
- ]
- ],
- [
- [
- 3.5140304565429688
- ]
- ],
- [
- [
- 0.9742116928100586
- ]
- ],
- [
- [
- 1.5942798852920532
- ]
- ],
- [
- [
- 0.08980687707662582
- ]
- ],
- [
- [
- 0.26236963272094727
- ]
- ],
- [
- [
- 0.6267581582069397
- ]
- ],
- [
- [
- 3.6726861000061035
- ]
- ],
- [
- [
- 0.2584107518196106
- ]
- ],
- [
- [
- 0.03501589596271515
- ]
- ],
- [
- [
- 1.176146388053894
- ]
- ],
- [
- [
- 1.8571066856384277
- ]
- ],
- [
- [
- 2.7335164546966553
- ]
- ],
- [
- [
- 2.2514500617980957
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6599306464195251
- ]
- ],
- [
- [
- 1.9407522678375244
- ]
- ],
- [
- [
- 0.11462447047233582
- ]
- ],
- [
- [
- 1.4206876754760742
- ]
- ],
- [
- [
- 0.7602402567863464
- ]
- ],
- [
- [
- 0.9752533435821533
- ]
- ],
- [
- [
- 0.7615475654602051
- ]
- ],
- [
- [
- 0.15399198234081268
- ]
- ],
- [
- [
- 0.4285737872123718
- ]
- ],
- [
- [
- 0.3920394778251648
- ]
- ],
- [
- [
- 1.7809213399887085
- ]
- ],
- [
- [
- 0.928821325302124
- ]
- ],
- [
- [
- 0.25421595573425293
- ]
- ],
- [
- [
- 0.04393407329916954
- ]
- ],
- [
- [
- 0.9122532606124878
- ]
- ],
- [
- [
- 1.0994757413864136
- ]
- ],
- [
- [
- 0.3403042256832123
- ]
- ],
- [
- [
- 2.4500293731689453
- ]
- ],
- [
- [
- 1.046662449836731
- ]
- ],
- [
- [
- 0.1721215546131134
- ]
- ],
- [
- [
- 1.0659432411193848
- ]
- ],
- [
- [
- 0.8734276294708252
- ]
- ],
- [
- [
- 1.5350754261016846
- ]
- ],
- [
- [
- 2.25423526763916
- ]
- ],
- [
- [
- 0.53092360496521
- ]
- ],
- [
- [
- 0.6627208590507507
- ]
- ],
- [
- [
- 0.08284255862236023
- ]
- ],
- [
- [
- 0.2624017894268036
- ]
- ],
- [
- [
- 0.6140393614768982
- ]
- ],
- [
- [
- 1.5326836109161377
- ]
- ],
- [
- [
- 0.2974306643009186
- ]
- ],
- [
- [
- 1.5875822305679321
- ]
- ],
- [
- [
- 0.3019329905509949
- ]
- ],
- [
- [
- 0.2006557434797287
- ]
- ],
- [
- [
- 0.8874416947364807
- ]
- ],
- [
- [
- 1.2168705463409424
- ]
- ],
- [
- [
- 0.06004560738801956
- ]
- ],
- [
- [
- 0.6763111352920532
- ]
- ],
- [
- [
- 0.46222424507141113
- ]
- ],
- [
- [
- 0.7485265135765076
- ]
- ],
- [
- [
- 1.236164927482605
- ]
- ],
- [
- [
- 1.064233660697937
- ]
- ],
- [
- [
- 0.6722064018249512
- ]
- ],
- [
- [
- 0.7940285205841064
- ]
- ],
- [
- [
- 2.546928644180298
- ]
- ],
- [
- [
- 0.7766149640083313
- ]
- ],
- [
- [
- 0.37511277198791504
- ]
- ],
- [
- [
- 0.5677616596221924
- ]
- ],
- [
- [
- 0.43750375509262085
- ]
- ],
- [
- [
- 0.420329213142395
- ]
- ],
- [
- [
- 0.831684947013855
- ]
- ],
- [
- [
- 0.22054709494113922
- ]
- ],
- [
- [
- 0.3992350995540619
- ]
- ],
- [
- [
- 0.953109085559845
- ]
- ],
- [
- [
- 0.5773082375526428
- ]
- ],
- [
- [
- 1.8532160520553589
- ]
- ],
- [
- [
- 1.287205696105957
- ]
- ],
- [
- [
- 0.4125060737133026
- ]
- ],
- [
- [
- 2.042003631591797
- ]
- ],
- [
- [
- 1.6668339967727661
- ]
- ],
- [
- [
- 2.459838390350342
- ]
- ],
- [
- [
- 1.7437703609466553
- ]
- ],
- [
- [
- 0.5709787607192993
- ]
- ],
- [
- [
- 0.053764887154102325
- ]
- ],
- [
- [
- 0.2736412286758423
- ]
- ],
- [
- [
- 0.1683187335729599
- ]
- ],
- [
- [
- 0.5134045481681824
- ]
- ],
- [
- [
- 0.35631194710731506
- ]
- ],
- [
- [
- 0.23725326359272003
- ]
- ],
- [
- [
- 1.798155426979065
- ]
- ],
- [
- [
- 1.8057043552398682
- ]
- ],
- [
- [
- 0.14024057984352112
- ]
- ],
- [
- [
- 1.1835651397705078
- ]
- ],
- [
- [
- 0.635667622089386
- ]
- ],
- [
- [
- 0.28228601813316345
- ]
- ],
- [
- [
- 2.0788357257843018
- ]
- ],
- [
- [
- 0.0315178744494915
- ]
- ],
- [
- [
- 0.535269021987915
- ]
- ],
- [
- [
- 0.08748050779104233
- ]
- ],
- [
- [
- 0.17178888618946075
- ]
- ],
- [
- [
- 0.007095592096447945
- ]
- ],
- [
- [
- 0.8353219032287598
- ]
- ],
- [
- [
- 0.9973188638687134
- ]
- ],
- [
- [
- 2.1930408477783203
- ]
- ],
- [
- [
- 0.2758769392967224
- ]
- ],
- [
- [
- 2.4576992988586426
- ]
- ],
- [
- [
- 0.8402591943740845
- ]
- ],
- [
- [
- 1.0766112804412842
- ]
- ],
- [
- [
- 0.4690767228603363
- ]
- ],
- [
- [
- 0.013138867914676666
- ]
- ],
- [
- [
- 0.3555575907230377
- ]
- ],
- [
- [
- 1.018609881401062
- ]
- ],
- [
- [
- 2.4640824794769287
- ]
- ],
- [
- [
- 1.1884548664093018
- ]
- ],
- [
- [
- 0.4316183924674988
- ]
- ],
- [
- [
- 0.19811169803142548
- ]
- ],
- [
- [
- 0.9771339297294617
- ]
- ],
- [
- [
- 0.3265186548233032
- ]
- ],
- [
- [
- 0.20004615187644958
- ]
- ],
- [
- [
- 1.5940569639205933
- ]
- ],
- [
- [
- 1.918346643447876
- ]
- ],
- [
- [
- 0.8789114356040955
- ]
- ],
- [
- [
- 0.13265091180801392
- ]
- ],
- [
- [
- 1.8622559309005737
- ]
- ],
- [
- [
- 0.35052233934402466
- ]
- ],
- [
- [
- 2.1456239223480225
- ]
- ],
- [
- [
- 0.40151679515838623
- ]
- ],
- [
- [
- 1.3585482835769653
- ]
- ],
- [
- [
- 2.277024507522583
- ]
- ],
- [
- [
- 0.18291974067687988
- ]
- ],
- [
- [
- 0.409784734249115
- ]
- ],
- [
- [
- 0.2567535638809204
- ]
- ],
- [
- [
- 0.9888108372688293
- ]
- ],
- [
- [
- 0.375365674495697
- ]
- ],
- [
- [
- 0.5999814867973328
- ]
- ],
- [
- [
- 0.18992432951927185
- ]
- ],
- [
- [
- 0.30712053179740906
- ]
- ],
- [
- [
- 0.11639229208230972
- ]
- ],
- [
- [
- 0.18632936477661133
- ]
- ],
- [
- [
- 1.0420581102371216
- ]
- ],
- [
- [
- 0.6613099575042725
- ]
- ],
- [
- [
- 0.5363647937774658
- ]
- ],
- [
- [
- 1.8672597408294678
- ]
- ],
- [
- [
- 0.6508169174194336
- ]
- ],
- [
- [
- 0.8563182353973389
- ]
- ],
- [
- [
- 3.498908042907715
- ]
- ],
- [
- [
- 0.6693678498268127
- ]
- ],
- [
- [
- 0.3513442277908325
- ]
- ],
- [
- [
- 0.10187851637601852
- ]
- ],
- [
- [
- 0.37325066328048706
- ]
- ],
- [
- [
- 0.6882538795471191
- ]
- ],
- [
- [
- 0.33884671330451965
- ]
- ],
- [
- [
- 0.3059094548225403
- ]
- ],
- [
- [
- 2.5319080352783203
- ]
- ],
- [
- [
- 0.20656241476535797
- ]
- ],
- [
- [
- 0.29662075638771057
- ]
- ],
- [
- [
- 2.1346864700317383
- ]
- ],
- [
- [
- 1.2929762601852417
- ]
- ],
- [
- [
- 2.562317371368408
- ]
- ],
- [
- [
- 0.1443614363670349
- ]
- ],
- [
- [
- 0.23444576561450958
- ]
- ],
- [
- [
- 0.45350968837738037
- ]
- ],
- [
- [
- 0.8187160491943359
- ]
- ],
- [
- [
- 0.12519526481628418
- ]
- ],
- [
- [
- 0.6415349841117859
- ]
- ],
- [
- [
- 1.769593358039856
- ]
- ],
- [
- [
- 0.8846297264099121
- ]
- ],
- [
- [
- 0.1707867980003357
- ]
- ],
- [
- [
- 3.034575939178467
- ]
- ],
- [
- [
- 2.2531607151031494
- ]
- ],
- [
- [
- 1.5545645952224731
- ]
- ],
- [
- [
- 0.11355830729007721
- ]
- ],
- [
- [
- 0.3314897418022156
- ]
- ],
- [
- [
- 0.143313467502594
- ]
- ],
- [
- [
- 0.18954086303710938
- ]
- ],
- [
- [
- 0.6025198698043823
- ]
- ],
- [
- [
- 2.2350406646728516
- ]
- ],
- [
- [
- 0.3675277829170227
- ]
- ],
- [
- [
- 0.4463058114051819
- ]
- ],
- [
- [
- 1.3486888408660889
- ]
- ],
- [
- [
- 1.804373025894165
- ]
- ],
- [
- [
- 0.29487448930740356
- ]
- ],
- [
- [
- 1.8770968914031982
- ]
- ],
- [
- [
- 0.2870080769062042
- ]
- ],
- [
- [
- 1.6196857690811157
- ]
- ],
- [
- [
- 0.25660282373428345
- ]
- ],
- [
- [
- 1.9059032201766968
- ]
- ],
- [
- [
- 2.0749599933624268
- ]
- ],
- [
- [
- 1.5797783136367798
- ]
- ],
- [
- [
- 0.14979635179042816
- ]
- ],
- [
- [
- 0.5285957455635071
- ]
- ],
- [
- [
- 0.463131308555603
- ]
- ],
- [
- [
- 0.8777257204055786
- ]
- ],
- [
- [
- 0.2390299141407013
- ]
- ],
- [
- [
- 0.0796513706445694
- ]
- ],
- [
- [
- 1.1998260021209717
- ]
- ],
- [
- [
- 1.6661242246627808
- ]
- ],
- [
- [
- 0.4347054064273834
- ]
- ],
- [
- [
- 0.4623491168022156
- ]
- ],
- [
- [
- 0.22423215210437775
- ]
- ],
- [
- [
- 0.5437999367713928
- ]
- ],
- [
- [
- 0.6045353412628174
- ]
- ],
- [
- [
- 0.31801867485046387
- ]
- ],
- [
- [
- 0.5867706537246704
- ]
- ],
- [
- [
- 0.23495838046073914
- ]
- ],
- [
- [
- 0.9042160511016846
- ]
- ],
- [
- [
- 0.2140394151210785
- ]
- ],
- [
- [
- 3.369386911392212
- ]
- ],
- [
- [
- 0.2542293965816498
- ]
- ],
- [
- [
- 0.007934130728244781
- ]
- ],
- [
- [
- 2.9057459831237793
- ]
- ],
- [
- [
- 0.222044438123703
- ]
- ],
- [
- [
- 0.2552059590816498
- ]
- ],
- [
- [
- 1.1768323183059692
- ]
- ],
- [
- [
- 0.6773493885993958
- ]
- ],
- [
- [
- 0.31371286511421204
- ]
- ],
- [
- [
- 1.2494761943817139
- ]
- ],
- [
- [
- 1.9027637243270874
- ]
- ],
- [
- [
- 0.8802347779273987
- ]
- ],
- [
- [
- 1.8253333568572998
- ]
- ],
- [
- [
- 0.5260353088378906
- ]
- ],
- [
- [
- 3.411710500717163
- ]
- ],
- [
- [
- 1.30806303024292
- ]
- ],
- [
- [
- 0.2262634038925171
- ]
- ],
- [
- [
- 0.21223285794258118
- ]
- ],
- [
- [
- 0.27782124280929565
- ]
- ],
- [
- [
- 0.16737981140613556
- ]
- ],
- [
- [
- 0.4665883779525757
- ]
- ],
- [
- [
- 0.21249543130397797
- ]
- ],
- [
- [
- 1.1317440271377563
- ]
- ],
- [
- [
- 0.4317481517791748
- ]
- ],
- [
- [
- 0.7632531523704529
- ]
- ],
- [
- [
- 0.4573363661766052
- ]
- ],
- [
- [
- 0.42437416315078735
- ]
- ],
- [
- [
- 0.32417845726013184
- ]
- ],
- [
- [
- 0.2859601676464081
- ]
- ],
- [
- [
- 0.34883514046669006
- ]
- ],
- [
- [
- 0.224381685256958
- ]
- ],
- [
- [
- 0.4749956429004669
- ]
- ],
- [
- [
- 0.6735332012176514
- ]
- ],
- [
- [
- 1.2322971820831299
- ]
- ],
- [
- [
- 0.1579444408416748
- ]
- ],
- [
- [
- 0.8631299138069153
- ]
- ],
- [
- [
- 1.8860307931900024
- ]
- ],
- [
- [
- 0.8160963654518127
- ]
- ],
- [
- [
- 1.0552667379379272
- ]
- ],
- [
- [
- 0.225094735622406
- ]
- ],
- [
- [
- 0.7613537311553955
- ]
- ],
- [
- [
- 0.9347494840621948
- ]
- ],
- [
- [
- 1.811124324798584
- ]
- ],
- [
- [
- 0.2988784909248352
- ]
- ],
- [
- [
- 2.091519594192505
- ]
- ],
- [
- [
- 3.0501251220703125
- ]
- ],
- [
- [
- 0.4990011155605316
- ]
- ],
- [
- [
- 0.1576162874698639
- ]
- ],
- [
- [
- 0.02615368738770485
- ]
- ],
- [
- [
- 1.4646739959716797
- ]
- ],
- [
- [
- 2.273045063018799
- ]
- ],
- [
- [
- 0.582167387008667
- ]
- ],
- [
- [
- 0.33604156970977783
- ]
- ],
- [
- [
- 0.3452654480934143
- ]
- ],
- [
- [
- 1.3738120794296265
- ]
- ],
- [
- [
- 0.11839733272790909
- ]
- ],
- [
- [
- 0.3757559359073639
- ]
- ],
- [
- [
- 1.5804228782653809
- ]
- ],
- [
- [
- 1.0181833505630493
- ]
- ],
- [
- [
- 0.3670628070831299
- ]
- ],
- [
- [
- 0.8883941173553467
- ]
- ],
- [
- [
- 3.1132476329803467
- ]
- ],
- [
- [
- 0.7584757208824158
- ]
- ],
- [
- [
- 0.6042746901512146
- ]
- ],
- [
- [
- 0.4193151593208313
- ]
- ],
- [
- [
- 0.5118738412857056
- ]
- ],
- [
- [
- 0.6953400373458862
- ]
- ],
- [
- [
- 0.494008332490921
- ]
- ],
- [
- [
- 0.719170868396759
- ]
- ],
- [
- [
- 2.006342649459839
- ]
- ],
- [
- [
- 0.14401209354400635
- ]
- ],
- [
- [
- 2.975209951400757
- ]
- ],
- [
- [
- 1.0541809797286987
- ]
- ],
- [
- [
- 0.026578687131404877
- ]
- ],
- [
- [
- 0.4577387273311615
- ]
- ],
- [
- [
- 1.466444730758667
- ]
- ],
- [
- [
- 0.3611409664154053
- ]
- ],
- [
- [
- 0.2552192211151123
- ]
- ],
- [
- [
- 0.42071089148521423
- ]
- ],
- [
- [
- 2.107797145843506
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5355910658836365
- ]
- ],
- [
- [
- 0.27668052911758423
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6890372633934021
- ]
- ],
- [
- [
- 1.3435431718826294
- ]
- ],
- [
- [
- 0.13218650221824646
- ]
- ],
- [
- [
- 0.14674481749534607
- ]
- ],
- [
- [
- 0.6671472787857056
- ]
- ],
- [
- [
- 0.6240856051445007
- ]
- ],
- [
- [
- 0.25520655512809753
- ]
- ],
- [
- [
- 2.951606273651123
- ]
- ],
- [
- [
- 0.05808132141828537
- ]
- ],
- [
- [
- 3.35361385345459
- ]
- ],
- [
- [
- 0.1292233169078827
- ]
- ],
- [
- [
- 0.29123613238334656
- ]
- ],
- [
- [
- 0.6384915709495544
- ]
- ],
- [
- [
- 1.7629101276397705
- ]
- ],
- [
- [
- 0.39274996519088745
- ]
- ],
- [
- [
- 2.3678677082061768
- ]
- ],
- [
- [
- 2.4024100303649902
- ]
- ],
- [
- [
- 1.2251887321472168
- ]
- ],
- [
- [
- 1.964890718460083
- ]
- ],
- [
- [
- 0.3629840910434723
- ]
- ],
- [
- [
- 0.21316111087799072
- ]
- ],
- [
- [
- 0.5419773459434509
- ]
- ],
- [
- [
- 1.2005208730697632
- ]
- ],
- [
- [
- 0.31449344754219055
- ]
- ],
- [
- [
- 0.3204787075519562
- ]
- ],
- [
- [
- 2.618242025375366
- ]
- ],
- [
- [
- 0.434754878282547
- ]
- ],
- [
- [
- 0.8176811337471008
- ]
- ],
- [
- [
- 0.3114202916622162
- ]
- ],
- [
- [
- 0.46807095408439636
- ]
- ],
- [
- [
- 0.17551714181900024
- ]
- ],
- [
- [
- 2.5411782264709473
- ]
- ],
- [
- [
- 0.09566855430603027
- ]
- ],
- [
- [
- 3.4027750492095947
- ]
- ],
- [
- [
- 0.13355307281017303
- ]
- ],
- [
- [
- 1.2939131259918213
- ]
- ],
- [
- [
- 0.46674126386642456
- ]
- ],
- [
- [
- 0.1447637975215912
- ]
- ],
- [
- [
- 3.1075546741485596
- ]
- ],
- [
- [
- 0.4434696137905121
- ]
- ],
- [
- [
- 0.45143556594848633
- ]
- ],
- [
- [
- 0.5719121098518372
- ]
- ],
- [
- [
- 0.4572232663631439
- ]
- ],
- [
- [
- 0.20237615704536438
- ]
- ],
- [
- [
- 1.676417350769043
- ]
- ],
- [
- [
- 1.1733919382095337
- ]
- ],
- [
- [
- 0.32187986373901367
- ]
- ],
- [
- [
- 0.2043502926826477
- ]
- ],
- [
- [
- 0.21682889759540558
- ]
- ],
- [
- [
- 0.4633900225162506
- ]
- ],
- [
- [
- 0.685371994972229
- ]
- ],
- [
- [
- 0.5238751769065857
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.6579866409301758
- ]
- ],
- [
- [
- 0.2791018784046173
- ]
- ],
- [
- [
- 2.303579807281494
- ]
- ],
- [
- [
- 2.1041007041931152
- ]
- ],
- [
- [
- 1.7133746147155762
- ]
- ],
- [
- [
- 0.7792698740959167
- ]
- ],
- [
- [
- 1.858337163925171
- ]
- ],
- [
- [
- 0.7583179473876953
- ]
- ],
- [
- [
- 0.32600539922714233
- ]
- ],
- [
- [
- 2.63653826713562
- ]
- ],
- [
- [
- 1.1009479761123657
- ]
- ],
- [
- [
- 0.9262980818748474
- ]
- ],
- [
- [
- 0.10933641344308853
- ]
- ],
- [
- [
- 0.7514172792434692
- ]
- ],
- [
- [
- 0.14768865704536438
- ]
- ],
- [
- [
- 0.8276479840278625
- ]
- ],
- [
- [
- 0.3253172039985657
- ]
- ],
- [
- [
- 0.7094538807868958
- ]
- ],
- [
- [
- 0.25036901235580444
- ]
- ],
- [
- [
- 1.9982759952545166
- ]
- ],
- [
- [
- 0.004518091678619385
- ]
- ],
- [
- [
- 0.16802620887756348
- ]
- ],
- [
- [
- 2.523383140563965
- ]
- ],
- [
- [
- 0.5820430517196655
- ]
- ],
- [
- [
- 0.7572194933891296
- ]
- ],
- [
- [
- 0.8516369462013245
- ]
- ],
- [
- [
- 0.7400627732276917
- ]
- ],
- [
- [
- 1.635909914970398
- ]
- ],
- [
- [
- 0.3940899074077606
- ]
- ],
- [
- [
- 1.4339452981948853
- ]
- ],
- [
- [
- 2.1268420219421387
- ]
- ],
- [
- [
- 0.45188069343566895
- ]
- ],
- [
- [
- 1.4422544240951538
- ]
- ],
- [
- [
- 0.33674949407577515
- ]
- ],
- [
- [
- 0.6500612497329712
- ]
- ],
- [
- [
- 0.6660565733909607
- ]
- ],
- [
- [
- 0.25603264570236206
- ]
- ],
- [
- [
- 0.7046838998794556
- ]
- ],
- [
- [
- 1.00862717628479
- ]
- ],
- [
- [
- 1.4118386507034302
- ]
- ],
- [
- [
- 1.7187572717666626
- ]
- ],
- [
- [
- 0.09615404903888702
- ]
- ],
- [
- [
- 0.34220418334007263
- ]
- ],
- [
- [
- 2.592647075653076
- ]
- ],
- [
- [
- 2.877743721008301
- ]
- ],
- [
- [
- 0.6307385563850403
- ]
- ],
- [
- [
- 0.1700681447982788
- ]
- ],
- [
- [
- 0.3765407204627991
- ]
- ],
- [
- [
- 0.08814126253128052
- ]
- ],
- [
- [
- 1.613324522972107
- ]
- ],
- [
- [
- 0.09122724831104279
- ]
- ],
- [
- [
- 0.382555216550827
- ]
- ],
- [
- [
- 1.1222103834152222
- ]
- ],
- [
- [
- 3.0133981704711914
- ]
- ],
- [
- [
- 0.44347745180130005
- ]
- ],
- [
- [
- 2.134984016418457
- ]
- ],
- [
- [
- 2.3750696182250977
- ]
- ],
- [
- [
- 0.6710714101791382
- ]
- ],
- [
- [
- 1.1722934246063232
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9490990042686462
- ]
- ],
- [
- [
- 0.07232080399990082
- ]
- ],
- [
- [
- 1.1527609825134277
- ]
- ],
- [
- [
- 0.9251473546028137
- ]
- ],
- [
- [
- 0.9388145208358765
- ]
- ],
- [
- [
- 1.958827257156372
- ]
- ],
- [
- [
- 0.08905629813671112
- ]
- ],
- [
- [
- 0.24860680103302002
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1883044242858887
- ]
- ],
- [
- [
- 1.4882102012634277
- ]
- ],
- [
- [
- 0.2100875824689865
- ]
- ],
- [
- [
- 0.13196875154972076
- ]
- ],
- [
- [
- 1.9823741912841797
- ]
- ],
- [
- [
- 0.15177759528160095
- ]
- ],
- [
- [
- 0.17180219292640686
- ]
- ],
- [
- [
- 0.04008480906486511
- ]
- ],
- [
- [
- 0.8632665276527405
- ]
- ],
- [
- [
- 0.46615850925445557
- ]
- ],
- [
- [
- 0.7832217216491699
- ]
- ],
- [
- [
- 0.5351962447166443
- ]
- ],
- [
- [
- 0.2698638141155243
- ]
- ],
- [
- [
- 0.9963015913963318
- ]
- ],
- [
- [
- 0.12687784433364868
- ]
- ],
- [
- [
- 1.316404938697815
- ]
- ],
- [
- [
- 0.20826561748981476
- ]
- ],
- [
- [
- 0.12752118706703186
- ]
- ],
- [
- [
- 0.8760324716567993
- ]
- ],
- [
- [
- 2.447824478149414
- ]
- ],
- [
- [
- 0.06554573029279709
- ]
- ],
- [
- [
- 1.2965893745422363
- ]
- ],
- [
- [
- 0.7248235940933228
- ]
- ],
- [
- [
- 2.32321834564209
- ]
- ],
- [
- [
- 0.17318904399871826
- ]
- ],
- [
- [
- 2.848159074783325
- ]
- ],
- [
- [
- 0.7140870690345764
- ]
- ],
- [
- [
- 1.2318401336669922
- ]
- ],
- [
- [
- 0.7046616077423096
- ]
- ],
- [
- [
- 0.11044658720493317
- ]
- ],
- [
- [
- 1.2255412340164185
- ]
- ],
- [
- [
- 1.9169889688491821
- ]
- ],
- [
- [
- 0.24806451797485352
- ]
- ],
- [
- [
- 1.7412306070327759
- ]
- ],
- [
- [
- 0.07071489840745926
- ]
- ],
- [
- [
- 0.03516477346420288
- ]
- ],
- [
- [
- 0.670748233795166
- ]
- ],
- [
- [
- 1.503494143486023
- ]
- ],
- [
- [
- 1.0379366874694824
- ]
- ],
- [
- [
- 0.6785505414009094
- ]
- ],
- [
- [
- 0.18369144201278687
- ]
- ],
- [
- [
- 0.869205117225647
- ]
- ],
- [
- [
- 0.833336591720581
- ]
- ],
- [
- [
- 0.3113681375980377
- ]
- ],
- [
- [
- 0.5757303237915039
- ]
- ],
- [
- [
- 1.2341299057006836
- ]
- ],
- [
- [
- 1.601784348487854
- ]
- ],
- [
- [
- 0.5219462513923645
- ]
- ],
- [
- [
- 0.33875876665115356
- ]
- ],
- [
- [
- 0.050578899681568146
- ]
- ],
- [
- [
- 2.0802245140075684
- ]
- ],
- [
- [
- 1.1420536041259766
- ]
- ],
- [
- [
- 1.075726866722107
- ]
- ],
- [
- [
- 1.734298825263977
- ]
- ],
- [
- [
- 2.0852415561676025
- ]
- ],
- [
- [
- 0.6257139444351196
- ]
- ],
- [
- [
- 1.1631245613098145
- ]
- ],
- [
- [
- 1.2945271730422974
- ]
- ],
- [
- [
- 0.9096694588661194
- ]
- ],
- [
- [
- 1.050135612487793
- ]
- ],
- [
- [
- 1.426904559135437
- ]
- ],
- [
- [
- 0.35991209745407104
- ]
- ],
- [
- [
- 3.1416914463043213
- ]
- ],
- [
- [
- 0.6706457138061523
- ]
- ],
- [
- [
- 0.8949199914932251
- ]
- ],
- [
- [
- 3.5505244731903076
- ]
- ],
- [
- [
- 0.04852737486362457
- ]
- ],
- [
- [
- 1.5883333683013916
- ]
- ],
- [
- [
- 0.09250732511281967
- ]
- ],
- [
- [
- 0.13831092417240143
- ]
- ],
- [
- [
- 0.6254845857620239
- ]
- ],
- [
- [
- 0.1950441598892212
- ]
- ],
- [
- [
- 0.5862503051757812
- ]
- ],
- [
- [
- 1.5435783863067627
- ]
- ],
- [
- [
- 0.352345734834671
- ]
- ],
- [
- [
- 1.302511215209961
- ]
- ],
- [
- [
- 1.6769475936889648
- ]
- ],
- [
- [
- 1.2194676399230957
- ]
- ],
- [
- [
- 0.9258323907852173
- ]
- ],
- [
- [
- 2.0434765815734863
- ]
- ],
- [
- [
- 2.8570656776428223
- ]
- ],
- [
- [
- 3.3750908374786377
- ]
- ],
- [
- [
- 0.42254477739334106
- ]
- ],
- [
- [
- 1.005423665046692
- ]
- ],
- [
- [
- 2.5334784984588623
- ]
- ],
- [
- [
- 0.3163566589355469
- ]
- ],
- [
- [
- 2.5878453254699707
- ]
- ],
- [
- [
- 1.2459588050842285
- ]
- ],
- [
- [
- 1.480173110961914
- ]
- ],
- [
- [
- 0.5844075083732605
- ]
- ],
- [
- [
- 0.3688303828239441
- ]
- ],
- [
- [
- 1.0429799556732178
- ]
- ],
- [
- [
- 2.8884270191192627
- ]
- ],
- [
- [
- 1.1872423887252808
- ]
- ],
- [
- [
- 4.089621067047119
- ]
- ],
- [
- [
- 0.8776230812072754
- ]
- ],
- [
- [
- 0.3120655417442322
- ]
- ],
- [
- [
- 1.1831551790237427
- ]
- ],
- [
- [
- 1.9332242012023926
- ]
- ],
- [
- [
- 0.1799439936876297
- ]
- ],
- [
- [
- 0.8482400178909302
- ]
- ],
- [
- [
- 1.3786863088607788
- ]
- ],
- [
- [
- 0.7226794362068176
- ]
- ],
- [
- [
- 0.27977046370506287
- ]
- ],
- [
- [
- 0.19466280937194824
- ]
- ],
- [
- [
- 0.35736334323883057
- ]
- ],
- [
- [
- 0.3268308937549591
- ]
- ],
- [
- [
- 3.762769937515259
- ]
- ],
- [
- [
- 0.228885680437088
- ]
- ],
- [
- [
- 1.2176618576049805
- ]
- ],
- [
- [
- 3.3881049156188965
- ]
- ],
- [
- [
- 0.24068111181259155
- ]
- ],
- [
- [
- 0.6847283244132996
- ]
- ],
- [
- [
- 0.2524060904979706
- ]
- ],
- [
- [
- 0.398131787776947
- ]
- ],
- [
- [
- 0.20465317368507385
- ]
- ],
- [
- [
- 0.4917145073413849
- ]
- ],
- [
- [
- 0.3505645990371704
- ]
- ],
- [
- [
- 1.0827161073684692
- ]
- ],
- [
- [
- 1.8033350706100464
- ]
- ],
- [
- [
- 0.6004869937896729
- ]
- ],
- [
- [
- 0.15532727539539337
- ]
- ],
- [
- [
- 0.22444279491901398
- ]
- ],
- [
- [
- 0.20761904120445251
- ]
- ],
- [
- [
- 0.4164811372756958
- ]
- ],
- [
- [
- 0.382841020822525
- ]
- ],
- [
- [
- 2.1455297470092773
- ]
- ],
- [
- [
- 0.8624157309532166
- ]
- ],
- [
- [
- 0.749285876750946
- ]
- ],
- [
- [
- 0.2491694539785385
- ]
- ],
- [
- [
- 0.6658210754394531
- ]
- ],
- [
- [
- 2.662895917892456
- ]
- ],
- [
- [
- 0.4288746118545532
- ]
- ],
- [
- [
- 0.20544475317001343
- ]
- ],
- [
- [
- 1.1167126893997192
- ]
- ],
- [
- [
- 1.708616018295288
- ]
- ],
- [
- [
- 1.0029219388961792
- ]
- ],
- [
- [
- 0.016837656497955322
- ]
- ],
- [
- [
- 0.25708019733428955
- ]
- ],
- [
- [
- 3.179522752761841
- ]
- ],
- [
- [
- 4.612953186035156
- ]
- ],
- [
- [
- 2.6867494583129883
- ]
- ],
- [
- [
- 0.3332463204860687
- ]
- ],
- [
- [
- 1.5335837602615356
- ]
- ],
- [
- [
- 0.07772055268287659
- ]
- ],
- [
- [
- 0.8081841468811035
- ]
- ],
- [
- [
- 0.33587974309921265
- ]
- ],
- [
- [
- 0.7480055093765259
- ]
- ],
- [
- [
- 1.8612664937973022
- ]
- ],
- [
- [
- 3.1455628871917725
- ]
- ],
- [
- [
- 0.12958288192749023
- ]
- ],
- [
- [
- 1.5724000930786133
- ]
- ],
- [
- [
- 0.022964760661125183
- ]
- ],
- [
- [
- 0.26343175768852234
- ]
- ],
- [
- [
- 1.1250076293945312
- ]
- ],
- [
- [
- 1.5983117818832397
- ]
- ],
- [
- [
- 3.157162666320801
- ]
- ],
- [
- [
- 0.1599600613117218
- ]
- ],
- [
- [
- 1.3255661725997925
- ]
- ],
- [
- [
- 2.5481300354003906
- ]
- ],
- [
- [
- 0.15370804071426392
- ]
- ],
- [
- [
- 1.9511842727661133
- ]
- ],
- [
- [
- 1.5990785360336304
- ]
- ],
- [
- [
- 0.7816519737243652
- ]
- ],
- [
- [
- 1.376288890838623
- ]
- ],
- [
- [
- 1.4553333520889282
- ]
- ],
- [
- [
- 0.36333853006362915
- ]
- ],
- [
- [
- 0.6564513444900513
- ]
- ],
- [
- [
- 0.01345907524228096
- ]
- ],
- [
- [
- 0.3226126432418823
- ]
- ],
- [
- [
- 0.08250603079795837
- ]
- ],
- [
- [
- 3.3298046588897705
- ]
- ],
- [
- [
- 0.05263809859752655
- ]
- ],
- [
- [
- 0.6750518679618835
- ]
- ],
- [
- [
- 1.0306504964828491
- ]
- ],
- [
- [
- 1.7617932558059692
- ]
- ],
- [
- [
- 0.9400256276130676
- ]
- ],
- [
- [
- 0.3548118472099304
- ]
- ],
- [
- [
- 0.12973971664905548
- ]
- ],
- [
- [
- 2.9328689575195312
- ]
- ],
- [
- [
- 0.13189265131950378
- ]
- ],
- [
- [
- 0.9613168239593506
- ]
- ],
- [
- [
- 1.0261629819869995
- ]
- ],
- [
- [
- 0.2472521960735321
- ]
- ],
- [
- [
- 3.825265884399414
- ]
- ],
- [
- [
- 0.5504454374313354
- ]
- ],
- [
- [
- 0.21881264448165894
- ]
- ],
- [
- [
- 2.3278815746307373
- ]
- ],
- [
- [
- 0.5349262952804565
- ]
- ],
- [
- [
- 0.2663220167160034
- ]
- ],
- [
- [
- 0.4416412115097046
- ]
- ],
- [
- [
- 0.24860884249210358
- ]
- ],
- [
- [
- 0.6232591867446899
- ]
- ],
- [
- [
- 0.790571928024292
- ]
- ],
- [
- [
- 0.5023820400238037
- ]
- ],
- [
- [
- 0.9386041164398193
- ]
- ],
- [
- [
- 0.3727262020111084
- ]
- ],
- [
- [
- 0.1512642651796341
- ]
- ],
- [
- [
- 0.11407037824392319
- ]
- ],
- [
- [
- 0.11492156982421875
- ]
- ],
- [
- [
- 2.8412795066833496
- ]
- ],
- [
- [
- 0.4397403597831726
- ]
- ],
- [
- [
- 2.9233627319335938
- ]
- ],
- [
- [
- 0.5201243758201599
- ]
- ],
- [
- [
- 2.359025478363037
- ]
- ],
- [
- [
- 1.6392427682876587
- ]
- ],
- [
- [
- 1.719849705696106
- ]
- ],
- [
- [
- 0.480352520942688
- ]
- ],
- [
- [
- 0.03207767382264137
- ]
- ],
- [
- [
- 1.1153688430786133
- ]
- ],
- [
- [
- 0.2485523670911789
- ]
- ],
- [
- [
- 0.17323166131973267
- ]
- ],
- [
- [
- 0.23671579360961914
- ]
- ],
- [
- [
- 0.0949120968580246
- ]
- ],
- [
- [
- 1.5128140449523926
- ]
- ],
- [
- [
- 1.4948128461837769
- ]
- ],
- [
- [
- 0.9702630639076233
- ]
- ],
- [
- [
- 1.0132942199707031
- ]
- ],
- [
- [
- 0.2061237394809723
- ]
- ],
- [
- [
- 0.3878534734249115
- ]
- ],
- [
- [
- 1.2653225660324097
- ]
- ],
- [
- [
- 0.3911491334438324
- ]
- ],
- [
- [
- 0.3793220520019531
- ]
- ],
- [
- [
- 0.23424965143203735
- ]
- ],
- [
- [
- 0.6951673626899719
- ]
- ],
- [
- [
- 3.186579942703247
- ]
- ],
- [
- [
- 0.019822081550955772
- ]
- ],
- [
- [
- 0.5041691064834595
- ]
- ],
- [
- [
- 0.13974401354789734
- ]
- ],
- [
- [
- 1.8521013259887695
- ]
- ],
- [
- [
- 0.12698836624622345
- ]
- ],
- [
- [
- 1.4651237726211548
- ]
- ],
- [
- [
- 0.5320760011672974
- ]
- ],
- [
- [
- 0.5405462384223938
- ]
- ],
- [
- [
- 0.4980103373527527
- ]
- ],
- [
- [
- 0.42304739356040955
- ]
- ],
- [
- [
- 0.38044553995132446
- ]
- ],
- [
- [
- 0.9906283020973206
- ]
- ],
- [
- [
- 0.27817603945732117
- ]
- ],
- [
- [
- 0.5814056992530823
- ]
- ],
- [
- [
- 1.639274001121521
- ]
- ],
- [
- [
- 0.7875773906707764
- ]
- ],
- [
- [
- 0.19192776083946228
- ]
- ],
- [
- [
- 0.15522252023220062
- ]
- ],
- [
- [
- 0.5274178981781006
- ]
- ],
- [
- [
- 2.5247609615325928
- ]
- ],
- [
- [
- 1.1118053197860718
- ]
- ],
- [
- [
- 0.05900198966264725
- ]
- ],
- [
- [
- 2.5017220973968506
- ]
- ],
- [
- [
- 0.1065361499786377
- ]
- ],
- [
- [
- 0.15987741947174072
- ]
- ],
- [
- [
- 0.2580384612083435
- ]
- ],
- [
- [
- 1.055138349533081
- ]
- ],
- [
- [
- 0.618707537651062
- ]
- ],
- [
- [
- 0.7414822578430176
- ]
- ],
- [
- [
- 0.6279294490814209
- ]
- ],
- [
- [
- 0.8496895432472229
- ]
- ],
- [
- [
- 0.24727384746074677
- ]
- ],
- [
- [
- 1.5951634645462036
- ]
- ],
- [
- [
- 1.042862057685852
- ]
- ],
- [
- [
- 0.704903244972229
- ]
- ],
- [
- [
- 0.27965283393859863
- ]
- ],
- [
- [
- 1.5191212892532349
- ]
- ],
- [
- [
- 0.41987913846969604
- ]
- ],
- [
- [
- 0.4582858383655548
- ]
- ],
- [
- [
- 0.6691666841506958
- ]
- ],
- [
- [
- 0.8689113259315491
- ]
- ],
- [
- [
- 2.084643840789795
- ]
- ],
- [
- [
- 2.4734487533569336
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4517999589443207
- ]
- ],
- [
- [
- 0.08196807652711868
- ]
- ],
- [
- [
- 0.9460873007774353
- ]
- ],
- [
- [
- 0.2723830044269562
- ]
- ],
- [
- [
- 0.13743950426578522
- ]
- ],
- [
- [
- 3.130574941635132
- ]
- ],
- [
- [
- 0.4310667812824249
- ]
- ],
- [
- [
- 0.12830354273319244
- ]
- ],
- [
- [
- 1.9606094360351562
- ]
- ],
- [
- [
- 0.24035421013832092
- ]
- ],
- [
- [
- 1.4992471933364868
- ]
- ],
- [
- [
- 0.23137688636779785
- ]
- ],
- [
- [
- 0.46722009778022766
- ]
- ],
- [
- [
- 0.15317125618457794
- ]
- ],
- [
- [
- 0.3685867488384247
- ]
- ],
- [
- [
- 1.9630696773529053
- ]
- ],
- [
- [
- 0.18804368376731873
- ]
- ],
- [
- [
- 0.1304689198732376
- ]
- ],
- [
- [
- 2.449155569076538
- ]
- ],
- [
- [
- 0.25766026973724365
- ]
- ],
- [
- [
- 0.09465743601322174
- ]
- ],
- [
- [
- 1.0802327394485474
- ]
- ],
- [
- [
- 0.9389481544494629
- ]
- ],
- [
- [
- 0.1968006193637848
- ]
- ],
- [
- [
- 0.2370627224445343
- ]
- ],
- [
- [
- 0.6879824995994568
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.16768509149551392
- ]
- ],
- [
- [
- 0.5172956585884094
- ]
- ],
- [
- [
- 0.1962311565876007
- ]
- ],
- [
- [
- 0.3214837610721588
- ]
- ],
- [
- [
- 0.051313482224941254
- ]
- ],
- [
- [
- 0.7471544742584229
- ]
- ],
- [
- [
- 2.5812668800354004
- ]
- ],
- [
- [
- 0.7977283000946045
- ]
- ],
- [
- [
- 1.3264009952545166
- ]
- ],
- [
- [
- 0.35580208897590637
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4711136221885681
- ]
- ],
- [
- [
- 0.17178305983543396
- ]
- ],
- [
- [
- 0.03576904535293579
- ]
- ],
- [
- [
- 0.6394082307815552
- ]
- ],
- [
- [
- 0.41254013776779175
- ]
- ],
- [
- [
- 0.6647717356681824
- ]
- ],
- [
- [
- 0.2539892792701721
- ]
- ],
- [
- [
- 1.2049344778060913
- ]
- ],
- [
- [
- 0.3302428424358368
- ]
- ],
- [
- [
- 0.43594595789909363
- ]
- ],
- [
- [
- 1.2655794620513916
- ]
- ],
- [
- [
- 1.1168452501296997
- ]
- ],
- [
- [
- 0.47523075342178345
- ]
- ],
- [
- [
- 0.12447123229503632
- ]
- ],
- [
- [
- 1.8711804151535034
- ]
- ],
- [
- [
- 2.8239190578460693
- ]
- ],
- [
- [
- 0.07543065398931503
- ]
- ],
- [
- [
- 0.24029770493507385
- ]
- ],
- [
- [
- 0.5449439883232117
- ]
- ],
- [
- [
- 0.42997118830680847
- ]
- ],
- [
- [
- 1.6742677688598633
- ]
- ],
- [
- [
- 2.886808156967163
- ]
- ],
- [
- [
- 0.39053869247436523
- ]
- ],
- [
- [
- 0.24139404296875
- ]
- ],
- [
- [
- 0.6833280920982361
- ]
- ],
- [
- [
- 2.2958180904388428
- ]
- ],
- [
- [
- 0.31596100330352783
- ]
- ],
- [
- [
- 0.21106550097465515
- ]
- ],
- [
- [
- 0.5733708739280701
- ]
- ],
- [
- [
- 0.3688473403453827
- ]
- ],
- [
- [
- 0.08780741691589355
- ]
- ],
- [
- [
- 1.092307209968567
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.576860189437866
- ]
- ],
- [
- [
- 0.15088210999965668
- ]
- ],
- [
- [
- 3.912513017654419
- ]
- ],
- [
- [
- 0.29916900396347046
- ]
- ],
- [
- [
- 0.19853255152702332
- ]
- ],
- [
- [
- 0.4422658681869507
- ]
- ],
- [
- [
- 0.548188328742981
- ]
- ],
- [
- [
- 0.8649435639381409
- ]
- ],
- [
- [
- 0.6427949666976929
- ]
- ],
- [
- [
- 3.1316580772399902
- ]
- ],
- [
- [
- 1.433761715888977
- ]
- ],
- [
- [
- 0.12931090593338013
- ]
- ],
- [
- [
- 1.9398809671401978
- ]
- ],
- [
- [
- 4.05294942855835
- ]
- ],
- [
- [
- 2.187668800354004
- ]
- ],
- [
- [
- 1.3807063102722168
- ]
- ],
- [
- [
- 0.07069512456655502
- ]
- ],
- [
- [
- 0.5333026051521301
- ]
- ],
- [
- [
- 1.3621422052383423
- ]
- ],
- [
- [
- 0.4861108958721161
- ]
- ],
- [
- [
- 0.9452409744262695
- ]
- ],
- [
- [
- 0.8305760622024536
- ]
- ],
- [
- [
- 0.010155661031603813
- ]
- ],
- [
- [
- 0.28675147891044617
- ]
- ],
- [
- [
- 1.1522506475448608
- ]
- ],
- [
- [
- 0.4970459043979645
- ]
- ],
- [
- [
- 0.10154429078102112
- ]
- ],
- [
- [
- 0.7914350628852844
- ]
- ],
- [
- [
- 0.3350182771682739
- ]
- ],
- [
- [
- 0.4674781262874603
- ]
- ],
- [
- [
- 3.6641106605529785
- ]
- ],
- [
- [
- 0.8799232840538025
- ]
- ],
- [
- [
- 2.6382009983062744
- ]
- ],
- [
- [
- 1.413010597229004
- ]
- ],
- [
- [
- 0.9996560215950012
- ]
- ],
- [
- [
- 0.3117615282535553
- ]
- ],
- [
- [
- 0.34201183915138245
- ]
- ],
- [
- [
- 3.9518096446990967
- ]
- ],
- [
- [
- 0.4605253338813782
- ]
- ],
- [
- [
- 0.8877115249633789
- ]
- ],
- [
- [
- 0.7815142273902893
- ]
- ],
- [
- [
- 0.25208279490470886
- ]
- ],
- [
- [
- 0.6331107020378113
- ]
- ],
- [
- [
- 2.0390632152557373
- ]
- ],
- [
- [
- 1.5071048736572266
- ]
- ],
- [
- [
- 1.2546275854110718
- ]
- ],
- [
- [
- 0.22454392910003662
- ]
- ],
- [
- [
- 1.3437414169311523
- ]
- ],
- [
- [
- 1.0619252920150757
- ]
- ],
- [
- [
- 0.47671815752983093
- ]
- ],
- [
- [
- 0.7478371262550354
- ]
- ],
- [
- [
- 1.8252650499343872
- ]
- ],
- [
- [
- 0.2488350123167038
- ]
- ],
- [
- [
- 0.15771257877349854
- ]
- ],
- [
- [
- 0.9911783933639526
- ]
- ],
- [
- [
- 0.24817867577075958
- ]
- ],
- [
- [
- 1.022687554359436
- ]
- ],
- [
- [
- 0.18007099628448486
- ]
- ],
- [
- [
- 0.4699406027793884
- ]
- ],
- [
- [
- 0.07829847186803818
- ]
- ],
- [
- [
- 0.1375209242105484
- ]
- ],
- [
- [
- 1.1267400979995728
- ]
- ],
- [
- [
- 0.25459617376327515
- ]
- ],
- [
- [
- 0.46838539838790894
- ]
- ],
- [
- [
- 0.4432888925075531
- ]
- ],
- [
- [
- 1.8387075662612915
- ]
- ],
- [
- [
- 2.1671853065490723
- ]
- ],
- [
- [
- 0.5508925318717957
- ]
- ],
- [
- [
- 2.7433671951293945
- ]
- ],
- [
- [
- 0.3162236213684082
- ]
- ],
- [
- [
- 0.2432929426431656
- ]
- ],
- [
- [
- 2.2807464599609375
- ]
- ],
- [
- [
- 0.9489012360572815
- ]
- ],
- [
- [
- 0.1985066831111908
- ]
- ],
- [
- [
- 0.1264072060585022
- ]
- ],
- [
- [
- 0.1113193929195404
- ]
- ],
- [
- [
- 0.3523752689361572
- ]
- ],
- [
- [
- 0.8864730596542358
- ]
- ],
- [
- [
- 1.4832839965820312
- ]
- ],
- [
- [
- 0.39753958582878113
- ]
- ],
- [
- [
- 0.6020511984825134
- ]
- ],
- [
- [
- 0.7661126852035522
- ]
- ],
- [
- [
- 0.39289623498916626
- ]
- ],
- [
- [
- 2.9610466957092285
- ]
- ],
- [
- [
- 0.30757108330726624
- ]
- ],
- [
- [
- 0.14534655213356018
- ]
- ],
- [
- [
- 0.099125936627388
- ]
- ],
- [
- [
- 0.6019290089607239
- ]
- ],
- [
- [
- 0.6942517161369324
- ]
- ],
- [
- [
- 0.4140126705169678
- ]
- ],
- [
- [
- 0.9283492565155029
- ]
- ],
- [
- [
- 0.12529242038726807
- ]
- ],
- [
- [
- 0.7518778443336487
- ]
- ],
- [
- [
- 1.9881932735443115
- ]
- ],
- [
- [
- 0.2880171537399292
- ]
- ],
- [
- [
- 0.45761170983314514
- ]
- ],
- [
- [
- 0.28566473722457886
- ]
- ],
- [
- [
- 0.06155017018318176
- ]
- ],
- [
- [
- 3.2672600746154785
- ]
- ],
- [
- [
- 0.4006979465484619
- ]
- ],
- [
- [
- 1.9013217687606812
- ]
- ],
- [
- [
- 1.0338138341903687
- ]
- ],
- [
- [
- 1.4019486904144287
- ]
- ],
- [
- [
- 0.7108853459358215
- ]
- ],
- [
- [
- 0.01695970445871353
- ]
- ],
- [
- [
- 3.097231149673462
- ]
- ],
- [
- [
- 2.0930733680725098
- ]
- ],
- [
- [
- 0.3854275047779083
- ]
- ],
- [
- [
- 0.26192015409469604
- ]
- ],
- [
- [
- 0.11095831543207169
- ]
- ],
- [
- [
- 0.588157594203949
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.8224284648895264
- ]
- ],
- [
- [
- 0.30438151955604553
- ]
- ],
- [
- [
- 0.6193899512290955
- ]
- ],
- [
- [
- 0.3569073975086212
- ]
- ],
- [
- [
- 2.054826021194458
- ]
- ],
- [
- [
- 0.26763248443603516
- ]
- ],
- [
- [
- 1.1294132471084595
- ]
- ],
- [
- [
- 0.16859398782253265
- ]
- ],
- [
- [
- 0.0571250282227993
- ]
- ],
- [
- [
- 0.8953000903129578
- ]
- ],
- [
- [
- 0.5413304567337036
- ]
- ],
- [
- [
- 2.0870659351348877
- ]
- ],
- [
- [
- 0.18710507452487946
- ]
- ],
- [
- [
- 0.7659022808074951
- ]
- ],
- [
- [
- 0.01826588064432144
- ]
- ],
- [
- [
- 0.41803598403930664
- ]
- ],
- [
- [
- 1.4149061441421509
- ]
- ],
- [
- [
- 3.171320915222168
- ]
- ],
- [
- [
- 0.7251479029655457
- ]
- ],
- [
- [
- 1.520125389099121
- ]
- ],
- [
- [
- 2.172609806060791
- ]
- ],
- [
- [
- 0.7546336650848389
- ]
- ],
- [
- [
- 0.07923407852649689
- ]
- ],
- [
- [
- 0.572341799736023
- ]
- ],
- [
- [
- 1.7284265756607056
- ]
- ],
- [
- [
- 0.1736731231212616
- ]
- ],
- [
- [
- 1.0145306587219238
- ]
- ],
- [
- [
- 2.550673246383667
- ]
- ],
- [
- [
- 0.41022181510925293
- ]
- ],
- [
- [
- 0.465509295463562
- ]
- ],
- [
- [
- 2.3419556617736816
- ]
- ],
- [
- [
- 1.1978189945220947
- ]
- ],
- [
- [
- 2.9787962436676025
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.006891258060932159
- ]
- ],
- [
- [
- 0.3504652976989746
- ]
- ],
- [
- [
- 1.1684147119522095
- ]
- ],
- [
- [
- 1.992400050163269
- ]
- ],
- [
- [
- 2.970536231994629
- ]
- ],
- [
- [
- 0.6870988011360168
- ]
- ],
- [
- [
- 0.7613338232040405
- ]
- ],
- [
- [
- 0.7910606861114502
- ]
- ],
- [
- [
- 0.37382104992866516
- ]
- ],
- [
- [
- 0.3668709993362427
- ]
- ],
- [
- [
- 0.8176097869873047
- ]
- ],
- [
- [
- 1.9830882549285889
- ]
- ],
- [
- [
- 1.02752685546875
- ]
- ],
- [
- [
- 0.42978087067604065
- ]
- ],
- [
- [
- 0.19562435150146484
- ]
- ],
- [
- [
- 0.8520280718803406
- ]
- ],
- [
- [
- 1.0888880491256714
- ]
- ],
- [
- [
- 0.789987325668335
- ]
- ],
- [
- [
- 0.2167913019657135
- ]
- ],
- [
- [
- 0.4350156784057617
- ]
- ],
- [
- [
- 0.5484710931777954
- ]
- ],
- [
- [
- 1.2675206661224365
- ]
- ],
- [
- [
- 2.112257719039917
- ]
- ],
- [
- [
- 1.0200294256210327
- ]
- ],
- [
- [
- 0.19183096289634705
- ]
- ],
- [
- [
- 0.8594831228256226
- ]
- ],
- [
- [
- 0.685897946357727
- ]
- ],
- [
- [
- 0.19769851863384247
- ]
- ],
- [
- [
- 1.1640785932540894
- ]
- ],
- [
- [
- 0.2672795355319977
- ]
- ],
- [
- [
- 0.23542150855064392
- ]
- ],
- [
- [
- 1.0620688199996948
- ]
- ],
- [
- [
- 0.29872292280197144
- ]
- ],
- [
- [
- 2.1032791137695312
- ]
- ],
- [
- [
- 0.25303730368614197
- ]
- ],
- [
- [
- 0.5038049817085266
- ]
- ],
- [
- [
- 3.227356433868408
- ]
- ],
- [
- [
- 1.6912593841552734
- ]
- ],
- [
- [
- 0.518845796585083
- ]
- ],
- [
- [
- 0.4429967403411865
- ]
- ],
- [
- [
- 0.8874638676643372
- ]
- ],
- [
- [
- 0.12695012986660004
- ]
- ],
- [
- [
- 1.8838740587234497
- ]
- ],
- [
- [
- 0.47099778056144714
- ]
- ],
- [
- [
- 0.8247132301330566
- ]
- ],
- [
- [
- 0.4914819598197937
- ]
- ],
- [
- [
- 1.0608625411987305
- ]
- ],
- [
- [
- 0.1989663690328598
- ]
- ],
- [
- [
- 0.31627532839775085
- ]
- ],
- [
- [
- 1.2405040264129639
- ]
- ],
- [
- [
- 0.354045033454895
- ]
- ],
- [
- [
- 0.2468685805797577
- ]
- ],
- [
- [
- 2.6733436584472656
- ]
- ],
- [
- [
- 3.3597323894500732
- ]
- ],
- [
- [
- 0.9949195981025696
- ]
- ],
- [
- [
- 1.389163613319397
- ]
- ],
- [
- [
- 1.0155315399169922
- ]
- ],
- [
- [
- 1.9318660497665405
- ]
- ],
- [
- [
- 0.2726866900920868
- ]
- ],
- [
- [
- 0.3411402702331543
- ]
- ],
- [
- [
- 0.631507396697998
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6200932860374451
- ]
- ],
- [
- [
- 0.6708743572235107
- ]
- ],
- [
- [
- 0.9056058526039124
- ]
- ],
- [
- [
- 0.34877490997314453
- ]
- ],
- [
- [
- 0.9262478947639465
- ]
- ],
- [
- [
- 3.5140304565429688
- ]
- ],
- [
- [
- 0.9742116928100586
- ]
- ],
- [
- [
- 1.5942798852920532
- ]
- ],
- [
- [
- 0.08980687707662582
- ]
- ],
- [
- [
- 0.26236963272094727
- ]
- ],
- [
- [
- 0.6267581582069397
- ]
- ],
- [
- [
- 3.6726861000061035
- ]
- ],
- [
- [
- 0.2584107518196106
- ]
- ],
- [
- [
- 0.03501589596271515
- ]
- ],
- [
- [
- 1.176146388053894
- ]
- ],
- [
- [
- 1.8571066856384277
- ]
- ],
- [
- [
- 2.7335164546966553
- ]
- ],
- [
- [
- 2.2514500617980957
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6599306464195251
- ]
- ],
- [
- [
- 1.9407522678375244
- ]
- ],
- [
- [
- 0.11462447047233582
- ]
- ],
- [
- [
- 1.4206876754760742
- ]
- ],
- [
- [
- 0.7602402567863464
- ]
- ],
- [
- [
- 0.9752533435821533
- ]
- ],
- [
- [
- 0.7615475654602051
- ]
- ],
- [
- [
- 0.15399198234081268
- ]
- ],
- [
- [
- 0.4285737872123718
- ]
- ],
- [
- [
- 0.3920394778251648
- ]
- ],
- [
- [
- 1.7809213399887085
- ]
- ],
- [
- [
- 0.928821325302124
- ]
- ],
- [
- [
- 0.25421595573425293
- ]
- ],
- [
- [
- 0.04393407329916954
- ]
- ],
- [
- [
- 0.9122532606124878
- ]
- ],
- [
- [
- 1.0994757413864136
- ]
- ],
- [
- [
- 0.3403042256832123
- ]
- ],
- [
- [
- 2.4500293731689453
- ]
- ],
- [
- [
- 1.046662449836731
- ]
- ],
- [
- [
- 0.1721215546131134
- ]
- ],
- [
- [
- 1.0659432411193848
- ]
- ],
- [
- [
- 0.8734276294708252
- ]
- ],
- [
- [
- 1.5350754261016846
- ]
- ],
- [
- [
- 2.25423526763916
- ]
- ],
- [
- [
- 0.53092360496521
- ]
- ],
- [
- [
- 0.6627208590507507
- ]
- ],
- [
- [
- 0.08284255862236023
- ]
- ],
- [
- [
- 0.2624017894268036
- ]
- ],
- [
- [
- 0.6140393614768982
- ]
- ],
- [
- [
- 1.5326836109161377
- ]
- ],
- [
- [
- 0.2974306643009186
- ]
- ],
- [
- [
- 1.5875822305679321
- ]
- ],
- [
- [
- 0.3019329905509949
- ]
- ],
- [
- [
- 0.2006557434797287
- ]
- ],
- [
- [
- 0.8874416947364807
- ]
- ],
- [
- [
- 1.2168705463409424
- ]
- ],
- [
- [
- 0.06004560738801956
- ]
- ],
- [
- [
- 0.6763111352920532
- ]
- ],
- [
- [
- 0.46222424507141113
- ]
- ],
- [
- [
- 0.7485265135765076
- ]
- ],
- [
- [
- 1.236164927482605
- ]
- ],
- [
- [
- 1.064233660697937
- ]
- ],
- [
- [
- 0.6722064018249512
- ]
- ],
- [
- [
- 0.7940285205841064
- ]
- ],
- [
- [
- 2.546928644180298
- ]
- ],
- [
- [
- 0.7766149640083313
- ]
- ],
- [
- [
- 0.37511277198791504
- ]
- ],
- [
- [
- 0.5677616596221924
- ]
- ],
- [
- [
- 0.43750375509262085
- ]
- ],
- [
- [
- 0.420329213142395
- ]
- ],
- [
- [
- 0.831684947013855
- ]
- ],
- [
- [
- 0.22054709494113922
- ]
- ],
- [
- [
- 0.3992350995540619
- ]
- ],
- [
- [
- 0.953109085559845
- ]
- ],
- [
- [
- 0.5773082375526428
- ]
- ],
- [
- [
- 1.8532160520553589
- ]
- ],
- [
- [
- 1.287205696105957
- ]
- ],
- [
- [
- 0.4125060737133026
- ]
- ],
- [
- [
- 2.042003631591797
- ]
- ],
- [
- [
- 1.6668339967727661
- ]
- ],
- [
- [
- 2.459838390350342
- ]
- ],
- [
- [
- 1.7437703609466553
- ]
- ],
- [
- [
- 0.5709787607192993
- ]
- ],
- [
- [
- 0.053764887154102325
- ]
- ],
- [
- [
- 0.2736412286758423
- ]
- ],
- [
- [
- 0.1683187335729599
- ]
- ],
- [
- [
- 0.5134045481681824
- ]
- ],
- [
- [
- 0.35631194710731506
- ]
- ],
- [
- [
- 0.23725326359272003
- ]
- ],
- [
- [
- 1.798155426979065
- ]
- ],
- [
- [
- 1.8057043552398682
- ]
- ],
- [
- [
- 0.14024057984352112
- ]
- ],
- [
- [
- 1.1835651397705078
- ]
- ],
- [
- [
- 0.635667622089386
- ]
- ],
- [
- [
- 0.28228601813316345
- ]
- ],
- [
- [
- 2.0788357257843018
- ]
- ],
- [
- [
- 0.0315178744494915
- ]
- ],
- [
- [
- 0.535269021987915
- ]
- ],
- [
- [
- 0.08748050779104233
- ]
- ],
- [
- [
- 0.17178888618946075
- ]
- ],
- [
- [
- 0.007095592096447945
- ]
- ],
- [
- [
- 0.8353219032287598
- ]
- ],
- [
- [
- 0.9973188638687134
- ]
- ],
- [
- [
- 2.1930408477783203
- ]
- ],
- [
- [
- 0.2758769392967224
- ]
- ],
- [
- [
- 2.4576992988586426
- ]
- ],
- [
- [
- 0.8402591943740845
- ]
- ],
- [
- [
- 1.0766112804412842
- ]
- ],
- [
- [
- 0.4690767228603363
- ]
- ],
- [
- [
- 0.013138867914676666
- ]
- ],
- [
- [
- 0.3555575907230377
- ]
- ],
- [
- [
- 1.018609881401062
- ]
- ],
- [
- [
- 2.4640824794769287
- ]
- ],
- [
- [
- 1.1884548664093018
- ]
- ],
- [
- [
- 0.4316183924674988
- ]
- ],
- [
- [
- 0.19811169803142548
- ]
- ],
- [
- [
- 0.9771339297294617
- ]
- ],
- [
- [
- 0.3265186548233032
- ]
- ],
- [
- [
- 0.20004615187644958
- ]
- ],
- [
- [
- 1.5940569639205933
- ]
- ],
- [
- [
- 1.918346643447876
- ]
- ],
- [
- [
- 0.8789114356040955
- ]
- ],
- [
- [
- 0.13265091180801392
- ]
- ],
- [
- [
- 1.8622559309005737
- ]
- ],
- [
- [
- 0.35052233934402466
- ]
- ],
- [
- [
- 2.1456239223480225
- ]
- ],
- [
- [
- 0.40151679515838623
- ]
- ],
- [
- [
- 1.3585482835769653
- ]
- ],
- [
- [
- 2.277024507522583
- ]
- ],
- [
- [
- 0.18291974067687988
- ]
- ],
- [
- [
- 0.409784734249115
- ]
- ],
- [
- [
- 0.2567535638809204
- ]
- ],
- [
- [
- 0.9888108372688293
- ]
- ],
- [
- [
- 0.375365674495697
- ]
- ],
- [
- [
- 0.5999814867973328
- ]
- ],
- [
- [
- 0.18992432951927185
- ]
- ],
- [
- [
- 0.30712053179740906
- ]
- ],
- [
- [
- 0.11639229208230972
- ]
- ],
- [
- [
- 0.18632936477661133
- ]
- ],
- [
- [
- 1.0420581102371216
- ]
- ],
- [
- [
- 0.6613099575042725
- ]
- ],
- [
- [
- 0.5363647937774658
- ]
- ],
- [
- [
- 1.8672597408294678
- ]
- ],
- [
- [
- 0.6508169174194336
- ]
- ],
- [
- [
- 0.8563182353973389
- ]
- ],
- [
- [
- 3.498908042907715
- ]
- ],
- [
- [
- 0.6693678498268127
- ]
- ],
- [
- [
- 0.3513442277908325
- ]
- ],
- [
- [
- 0.10187851637601852
- ]
- ],
- [
- [
- 0.37325066328048706
- ]
- ],
- [
- [
- 0.6882538795471191
- ]
- ],
- [
- [
- 0.33884671330451965
- ]
- ],
- [
- [
- 0.3059094548225403
- ]
- ],
- [
- [
- 2.5319080352783203
- ]
- ],
- [
- [
- 0.20656241476535797
- ]
- ],
- [
- [
- 0.29662075638771057
- ]
- ],
- [
- [
- 2.1346864700317383
- ]
- ],
- [
- [
- 1.2929762601852417
- ]
- ],
- [
- [
- 2.562317371368408
- ]
- ],
- [
- [
- 0.1443614363670349
- ]
- ],
- [
- [
- 0.23444576561450958
- ]
- ],
- [
- [
- 0.45350968837738037
- ]
- ],
- [
- [
- 0.8187160491943359
- ]
- ],
- [
- [
- 0.12519526481628418
- ]
- ],
- [
- [
- 0.6415349841117859
- ]
- ],
- [
- [
- 1.769593358039856
- ]
- ],
- [
- [
- 0.8846297264099121
- ]
- ],
- [
- [
- 0.1707867980003357
- ]
- ],
- [
- [
- 3.034575939178467
- ]
- ],
- [
- [
- 2.2531607151031494
- ]
- ],
- [
- [
- 1.5545645952224731
- ]
- ],
- [
- [
- 0.11355830729007721
- ]
- ],
- [
- [
- 0.3314897418022156
- ]
- ],
- [
- [
- 0.143313467502594
- ]
- ],
- [
- [
- 0.18954086303710938
- ]
- ],
- [
- [
- 0.6025198698043823
- ]
- ],
- [
- [
- 2.2350406646728516
- ]
- ],
- [
- [
- 0.3675277829170227
- ]
- ],
- [
- [
- 0.4463058114051819
- ]
- ],
- [
- [
- 1.3486888408660889
- ]
- ],
- [
- [
- 1.804373025894165
- ]
- ],
- [
- [
- 0.29487448930740356
- ]
- ],
- [
- [
- 1.8770968914031982
- ]
- ],
- [
- [
- 0.2870080769062042
- ]
- ],
- [
- [
- 1.6196857690811157
- ]
- ],
- [
- [
- 0.25660282373428345
- ]
- ],
- [
- [
- 1.9059032201766968
- ]
- ],
- [
- [
- 2.0749599933624268
- ]
- ],
- [
- [
- 1.5797783136367798
- ]
- ],
- [
- [
- 0.14979635179042816
- ]
- ],
- [
- [
- 0.5285957455635071
- ]
- ],
- [
- [
- 0.463131308555603
- ]
- ],
- [
- [
- 0.8777257204055786
- ]
- ],
- [
- [
- 0.2390299141407013
- ]
- ],
- [
- [
- 0.0796513706445694
- ]
- ],
- [
- [
- 1.1998260021209717
- ]
- ],
- [
- [
- 1.6661242246627808
- ]
- ],
- [
- [
- 0.4347054064273834
- ]
- ],
- [
- [
- 0.4623491168022156
- ]
- ],
- [
- [
- 0.22423215210437775
- ]
- ],
- [
- [
- 0.5437999367713928
- ]
- ],
- [
- [
- 0.6045353412628174
- ]
- ],
- [
- [
- 0.31801867485046387
- ]
- ],
- [
- [
- 0.5867706537246704
- ]
- ],
- [
- [
- 0.23495838046073914
- ]
- ],
- [
- [
- 0.9042160511016846
- ]
- ],
- [
- [
- 0.2140394151210785
- ]
- ],
- [
- [
- 3.369386911392212
- ]
- ],
- [
- [
- 0.2542293965816498
- ]
- ],
- [
- [
- 0.007934130728244781
- ]
- ],
- [
- [
- 2.9057459831237793
- ]
- ],
- [
- [
- 0.222044438123703
- ]
- ],
- [
- [
- 0.2552059590816498
- ]
- ],
- [
- [
- 1.1768323183059692
- ]
- ],
- [
- [
- 0.6773493885993958
- ]
- ],
- [
- [
- 0.31371286511421204
- ]
- ],
- [
- [
- 1.2494761943817139
- ]
- ],
- [
- [
- 1.9027637243270874
- ]
- ],
- [
- [
- 0.8802347779273987
- ]
- ],
- [
- [
- 1.8253333568572998
- ]
- ],
- [
- [
- 0.5260353088378906
- ]
- ],
- [
- [
- 3.411710500717163
- ]
- ],
- [
- [
- 1.30806303024292
- ]
- ],
- [
- [
- 0.2262634038925171
- ]
- ],
- [
- [
- 0.21223285794258118
- ]
- ],
- [
- [
- 0.27782124280929565
- ]
- ],
- [
- [
- 0.16737981140613556
- ]
- ],
- [
- [
- 0.4665883779525757
- ]
- ],
- [
- [
- 0.21249543130397797
- ]
- ],
- [
- [
- 1.1317440271377563
- ]
- ],
- [
- [
- 0.4317481517791748
- ]
- ],
- [
- [
- 0.7632531523704529
- ]
- ],
- [
- [
- 0.4573363661766052
- ]
- ],
- [
- [
- 0.42437416315078735
- ]
- ],
- [
- [
- 0.32417845726013184
- ]
- ],
- [
- [
- 0.2859601676464081
- ]
- ],
- [
- [
- 0.34883514046669006
- ]
- ],
- [
- [
- 0.224381685256958
- ]
- ],
- [
- [
- 0.4749956429004669
- ]
- ],
- [
- [
- 0.6735332012176514
- ]
- ],
- [
- [
- 1.2322971820831299
- ]
- ],
- [
- [
- 0.1579444408416748
- ]
- ],
- [
- [
- 0.8631299138069153
- ]
- ],
- [
- [
- 1.8860307931900024
- ]
- ],
- [
- [
- 0.8160963654518127
- ]
- ],
- [
- [
- 1.0552667379379272
- ]
- ],
- [
- [
- 0.225094735622406
- ]
- ],
- [
- [
- 0.7613537311553955
- ]
- ],
- [
- [
- 0.9347494840621948
- ]
- ],
- [
- [
- 1.811124324798584
- ]
- ],
- [
- [
- 0.2988784909248352
- ]
- ],
- [
- [
- 2.091519594192505
- ]
- ],
- [
- [
- 3.0501251220703125
- ]
- ],
- [
- [
- 0.4990011155605316
- ]
- ],
- [
- [
- 0.1576162874698639
- ]
- ],
- [
- [
- 0.02615368738770485
- ]
- ],
- [
- [
- 1.4646739959716797
- ]
- ],
- [
- [
- 2.273045063018799
- ]
- ],
- [
- [
- 0.582167387008667
- ]
- ],
- [
- [
- 0.33604156970977783
- ]
- ],
- [
- [
- 0.3452654480934143
- ]
- ],
- [
- [
- 1.3738120794296265
- ]
- ],
- [
- [
- 0.11839733272790909
- ]
- ],
- [
- [
- 0.3757559359073639
- ]
- ],
- [
- [
- 1.5804228782653809
- ]
- ],
- [
- [
- 1.0181833505630493
- ]
- ],
- [
- [
- 0.3670628070831299
- ]
- ],
- [
- [
- 0.8883941173553467
- ]
- ],
- [
- [
- 3.1132476329803467
- ]
- ],
- [
- [
- 0.7584757208824158
- ]
- ],
- [
- [
- 0.6042746901512146
- ]
- ],
- [
- [
- 0.4193151593208313
- ]
- ],
- [
- [
- 0.5118738412857056
- ]
- ],
- [
- [
- 0.6953400373458862
- ]
- ],
- [
- [
- 0.494008332490921
- ]
- ],
- [
- [
- 0.719170868396759
- ]
- ],
- [
- [
- 2.006342649459839
- ]
- ],
- [
- [
- 0.14401209354400635
- ]
- ],
- [
- [
- 2.975209951400757
- ]
- ],
- [
- [
- 1.0541809797286987
- ]
- ],
- [
- [
- 0.026578687131404877
- ]
- ],
- [
- [
- 0.4577387273311615
- ]
- ],
- [
- [
- 1.466444730758667
- ]
- ],
- [
- [
- 0.3611409664154053
- ]
- ],
- [
- [
- 0.2552192211151123
- ]
- ],
- [
- [
- 0.42071089148521423
- ]
- ],
- [
- [
- 2.107797145843506
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5355910658836365
- ]
- ],
- [
- [
- 0.27668052911758423
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.6890372633934021
- ]
- ],
- [
- [
- 1.3435431718826294
- ]
- ],
- [
- [
- 0.13218650221824646
- ]
- ],
- [
- [
- 0.14674481749534607
- ]
- ],
- [
- [
- 0.6671472787857056
- ]
- ],
- [
- [
- 0.6240856051445007
- ]
- ],
- [
- [
- 0.25520655512809753
- ]
- ],
- [
- [
- 2.951606273651123
- ]
- ],
- [
- [
- 0.05808132141828537
- ]
- ],
- [
- [
- 3.35361385345459
- ]
- ],
- [
- [
- 0.1292233169078827
- ]
- ],
- [
- [
- 0.29123613238334656
- ]
- ],
- [
- [
- 0.6384915709495544
- ]
- ],
- [
- [
- 1.7629101276397705
- ]
- ],
- [
- [
- 0.39274996519088745
- ]
- ],
- [
- [
- 2.3678677082061768
- ]
- ],
- [
- [
- 2.4024100303649902
- ]
- ],
- [
- [
- 1.2251887321472168
- ]
- ],
- [
- [
- 1.964890718460083
- ]
- ],
- [
- [
- 0.3629840910434723
- ]
- ],
- [
- [
- 0.21316111087799072
- ]
- ],
- [
- [
- 0.5419773459434509
- ]
- ],
- [
- [
- 1.2005208730697632
- ]
- ],
- [
- [
- 0.31449344754219055
- ]
- ],
- [
- [
- 0.3204787075519562
- ]
- ],
- [
- [
- 2.618242025375366
- ]
- ],
- [
- [
- 0.434754878282547
- ]
- ],
- [
- [
- 0.8176811337471008
- ]
- ],
- [
- [
- 0.3114202916622162
- ]
- ],
- [
- [
- 0.46807095408439636
- ]
- ],
- [
- [
- 0.17551714181900024
- ]
- ],
- [
- [
- 2.5411782264709473
- ]
- ],
- [
- [
- 0.09566855430603027
- ]
- ],
- [
- [
- 3.4027750492095947
- ]
- ],
- [
- [
- 0.13355307281017303
- ]
- ],
- [
- [
- 1.2939131259918213
- ]
- ],
- [
- [
- 0.46674126386642456
- ]
- ],
- [
- [
- 0.1447637975215912
- ]
- ],
- [
- [
- 3.1075546741485596
- ]
- ],
- [
- [
- 0.4434696137905121
- ]
- ],
- [
- [
- 0.45143556594848633
- ]
- ],
- [
- [
- 0.5719121098518372
- ]
- ],
- [
- [
- 0.4572232663631439
- ]
- ],
- [
- [
- 0.20237615704536438
- ]
- ],
- [
- [
- 1.676417350769043
- ]
- ],
- [
- [
- 1.1733919382095337
- ]
- ],
- [
- [
- 0.32187986373901367
- ]
- ],
- [
- [
- 0.2043502926826477
- ]
- ],
- [
- [
- 0.21682889759540558
- ]
- ],
- [
- [
- 0.4633900225162506
- ]
- ],
- [
- [
- 0.685371994972229
- ]
- ],
- [
- [
- 0.5238751769065857
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.6579866409301758
- ]
- ],
- [
- [
- 0.2791018784046173
- ]
- ],
- [
- [
- 2.303579807281494
- ]
- ],
- [
- [
- 2.1041007041931152
- ]
- ],
- [
- [
- 1.7133746147155762
- ]
- ],
- [
- [
- 0.7792698740959167
- ]
- ],
- [
- [
- 1.858337163925171
- ]
- ],
- [
- [
- 0.7583179473876953
- ]
- ],
- [
- [
- 0.32600539922714233
- ]
- ],
- [
- [
- 2.63653826713562
- ]
- ],
- [
- [
- 1.1009479761123657
- ]
- ],
- [
- [
- 0.9262980818748474
- ]
- ],
- [
- [
- 0.10933641344308853
- ]
- ],
- [
- [
- 0.7514172792434692
- ]
- ],
- [
- [
- 0.14768865704536438
- ]
- ],
- [
- [
- 0.8276479840278625
- ]
- ],
- [
- [
- 0.3253172039985657
- ]
- ],
- [
- [
- 0.7094538807868958
- ]
- ],
- [
- [
- 0.25036901235580444
- ]
- ],
- [
- [
- 1.9982759952545166
- ]
- ],
- [
- [
- 0.004518091678619385
- ]
- ],
- [
- [
- 0.16802620887756348
- ]
- ],
- [
- [
- 2.523383140563965
- ]
- ],
- [
- [
- 0.5820430517196655
- ]
- ],
- [
- [
- 0.7572194933891296
- ]
- ],
- [
- [
- 0.8516369462013245
- ]
- ],
- [
- [
- 0.7400627732276917
- ]
- ],
- [
- [
- 1.635909914970398
- ]
- ],
- [
- [
- 0.3940899074077606
- ]
- ],
- [
- [
- 1.4339452981948853
- ]
- ],
- [
- [
- 2.1268420219421387
- ]
- ],
- [
- [
- 0.45188069343566895
- ]
- ],
- [
- [
- 1.4422544240951538
- ]
- ],
- [
- [
- 0.33674949407577515
- ]
- ],
- [
- [
- 0.6500612497329712
- ]
- ],
- [
- [
- 0.6660565733909607
- ]
- ],
- [
- [
- 0.25603264570236206
- ]
- ],
- [
- [
- 0.7046838998794556
- ]
- ],
- [
- [
- 1.00862717628479
- ]
- ],
- [
- [
- 1.4118386507034302
- ]
- ],
- [
- [
- 1.7187572717666626
- ]
- ],
- [
- [
- 0.09615404903888702
- ]
- ],
- [
- [
- 0.34220418334007263
- ]
- ],
- [
- [
- 2.592647075653076
- ]
- ],
- [
- [
- 2.877743721008301
- ]
- ],
- [
- [
- 0.6307385563850403
- ]
- ],
- [
- [
- 0.1700681447982788
- ]
- ],
- [
- [
- 0.3765407204627991
- ]
- ],
- [
- [
- 0.08814126253128052
- ]
- ],
- [
- [
- 1.613324522972107
- ]
- ],
- [
- [
- 0.09122724831104279
- ]
- ],
- [
- [
- 0.382555216550827
- ]
- ],
- [
- [
- 1.1222103834152222
- ]
- ],
- [
- [
- 3.0133981704711914
- ]
- ],
- [
- [
- 0.44347745180130005
- ]
- ],
- [
- [
- 2.134984016418457
- ]
- ],
- [
- [
- 2.3750696182250977
- ]
- ],
- [
- [
- 0.6710714101791382
- ]
- ],
- [
- [
- 1.1722934246063232
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.9490990042686462
- ]
- ],
- [
- [
- 0.07232080399990082
- ]
- ],
- [
- [
- 1.1527609825134277
- ]
- ],
- [
- [
- 0.9251473546028137
- ]
- ],
- [
- [
- 0.9388145208358765
- ]
- ],
- [
- [
- 1.958827257156372
- ]
- ],
- [
- [
- 0.08905629813671112
- ]
- ],
- [
- [
- 0.24860680103302002
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1883044242858887
- ]
- ],
- [
- [
- 1.4882102012634277
- ]
- ],
- [
- [
- 0.2100875824689865
- ]
- ],
- [
- [
- 0.13196875154972076
- ]
- ],
- [
- [
- 1.9823741912841797
- ]
- ],
- [
- [
- 0.15177759528160095
- ]
- ],
- [
- [
- 0.17180219292640686
- ]
- ],
- [
- [
- 0.04008480906486511
- ]
- ],
- [
- [
- 0.8632665276527405
- ]
- ],
- [
- [
- 0.46615850925445557
- ]
- ],
- [
- [
- 0.7832217216491699
- ]
- ],
- [
- [
- 0.5351962447166443
- ]
- ],
- [
- [
- 0.2698638141155243
- ]
- ],
- [
- [
- 0.9963015913963318
- ]
- ],
- [
- [
- 0.12687784433364868
- ]
- ],
- [
- [
- 1.316404938697815
- ]
- ],
- [
- [
- 0.20826561748981476
- ]
- ],
- [
- [
- 0.12752118706703186
- ]
- ],
- [
- [
- 0.8760324716567993
- ]
- ],
- [
- [
- 2.447824478149414
- ]
- ],
- [
- [
- 0.06554573029279709
- ]
- ],
- [
- [
- 1.2965893745422363
- ]
- ],
- [
- [
- 0.7248235940933228
- ]
- ],
- [
- [
- 2.32321834564209
- ]
- ],
- [
- [
- 0.17318904399871826
- ]
- ],
- [
- [
- 2.848159074783325
- ]
- ],
- [
- [
- 0.7140870690345764
- ]
- ],
- [
- [
- 1.2318401336669922
- ]
- ],
- [
- [
- 0.7046616077423096
- ]
- ],
- [
- [
- 0.11044658720493317
- ]
- ],
- [
- [
- 1.2255412340164185
- ]
- ],
- [
- [
- 1.9169889688491821
- ]
- ],
- [
- [
- 0.24806451797485352
- ]
- ],
- [
- [
- 1.7412306070327759
- ]
- ],
- [
- [
- 0.07071489840745926
- ]
- ],
- [
- [
- 0.03516477346420288
- ]
- ],
- [
- [
- 0.670748233795166
- ]
- ],
- [
- [
- 1.503494143486023
- ]
- ],
- [
- [
- 1.0379366874694824
- ]
- ],
- [
- [
- 0.6785505414009094
- ]
- ],
- [
- [
- 0.18369144201278687
- ]
- ],
- [
- [
- 0.869205117225647
- ]
- ],
- [
- [
- 0.833336591720581
- ]
- ],
- [
- [
- 0.3113681375980377
- ]
- ],
- [
- [
- 0.5757303237915039
- ]
- ],
- [
- [
- 1.2341299057006836
- ]
- ],
- [
- [
- 1.601784348487854
- ]
- ],
- [
- [
- 0.5219462513923645
- ]
- ],
- [
- [
- 0.33875876665115356
- ]
- ],
- [
- [
- 0.050578899681568146
- ]
- ],
- [
- [
- 2.0802245140075684
- ]
- ],
- [
- [
- 1.1420536041259766
- ]
- ],
- [
- [
- 1.075726866722107
- ]
- ],
- [
- [
- 1.734298825263977
- ]
- ],
- [
- [
- 2.0852415561676025
- ]
- ],
- [
- [
- 0.6257139444351196
- ]
- ],
- [
- [
- 1.1631245613098145
- ]
- ],
- [
- [
- 1.2945271730422974
- ]
- ],
- [
- [
- 0.9096694588661194
- ]
- ],
- [
- [
- 1.050135612487793
- ]
- ],
- [
- [
- 1.426904559135437
- ]
- ],
- [
- [
- 0.35991209745407104
- ]
- ],
- [
- [
- 3.1416914463043213
- ]
- ],
- [
- [
- 0.6706457138061523
- ]
- ],
- [
- [
- 0.8949199914932251
- ]
- ],
- [
- [
- 3.5505244731903076
- ]
- ],
- [
- [
- 0.04852737486362457
- ]
- ],
- [
- [
- 1.5883333683013916
- ]
- ],
- [
- [
- 0.09250732511281967
- ]
- ],
- [
- [
- 0.13831092417240143
- ]
- ],
- [
- [
- 0.6254845857620239
- ]
- ],
- [
- [
- 0.1950441598892212
- ]
- ],
- [
- [
- 0.5862503051757812
- ]
- ],
- [
- [
- 1.5435783863067627
- ]
- ],
- [
- [
- 0.352345734834671
- ]
- ],
- [
- [
- 1.302511215209961
- ]
- ],
- [
- [
- 1.6769475936889648
- ]
- ],
- [
- [
- 1.2194676399230957
- ]
- ],
- [
- [
- 0.9258323907852173
- ]
- ],
- [
- [
- 2.0434765815734863
- ]
- ],
- [
- [
- 2.8570656776428223
- ]
- ],
- [
- [
- 3.3750908374786377
- ]
- ],
- [
- [
- 0.42254477739334106
- ]
- ],
- [
- [
- 1.005423665046692
- ]
- ],
- [
- [
- 2.5334784984588623
- ]
- ],
- [
- [
- 0.3163566589355469
- ]
- ],
- [
- [
- 2.5878453254699707
- ]
- ],
- [
- [
- 1.2459588050842285
- ]
- ],
- [
- [
- 1.480173110961914
- ]
- ],
- [
- [
- 0.5844075083732605
- ]
- ],
- [
- [
- 0.3688303828239441
- ]
- ],
- [
- [
- 1.0429799556732178
- ]
- ],
- [
- [
- 2.8884270191192627
- ]
- ],
- [
- [
- 1.1872423887252808
- ]
- ],
- [
- [
- 4.089621067047119
- ]
- ],
- [
- [
- 0.8776230812072754
- ]
- ],
- [
- [
- 0.3120655417442322
- ]
- ],
- [
- [
- 1.1831551790237427
- ]
- ],
- [
- [
- 1.9332242012023926
- ]
- ],
- [
- [
- 0.1799439936876297
- ]
- ],
- [
- [
- 0.8482400178909302
- ]
- ],
- [
- [
- 1.3786863088607788
- ]
- ],
- [
- [
- 0.7226794362068176
- ]
- ],
- [
- [
- 0.27977046370506287
- ]
- ],
- [
- [
- 0.19466280937194824
- ]
- ],
- [
- [
- 0.35736334323883057
- ]
- ],
- [
- [
- 0.3268308937549591
- ]
- ],
- [
- [
- 3.762769937515259
- ]
- ],
- [
- [
- 0.228885680437088
- ]
- ],
- [
- [
- 1.2176618576049805
- ]
- ],
- [
- [
- 3.3881049156188965
- ]
- ],
- [
- [
- 0.24068111181259155
- ]
- ],
- [
- [
- 0.6847283244132996
- ]
- ],
- [
- [
- 0.2524060904979706
- ]
- ],
- [
- [
- 0.398131787776947
- ]
- ],
- [
- [
- 0.20465317368507385
- ]
- ],
- [
- [
- 0.4917145073413849
- ]
- ],
- [
- [
- 0.3505645990371704
- ]
- ],
- [
- [
- 1.0827161073684692
- ]
- ],
- [
- [
- 1.8033350706100464
- ]
- ],
- [
- [
- 0.6004869937896729
- ]
- ],
- [
- [
- 0.15532727539539337
- ]
- ],
- [
- [
- 0.22444279491901398
- ]
- ],
- [
- [
- 0.20761904120445251
- ]
- ],
- [
- [
- 0.4164811372756958
- ]
- ],
- [
- [
- 0.382841020822525
- ]
- ],
- [
- [
- 2.1455297470092773
- ]
- ],
- [
- [
- 0.8624157309532166
- ]
- ],
- [
- [
- 0.749285876750946
- ]
- ],
- [
- [
- 0.2491694539785385
- ]
- ],
- [
- [
- 0.6658210754394531
- ]
- ],
- [
- [
- 2.662895917892456
- ]
- ],
- [
- [
- 0.4288746118545532
- ]
- ],
- [
- [
- 0.20544475317001343
- ]
- ],
- [
- [
- 1.1167126893997192
- ]
- ],
- [
- [
- 1.708616018295288
- ]
- ],
- [
- [
- 1.0029219388961792
- ]
- ],
- [
- [
- 0.016837656497955322
- ]
- ],
- [
- [
- 0.25708019733428955
- ]
- ],
- [
- [
- 3.179522752761841
- ]
- ],
- [
- [
- 4.612953186035156
- ]
- ],
- [
- [
- 2.6867494583129883
- ]
- ],
- [
- [
- 0.3332463204860687
- ]
- ],
- [
- [
- 1.5335837602615356
- ]
- ],
- [
- [
- 0.07772055268287659
- ]
- ],
- [
- [
- 0.8081841468811035
- ]
- ],
- [
- [
- 0.33587974309921265
- ]
- ],
- [
- [
- 0.7480055093765259
- ]
- ],
- [
- [
- 1.8612664937973022
- ]
- ],
- [
- [
- 3.1455628871917725
- ]
- ],
- [
- [
- 0.12958288192749023
- ]
- ],
- [
- [
- 1.5724000930786133
- ]
- ],
- [
- [
- 0.022964760661125183
- ]
- ],
- [
- [
- 0.26343175768852234
- ]
- ],
- [
- [
- 1.1250076293945312
- ]
- ],
- [
- [
- 1.5983117818832397
- ]
- ],
- [
- [
- 3.157162666320801
- ]
- ],
- [
- [
- 0.1599600613117218
- ]
- ],
- [
- [
- 1.3255661725997925
- ]
- ],
- [
- [
- 2.5481300354003906
- ]
- ],
- [
- [
- 0.15370804071426392
- ]
- ],
- [
- [
- 1.9511842727661133
- ]
- ],
- [
- [
- 1.5990785360336304
- ]
- ],
- [
- [
- 0.7816519737243652
- ]
- ],
- [
- [
- 1.376288890838623
- ]
- ],
- [
- [
- 1.4553333520889282
- ]
- ],
- [
- [
- 0.36333853006362915
- ]
- ],
- [
- [
- 0.6564513444900513
- ]
- ],
- [
- [
- 0.01345907524228096
- ]
- ],
- [
- [
- 0.3226126432418823
- ]
- ],
- [
- [
- 0.08250603079795837
- ]
- ],
- [
- [
- 3.3298046588897705
- ]
- ],
- [
- [
- 0.05263809859752655
- ]
- ],
- [
- [
- 0.6750518679618835
- ]
- ],
- [
- [
- 1.0306504964828491
- ]
- ],
- [
- [
- 1.7617932558059692
- ]
- ],
- [
- [
- 0.9400256276130676
- ]
- ],
- [
- [
- 0.3548118472099304
- ]
- ],
- [
- [
- 0.12973971664905548
- ]
- ],
- [
- [
- 2.9328689575195312
- ]
- ],
- [
- [
- 0.13189265131950378
- ]
- ],
- [
- [
- 0.9613168239593506
- ]
- ],
- [
- [
- 1.0261629819869995
- ]
- ],
- [
- [
- 0.2472521960735321
- ]
- ],
- [
- [
- 3.825265884399414
- ]
- ],
- [
- [
- 0.5504454374313354
- ]
- ],
- [
- [
- 0.21881264448165894
- ]
- ],
- [
- [
- 2.3278815746307373
- ]
- ],
- [
- [
- 0.5349262952804565
- ]
- ],
- [
- [
- 0.2663220167160034
- ]
- ],
- [
- [
- 0.4416412115097046
- ]
- ],
- [
- [
- 0.24860884249210358
- ]
- ],
- [
- [
- 0.6232591867446899
- ]
- ],
- [
- [
- 0.790571928024292
- ]
- ],
- [
- [
- 0.5023820400238037
- ]
- ],
- [
- [
- 0.9386041164398193
- ]
- ],
- [
- [
- 0.3727262020111084
- ]
- ],
- [
- [
- 0.1512642651796341
- ]
- ],
- [
- [
- 0.11407037824392319
- ]
- ],
- [
- [
- 0.11492156982421875
- ]
- ],
- [
- [
- 2.8412795066833496
- ]
- ],
- [
- [
- 0.4397403597831726
- ]
- ],
- [
- [
- 2.9233627319335938
- ]
- ],
- [
- [
- 0.5201243758201599
- ]
- ],
- [
- [
- 2.359025478363037
- ]
- ],
- [
- [
- 1.6392427682876587
- ]
- ],
- [
- [
- 1.719849705696106
- ]
- ],
- [
- [
- 0.480352520942688
- ]
- ],
- [
- [
- 0.03207767382264137
- ]
- ],
- [
- [
- 1.1153688430786133
- ]
- ],
- [
- [
- 0.2485523670911789
- ]
- ],
- [
- [
- 0.17323166131973267
- ]
- ],
- [
- [
- 0.23671579360961914
- ]
- ],
- [
- [
- 0.0949120968580246
- ]
- ],
- [
- [
- 1.5128140449523926
- ]
- ],
- [
- [
- 1.4948128461837769
- ]
- ],
- [
- [
- 0.9702630639076233
- ]
- ],
- [
- [
- 1.0132942199707031
- ]
- ],
- [
- [
- 0.2061237394809723
- ]
- ],
- [
- [
- 0.3878534734249115
- ]
- ],
- [
- [
- 1.2653225660324097
- ]
- ],
- [
- [
- 0.3911491334438324
- ]
- ],
- [
- [
- 0.3793220520019531
- ]
- ],
- [
- [
- 0.23424965143203735
- ]
- ],
- [
- [
- 0.6951673626899719
- ]
- ],
- [
- [
- 3.186579942703247
- ]
- ],
- [
- [
- 0.019822081550955772
- ]
- ],
- [
- [
- 0.5041691064834595
- ]
- ],
- [
- [
- 0.13974401354789734
- ]
- ],
- [
- [
- 1.8521013259887695
- ]
- ],
- [
- [
- 0.12698836624622345
- ]
- ],
- [
- [
- 1.4651237726211548
- ]
- ],
- [
- [
- 0.5320760011672974
- ]
- ],
- [
- [
- 0.5405462384223938
- ]
- ],
- [
- [
- 0.4980103373527527
- ]
- ],
- [
- [
- 0.42304739356040955
- ]
- ],
- [
- [
- 0.38044553995132446
- ]
- ],
- [
- [
- 0.9906283020973206
- ]
- ],
- [
- [
- 0.27817603945732117
- ]
- ],
- [
- [
- 0.5814056992530823
- ]
- ],
- [
- [
- 1.639274001121521
- ]
- ],
- [
- [
- 0.7875773906707764
- ]
- ],
- [
- [
- 0.19192776083946228
- ]
- ],
- [
- [
- 0.15522252023220062
- ]
- ],
- [
- [
- 0.5274178981781006
- ]
- ],
- [
- [
- 2.5247609615325928
- ]
- ],
- [
- [
- 1.1118053197860718
- ]
- ],
- [
- [
- 0.05900198966264725
- ]
- ],
- [
- [
- 2.5017220973968506
- ]
- ],
- [
- [
- 0.1065361499786377
- ]
- ],
- [
- [
- 0.15987741947174072
- ]
- ],
- [
- [
- 0.2580384612083435
- ]
- ],
- [
- [
- 1.055138349533081
- ]
- ],
- [
- [
- 0.618707537651062
- ]
- ],
- [
- [
- 0.7414822578430176
- ]
- ],
- [
- [
- 0.6279294490814209
- ]
- ],
- [
- [
- 0.8496895432472229
- ]
- ],
- [
- [
- 0.24727384746074677
- ]
- ],
- [
- [
- 1.5951634645462036
- ]
- ],
- [
- [
- 1.042862057685852
- ]
- ],
- [
- [
- 0.704903244972229
- ]
- ],
- [
- [
- 0.27965283393859863
- ]
- ],
- [
- [
- 1.5191212892532349
- ]
- ],
- [
- [
- 0.41987913846969604
- ]
- ],
- [
- [
- 0.4582858383655548
- ]
- ],
- [
- [
- 0.6691666841506958
- ]
- ],
- [
- [
- 0.8689113259315491
- ]
- ],
- [
- [
- 2.084643840789795
- ]
- ],
- [
- [
- 2.4734487533569336
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4517999589443207
- ]
- ],
- [
- [
- 0.08196807652711868
- ]
- ],
- [
- [
- 0.9460873007774353
- ]
- ],
- [
- [
- 0.2723830044269562
- ]
- ],
- [
- [
- 0.13743950426578522
- ]
- ],
- [
- [
- 3.130574941635132
- ]
- ],
- [
- [
- 0.4310667812824249
- ]
- ],
- [
- [
- 0.12830354273319244
- ]
- ],
- [
- [
- 1.9606094360351562
- ]
- ],
- [
- [
- 0.24035421013832092
- ]
- ],
- [
- [
- 1.4992471933364868
- ]
- ],
- [
- [
- 0.23137688636779785
- ]
- ],
- [
- [
- 0.46722009778022766
- ]
- ],
- [
- [
- 0.15317125618457794
- ]
- ],
- [
- [
- 0.3685867488384247
- ]
- ],
- [
- [
- 1.9630696773529053
- ]
- ],
- [
- [
- 0.18804368376731873
- ]
- ],
- [
- [
- 0.1304689198732376
- ]
- ],
- [
- [
- 2.449155569076538
- ]
- ],
- [
- [
- 0.25766026973724365
- ]
- ],
- [
- [
- 0.09465743601322174
- ]
- ],
- [
- [
- 1.0802327394485474
- ]
- ],
- [
- [
- 0.9389481544494629
- ]
- ],
- [
- [
- 0.1968006193637848
- ]
- ],
- [
- [
- 0.2370627224445343
- ]
- ],
- [
- [
- 0.6879824995994568
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.16768509149551392
- ]
- ],
- [
- [
- 0.5172956585884094
- ]
- ],
- [
- [
- 0.1962311565876007
- ]
- ],
- [
- [
- 0.3214837610721588
- ]
- ],
- [
- [
- 0.051313482224941254
- ]
- ],
- [
- [
- 0.7471544742584229
- ]
- ],
- [
- [
- 2.5812668800354004
- ]
- ],
- [
- [
- 0.7977283000946045
- ]
- ],
- [
- [
- 1.3264009952545166
- ]
- ],
- [
- [
- 0.35580208897590637
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4711136221885681
- ]
- ],
- [
- [
- 0.17178305983543396
- ]
- ],
- [
- [
- 0.03576904535293579
- ]
- ],
- [
- [
- 0.6394082307815552
- ]
- ],
- [
- [
- 0.41254013776779175
- ]
- ],
- [
- [
- 0.6647717356681824
- ]
- ],
- [
- [
- 0.2539892792701721
- ]
- ],
- [
- [
- 1.2049344778060913
- ]
- ],
- [
- [
- 0.3302428424358368
- ]
- ],
- [
- [
- 0.43594595789909363
- ]
- ],
- [
- [
- 1.2655794620513916
- ]
- ],
- [
- [
- 1.1168452501296997
- ]
- ],
- [
- [
- 0.47523075342178345
- ]
- ],
- [
- [
- 0.12447123229503632
- ]
- ],
- [
- [
- 1.8711804151535034
- ]
- ],
- [
- [
- 2.8239190578460693
- ]
- ],
- [
- [
- 0.07543065398931503
- ]
- ],
- [
- [
- 0.24029770493507385
- ]
- ],
- [
- [
- 0.5449439883232117
- ]
- ],
- [
- [
- 0.42997118830680847
- ]
- ],
- [
- [
- 1.6742677688598633
- ]
- ],
- [
- [
- 2.886808156967163
- ]
- ],
- [
- [
- 0.39053869247436523
- ]
- ],
- [
- [
- 0.24139404296875
- ]
- ],
- [
- [
- 0.6833280920982361
- ]
- ],
- [
- [
- 2.2958180904388428
- ]
- ],
- [
- [
- 0.31596100330352783
- ]
- ],
- [
- [
- 0.21106550097465515
- ]
- ],
- [
- [
- 0.5733708739280701
- ]
- ],
- [
- [
- 0.3688473403453827
- ]
- ],
- [
- [
- 0.08780741691589355
- ]
- ],
- [
- [
- 1.092307209968567
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.576860189437866
- ]
- ],
- [
- [
- 0.15088210999965668
- ]
- ],
- [
- [
- 3.912513017654419
- ]
- ],
- [
- [
- 0.29916900396347046
- ]
- ],
- [
- [
- 0.19853255152702332
- ]
- ],
- [
- [
- 0.4422658681869507
- ]
- ],
- [
- [
- 0.548188328742981
- ]
- ],
- [
- [
- 0.8649435639381409
- ]
- ],
- [
- [
- 0.6427949666976929
- ]
- ],
- [
- [
- 3.1316580772399902
- ]
- ],
- [
- [
- 1.433761715888977
- ]
- ],
- [
- [
- 0.12931090593338013
- ]
- ],
- [
- [
- 1.9398809671401978
- ]
- ],
- [
- [
- 4.05294942855835
- ]
- ],
- [
- [
- 2.187668800354004
- ]
- ],
- [
- [
- 1.3807063102722168
- ]
- ],
- [
- [
- 0.07069512456655502
- ]
- ],
- [
- [
- 0.5333026051521301
- ]
- ],
- [
- [
- 1.3621422052383423
- ]
- ],
- [
- [
- 0.4861108958721161
- ]
- ],
- [
- [
- 0.9452409744262695
- ]
- ],
- [
- [
- 0.8305760622024536
- ]
- ],
- [
- [
- 0.010155661031603813
- ]
- ],
- [
- [
- 0.28675147891044617
- ]
- ],
- [
- [
- 1.1522506475448608
- ]
- ],
- [
- [
- 0.4970459043979645
- ]
- ],
- [
- [
- 0.10154429078102112
- ]
- ],
- [
- [
- 0.7914350628852844
- ]
- ],
- [
- [
- 0.3350182771682739
- ]
- ],
- [
- [
- 0.4674781262874603
- ]
- ],
- [
- [
- 3.6641106605529785
- ]
- ],
- [
- [
- 0.8799232840538025
- ]
- ],
- [
- [
- 2.6382009983062744
- ]
- ],
- [
- [
- 1.413010597229004
- ]
- ],
- [
- [
- 0.9996560215950012
- ]
- ],
- [
- [
- 0.3117615282535553
- ]
- ],
- [
- [
- 0.34201183915138245
- ]
- ],
- [
- [
- 3.9518096446990967
- ]
- ],
- [
- [
- 0.4605253338813782
- ]
- ],
- [
- [
- 0.8877115249633789
- ]
- ],
- [
- [
- 0.7815142273902893
- ]
- ],
- [
- [
- 0.25208279490470886
- ]
- ],
- [
- [
- 0.6331107020378113
- ]
- ],
- [
- [
- 2.0390632152557373
- ]
- ],
- [
- [
- 1.5071048736572266
- ]
- ],
- [
- [
- 1.2546275854110718
- ]
- ],
- [
- [
- 0.22454392910003662
- ]
- ],
- [
- [
- 1.3437414169311523
- ]
- ],
- [
- [
- 1.0619252920150757
- ]
- ],
- [
- [
- 0.47671815752983093
- ]
- ],
- [
- [
- 0.7478371262550354
- ]
- ],
- [
- [
- 1.8252650499343872
- ]
- ],
- [
- [
- 0.2488350123167038
- ]
- ],
- [
- [
- 0.15771257877349854
- ]
- ],
- [
- [
- 0.9911783933639526
- ]
- ],
- [
- [
- 0.24817867577075958
- ]
- ],
- [
- [
- 1.022687554359436
- ]
- ],
- [
- [
- 0.18007099628448486
- ]
- ],
- [
- [
- 0.4699406027793884
- ]
- ],
- [
- [
- 0.07829847186803818
- ]
- ],
- [
- [
- 0.1375209242105484
- ]
- ],
- [
- [
- 1.1267400979995728
- ]
- ],
- [
- [
- 0.25459617376327515
- ]
- ],
- [
- [
- 0.46838539838790894
- ]
- ],
- [
- [
- 0.4432888925075531
- ]
- ],
- [
- [
- 1.8387075662612915
- ]
- ],
- [
- [
- 2.1671853065490723
- ]
- ],
- [
- [
- 0.5508925318717957
- ]
- ],
- [
- [
- 2.7433671951293945
- ]
- ],
- [
- [
- 0.3162236213684082
- ]
- ],
- [
- [
- 0.2432929426431656
- ]
- ],
- [
- [
- 2.2807464599609375
- ]
- ],
- [
- [
- 0.9489012360572815
- ]
- ],
- [
- [
- 0.1985066831111908
- ]
- ],
- [
- [
- 0.1264072060585022
- ]
- ],
- [
- [
- 0.1113193929195404
- ]
- ],
- [
- [
- 0.3523752689361572
- ]
- ],
- [
- [
- 0.8864730596542358
- ]
- ],
- [
- [
- 1.4832839965820312
- ]
- ],
- [
- [
- 0.39753958582878113
- ]
- ],
- [
- [
- 0.6020511984825134
- ]
- ],
- [
- [
- 0.7661126852035522
- ]
- ],
- [
- [
- 0.39289623498916626
- ]
- ],
- [
- [
- 2.9610466957092285
- ]
- ],
- [
- [
- 0.30757108330726624
- ]
- ],
- [
- [
- 0.14534655213356018
- ]
- ],
- [
- [
- 0.099125936627388
- ]
- ],
- [
- [
- 0.6019290089607239
- ]
- ],
- [
- [
- 0.6942517161369324
- ]
- ],
- [
- [
- 0.4140126705169678
- ]
- ],
- [
- [
- 0.9283492565155029
- ]
- ],
- [
- [
- 0.12529242038726807
- ]
- ],
- [
- [
- 0.7518778443336487
- ]
- ],
- [
- [
- 1.9881932735443115
- ]
- ],
- [
- [
- 0.2880171537399292
- ]
- ],
- [
- [
- 0.45761170983314514
- ]
- ],
- [
- [
- 0.28566473722457886
- ]
- ],
- [
- [
- 0.06155017018318176
- ]
- ],
- [
- [
- 3.2672600746154785
- ]
- ],
- [
- [
- 0.4006979465484619
- ]
- ],
- [
- [
- 1.9013217687606812
- ]
- ],
- [
- [
- 1.0338138341903687
- ]
- ],
- [
- [
- 1.4019486904144287
- ]
- ],
- [
- [
- 0.7108853459358215
- ]
- ],
- [
- [
- 0.01695970445871353
- ]
- ],
- [
- [
- 3.097231149673462
- ]
- ],
- [
- [
- 2.0930733680725098
- ]
- ],
- [
- [
- 0.3854275047779083
- ]
- ],
- [
- [
- 0.26192015409469604
- ]
- ],
- [
- [
- 0.11095831543207169
- ]
- ],
- [
- [
- 0.588157594203949
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.8224284648895264
- ]
- ],
- [
- [
- 0.30438151955604553
- ]
- ],
- [
- [
- 0.6193899512290955
- ]
- ],
- [
- [
- 0.3569073975086212
- ]
- ],
- [
- [
- 2.054826021194458
- ]
- ],
- [
- [
- 0.26763248443603516
- ]
- ],
- [
- [
- 1.1294132471084595
- ]
- ],
- [
- [
- 0.16859398782253265
- ]
- ],
- [
- [
- 0.0571250282227993
- ]
- ],
- [
- [
- 0.8953000903129578
- ]
- ],
- [
- [
- 0.5413304567337036
- ]
- ],
- [
- [
- 2.0870659351348877
- ]
- ],
- [
- [
- 0.18710507452487946
- ]
- ],
- [
- [
- 0.7659022808074951
- ]
- ],
- [
- [
- 0.01826588064432144
- ]
- ],
- [
- [
- 0.41803598403930664
- ]
- ],
- [
- [
- 1.4149061441421509
- ]
- ],
- [
- [
- 3.171320915222168
- ]
- ],
- [
- [
- 0.7251479029655457
- ]
- ],
- [
- [
- 1.520125389099121
- ]
- ],
- [
- [
- 2.172609806060791
- ]
- ],
- [
- [
- 0.7546336650848389
- ]
- ],
- [
- [
- 0.07923407852649689
- ]
- ],
- [
- [
- 0.572341799736023
- ]
- ],
- [
- [
- 1.7284265756607056
- ]
- ],
- [
- [
- 0.1736731231212616
- ]
- ],
- [
- [
- 1.0145306587219238
- ]
- ],
- [
- [
- 2.550673246383667
- ]
- ],
- [
- [
- 0.41022181510925293
- ]
- ],
- [
- [
- 0.465509295463562
- ]
- ],
- [
- [
- 2.3419556617736816
- ]
- ],
- [
- [
- 1.1978189945220947
- ]
- ],
- [
- [
- 2.9787962436676025
- ]
- ]
- ]
- ]
- },
- "/features/features.16/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.05830051004886627
- ]
- ]
- ],
- [
- [
- [
- -0.07807084918022156
- ]
- ]
- ],
- [
- [
- [
- -0.058807969093322754
- ]
- ]
- ],
- [
- [
- [
- -0.07144374400377274
- ]
- ]
- ],
- [
- [
- [
- -0.10358694940805435
- ]
- ]
- ],
- [
- [
- [
- -0.07008533924818039
- ]
- ]
- ],
- [
- [
- [
- -0.09185867011547089
- ]
- ]
- ],
- [
- [
- [
- -0.04874323680996895
- ]
- ]
- ],
- [
- [
- [
- -0.06963656097650528
- ]
- ]
- ],
- [
- [
- [
- -0.06616033613681793
- ]
- ]
- ],
- [
- [
- [
- -0.0920611321926117
- ]
- ]
- ],
- [
- [
- [
- -0.06595803052186966
- ]
- ]
- ],
- [
- [
- [
- -0.07073991000652313
- ]
- ]
- ],
- [
- [
- [
- -0.07338160276412964
- ]
- ]
- ],
- [
- [
- [
- -0.08121359348297119
- ]
- ]
- ],
- [
- [
- [
- -0.08493801206350327
- ]
- ]
- ],
- [
- [
- [
- -0.07619204372167587
- ]
- ]
- ],
- [
- [
- [
- -0.10002736002206802
- ]
- ]
- ],
- [
- [
- [
- -0.058286283165216446
- ]
- ]
- ],
- [
- [
- [
- -0.07588834315538406
- ]
- ]
- ],
- [
- [
- [
- -0.09944571554660797
- ]
- ]
- ],
- [
- [
- [
- -0.0723671019077301
- ]
- ]
- ],
- [
- [
- [
- -0.05859633535146713
- ]
- ]
- ],
- [
- [
- [
- -0.06310499459505081
- ]
- ]
- ],
- [
- [
- [
- -0.050543151795864105
- ]
- ]
- ],
- [
- [
- [
- -0.09148801863193512
- ]
- ]
- ],
- [
- [
- [
- -0.08581556379795074
- ]
- ]
- ],
- [
- [
- [
- -0.060656607151031494
- ]
- ]
- ],
- [
- [
- [
- -0.10404647141695023
- ]
- ]
- ],
- [
- [
- [
- -0.06679873168468475
- ]
- ]
- ],
- [
- [
- [
- -0.044415153563022614
- ]
- ]
- ],
- [
- [
- [
- -0.11154074221849442
- ]
- ]
- ],
- [
- [
- [
- -0.07860548049211502
- ]
- ]
- ],
- [
- [
- [
- -0.1185956671833992
- ]
- ]
- ],
- [
- [
- [
- -0.05273063853383064
- ]
- ]
- ],
- [
- [
- [
- -0.052731744945049286
- ]
- ]
- ],
- [
- [
- [
- -0.060855284333229065
- ]
- ]
- ],
- [
- [
- [
- -0.07305596768856049
- ]
- ]
- ],
- [
- [
- [
- -0.07071968168020248
- ]
- ]
- ],
- [
- [
- [
- -0.11274702101945877
- ]
- ]
- ],
- [
- [
- [
- -0.09480860084295273
- ]
- ]
- ],
- [
- [
- [
- -0.07785995304584503
- ]
- ]
- ],
- [
- [
- [
- -0.05848336219787598
- ]
- ]
- ],
- [
- [
- [
- -0.10763268917798996
- ]
- ]
- ],
- [
- [
- [
- -0.1245071142911911
- ]
- ]
- ],
- [
- [
- [
- -0.07579417526721954
- ]
- ]
- ],
- [
- [
- [
- -0.09219890087842941
- ]
- ]
- ],
- [
- [
- [
- -0.13886697590351105
- ]
- ]
- ],
- [
- [
- [
- -0.09606405347585678
- ]
- ]
- ],
- [
- [
- [
- -0.08303540199995041
- ]
- ]
- ],
- [
- [
- [
- -0.07722760736942291
- ]
- ]
- ],
- [
- [
- [
- -0.09945156425237656
- ]
- ]
- ],
- [
- [
- [
- -0.08764202147722244
- ]
- ]
- ],
- [
- [
- [
- -0.058732133358716965
- ]
- ]
- ],
- [
- [
- [
- -0.09361578524112701
- ]
- ]
- ],
- [
- [
- [
- -0.043875839561223984
- ]
- ]
- ],
- [
- [
- [
- -0.07803981006145477
- ]
- ]
- ],
- [
- [
- [
- -0.07265777885913849
- ]
- ]
- ],
- [
- [
- [
- -0.05949536710977554
- ]
- ]
- ],
- [
- [
- [
- -0.07602614164352417
- ]
- ]
- ],
- [
- [
- [
- -0.10432162880897522
- ]
- ]
- ],
- [
- [
- [
- -0.0951901376247406
- ]
- ]
- ],
- [
- [
- [
- -0.06567154079675674
- ]
- ]
- ],
- [
- [
- [
- -0.07698667049407959
- ]
- ]
- ],
- [
- [
- [
- -0.07403117418289185
- ]
- ]
- ],
- [
- [
- [
- -0.08374164998531342
- ]
- ]
- ],
- [
- [
- [
- -0.07519316673278809
- ]
- ]
- ],
- [
- [
- [
- -0.09778162837028503
- ]
- ]
- ],
- [
- [
- [
- -0.07200504094362259
- ]
- ]
- ],
- [
- [
- [
- -0.09817332029342651
- ]
- ]
- ],
- [
- [
- [
- -0.08049968630075455
- ]
- ]
- ],
- [
- [
- [
- -0.06662329286336899
- ]
- ]
- ],
- [
- [
- [
- -0.12475044280290604
- ]
- ]
- ],
- [
- [
- [
- -0.09708505868911743
- ]
- ]
- ],
- [
- [
- [
- -0.05387400463223457
- ]
- ]
- ],
- [
- [
- [
- -0.08167553693056107
- ]
- ]
- ],
- [
- [
- [
- -0.101011261343956
- ]
- ]
- ],
- [
- [
- [
- -0.06901419907808304
- ]
- ]
- ],
- [
- [
- [
- -0.11538947373628616
- ]
- ]
- ],
- [
- [
- [
- -0.09510954469442368
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.0927855595946312
- ]
- ]
- ],
- [
- [
- [
- -0.06547746807336807
- ]
- ]
- ],
- [
- [
- [
- -0.07651612907648087
- ]
- ]
- ],
- [
- [
- [
- -0.07265041023492813
- ]
- ]
- ],
- [
- [
- [
- -0.08361450582742691
- ]
- ]
- ],
- [
- [
- [
- -0.08582837879657745
- ]
- ]
- ],
- [
- [
- [
- -0.06267891824245453
- ]
- ]
- ],
- [
- [
- [
- -0.11335033178329468
- ]
- ]
- ],
- [
- [
- [
- -0.06436843425035477
- ]
- ]
- ],
- [
- [
- [
- -0.08227626234292984
- ]
- ]
- ],
- [
- [
- [
- -0.08898670971393585
- ]
- ]
- ],
- [
- [
- [
- -0.07927422970533371
- ]
- ]
- ],
- [
- [
- [
- -0.06923487037420273
- ]
- ]
- ],
- [
- [
- [
- -0.07126303762197495
- ]
- ]
- ],
- [
- [
- [
- -0.08635919541120529
- ]
- ]
- ],
- [
- [
- [
- -0.10967998951673508
- ]
- ]
- ],
- [
- [
- [
- -0.10560844093561172
- ]
- ]
- ],
- [
- [
- [
- -0.09857683628797531
- ]
- ]
- ],
- [
- [
- [
- -0.06911434233188629
- ]
- ]
- ],
- [
- [
- [
- -0.08430086076259613
- ]
- ]
- ],
- [
- [
- [
- -0.08497870713472366
- ]
- ]
- ],
- [
- [
- [
- -0.07850105315446854
- ]
- ]
- ],
- [
- [
- [
- -0.1128198653459549
- ]
- ]
- ],
- [
- [
- [
- -0.0800718441605568
- ]
- ]
- ],
- [
- [
- [
- -0.09379331767559052
- ]
- ]
- ],
- [
- [
- [
- -0.07006057351827621
- ]
- ]
- ],
- [
- [
- [
- -0.09632085263729095
- ]
- ]
- ],
- [
- [
- [
- -0.07132977992296219
- ]
- ]
- ],
- [
- [
- [
- -0.05603781342506409
- ]
- ]
- ],
- [
- [
- [
- -0.07803531736135483
- ]
- ]
- ],
- [
- [
- [
- -0.09999839961528778
- ]
- ]
- ],
- [
- [
- [
- -0.11049391329288483
- ]
- ]
- ],
- [
- [
- [
- -0.06274744868278503
- ]
- ]
- ],
- [
- [
- [
- -0.05021531879901886
- ]
- ]
- ],
- [
- [
- [
- -0.10432083904743195
- ]
- ]
- ],
- [
- [
- [
- -0.06487513333559036
- ]
- ]
- ],
- [
- [
- [
- -0.04249809682369232
- ]
- ]
- ],
- [
- [
- [
- -0.051618896424770355
- ]
- ]
- ],
- [
- [
- [
- -0.07012447714805603
- ]
- ]
- ],
- [
- [
- [
- -0.08772289007902145
- ]
- ]
- ],
- [
- [
- [
- -0.06959018111228943
- ]
- ]
- ],
- [
- [
- [
- -0.11226815730333328
- ]
- ]
- ],
- [
- [
- [
- -0.09571922570466995
- ]
- ]
- ],
- [
- [
- [
- -0.07333376258611679
- ]
- ]
- ],
- [
- [
- [
- -0.07313158363103867
- ]
- ]
- ],
- [
- [
- [
- -0.07756626605987549
- ]
- ]
- ],
- [
- [
- [
- -0.06275714933872223
- ]
- ]
- ],
- [
- [
- [
- -0.07838936150074005
- ]
- ]
- ],
- [
- [
- [
- -0.06960339844226837
- ]
- ]
- ],
- [
- [
- [
- -0.0780213326215744
- ]
- ]
- ],
- [
- [
- [
- -0.06549248099327087
- ]
- ]
- ],
- [
- [
- [
- -0.06722289323806763
- ]
- ]
- ],
- [
- [
- [
- -0.07430832087993622
- ]
- ]
- ],
- [
- [
- [
- -0.08972927927970886
- ]
- ]
- ],
- [
- [
- [
- -0.09422715753316879
- ]
- ]
- ],
- [
- [
- [
- -0.05425902083516121
- ]
- ]
- ],
- [
- [
- [
- -0.07864182442426682
- ]
- ]
- ],
- [
- [
- [
- -0.07322236150503159
- ]
- ]
- ],
- [
- [
- [
- -0.06648565828800201
- ]
- ]
- ],
- [
- [
- [
- -0.10088223218917847
- ]
- ]
- ],
- [
- [
- [
- -0.07449463754892349
- ]
- ]
- ],
- [
- [
- [
- -0.07603677362203598
- ]
- ]
- ],
- [
- [
- [
- -0.0922265499830246
- ]
- ]
- ],
- [
- [
- [
- -0.09184981137514114
- ]
- ]
- ],
- [
- [
- [
- -0.06204533204436302
- ]
- ]
- ],
- [
- [
- [
- -0.05555403232574463
- ]
- ]
- ],
- [
- [
- [
- -0.06319446861743927
- ]
- ]
- ],
- [
- [
- [
- -0.07266212999820709
- ]
- ]
- ],
- [
- [
- [
- -0.08255491405725479
- ]
- ]
- ],
- [
- [
- [
- -0.06696457415819168
- ]
- ]
- ],
- [
- [
- [
- -0.06429167836904526
- ]
- ]
- ],
- [
- [
- [
- -0.07269757986068726
- ]
- ]
- ],
- [
- [
- [
- -0.0924118310213089
- ]
- ]
- ],
- [
- [
- [
- -0.11024060845375061
- ]
- ]
- ],
- [
- [
- [
- -0.10873532295227051
- ]
- ]
- ],
- [
- [
- [
- -0.08680135011672974
- ]
- ]
- ],
- [
- [
- [
- -0.0676921084523201
- ]
- ]
- ],
- [
- [
- [
- -0.11510374397039413
- ]
- ]
- ],
- [
- [
- [
- -0.09412893652915955
- ]
- ]
- ],
- [
- [
- [
- -0.08386683464050293
- ]
- ]
- ],
- [
- [
- [
- -0.04036860167980194
- ]
- ]
- ],
- [
- [
- [
- -0.11506912857294083
- ]
- ]
- ],
- [
- [
- [
- -0.10754183679819107
- ]
- ]
- ],
- [
- [
- [
- -0.09053366631269455
- ]
- ]
- ],
- [
- [
- [
- -0.11464585363864899
- ]
- ]
- ],
- [
- [
- [
- -0.073506660759449
- ]
- ]
- ],
- [
- [
- [
- -0.08165183663368225
- ]
- ]
- ],
- [
- [
- [
- -0.08294045180082321
- ]
- ]
- ],
- [
- [
- [
- -0.07027869671583176
- ]
- ]
- ],
- [
- [
- [
- -0.08052494376897812
- ]
- ]
- ],
- [
- [
- [
- -0.08692879974842072
- ]
- ]
- ],
- [
- [
- [
- -0.0953993871808052
- ]
- ]
- ],
- [
- [
- [
- -0.10865037143230438
- ]
- ]
- ],
- [
- [
- [
- -0.077224962413311
- ]
- ]
- ],
- [
- [
- [
- -0.09029295295476913
- ]
- ]
- ],
- [
- [
- [
- -0.08946505188941956
- ]
- ]
- ],
- [
- [
- [
- -0.07717661559581757
- ]
- ]
- ],
- [
- [
- [
- -0.11505956202745438
- ]
- ]
- ],
- [
- [
- [
- -0.03286290913820267
- ]
- ]
- ],
- [
- [
- [
- -0.07921445369720459
- ]
- ]
- ],
- [
- [
- [
- -0.05967634916305542
- ]
- ]
- ],
- [
- [
- [
- -0.09584246575832367
- ]
- ]
- ],
- [
- [
- [
- -0.09238466620445251
- ]
- ]
- ],
- [
- [
- [
- -0.09030137211084366
- ]
- ]
- ],
- [
- [
- [
- -0.10391327738761902
- ]
- ]
- ],
- [
- [
- [
- -0.08623527735471725
- ]
- ]
- ],
- [
- [
- [
- -0.05495396628975868
- ]
- ]
- ],
- [
- [
- [
- -0.10202000290155411
- ]
- ]
- ],
- [
- [
- [
- -0.09293452650308609
- ]
- ]
- ],
- [
- [
- [
- -0.05898229777812958
- ]
- ]
- ],
- [
- [
- [
- -0.09295911341905594
- ]
- ]
- ],
- [
- [
- [
- -0.11731816828250885
- ]
- ]
- ],
- [
- [
- [
- -0.08608409017324448
- ]
- ]
- ],
- [
- [
- [
- -0.09794167429208755
- ]
- ]
- ],
- [
- [
- [
- -0.11555340886116028
- ]
- ]
- ],
- [
- [
- [
- -0.06883645057678223
- ]
- ]
- ],
- [
- [
- [
- -0.06651856005191803
- ]
- ]
- ],
- [
- [
- [
- -0.07615353912115097
- ]
- ]
- ],
- [
- [
- [
- -0.08406630158424377
- ]
- ]
- ],
- [
- [
- [
- -0.09096626937389374
- ]
- ]
- ],
- [
- [
- [
- -0.07211116701364517
- ]
- ]
- ],
- [
- [
- [
- -0.0952414944767952
- ]
- ]
- ],
- [
- [
- [
- -0.06680657714605331
- ]
- ]
- ],
- [
- [
- [
- -0.06851711869239807
- ]
- ]
- ],
- [
- [
- [
- -0.08528391271829605
- ]
- ]
- ],
- [
- [
- [
- -0.11180242896080017
- ]
- ]
- ],
- [
- [
- [
- -0.10873346775770187
- ]
- ]
- ],
- [
- [
- [
- -0.059275105595588684
- ]
- ]
- ],
- [
- [
- [
- -0.09423975646495819
- ]
- ]
- ],
- [
- [
- [
- -0.05676921457052231
- ]
- ]
- ],
- [
- [
- [
- -0.07610844820737839
- ]
- ]
- ],
- [
- [
- [
- -0.07910905033349991
- ]
- ]
- ],
- [
- [
- [
- -0.06691212952136993
- ]
- ]
- ],
- [
- [
- [
- -0.11250659823417664
- ]
- ]
- ],
- [
- [
- [
- -0.07419870048761368
- ]
- ]
- ],
- [
- [
- [
- -0.06669463217258453
- ]
- ]
- ],
- [
- [
- [
- -0.05885457992553711
- ]
- ]
- ],
- [
- [
- [
- -0.1159944087266922
- ]
- ]
- ],
- [
- [
- [
- -0.07624396681785583
- ]
- ]
- ],
- [
- [
- [
- -0.06766287237405777
- ]
- ]
- ],
- [
- [
- [
- -0.07680922746658325
- ]
- ]
- ],
- [
- [
- [
- -0.06946471333503723
- ]
- ]
- ],
- [
- [
- [
- -0.0919509083032608
- ]
- ]
- ],
- [
- [
- [
- -0.07592714577913284
- ]
- ]
- ],
- [
- [
- [
- -0.10248823463916779
- ]
- ]
- ],
- [
- [
- [
- -0.13383527100086212
- ]
- ]
- ],
- [
- [
- [
- -0.08339645713567734
- ]
- ]
- ],
- [
- [
- [
- -0.07695843279361725
- ]
- ]
- ],
- [
- [
- [
- -0.07710961997509003
- ]
- ]
- ],
- [
- [
- [
- -0.1061524823307991
- ]
- ]
- ],
- [
- [
- [
- -0.07036775350570679
- ]
- ]
- ],
- [
- [
- [
- -0.085562564432621
- ]
- ]
- ],
- [
- [
- [
- -0.21382242441177368
- ]
- ]
- ],
- [
- [
- [
- -0.07857491821050644
- ]
- ]
- ],
- [
- [
- [
- -0.1099463626742363
- ]
- ]
- ],
- [
- [
- [
- -0.14383450150489807
- ]
- ]
- ],
- [
- [
- [
- -0.10274694114923477
- ]
- ]
- ],
- [
- [
- [
- -0.07513484358787537
- ]
- ]
- ],
- [
- [
- [
- -0.06390704959630966
- ]
- ]
- ],
- [
- [
- [
- -0.07116810232400894
- ]
- ]
- ],
- [
- [
- [
- -0.09363582730293274
- ]
- ]
- ],
- [
- [
- [
- -0.0724642276763916
- ]
- ]
- ],
- [
- [
- [
- -0.07266469299793243
- ]
- ]
- ],
- [
- [
- [
- -0.057547736912965775
- ]
- ]
- ],
- [
- [
- [
- -0.09344135969877243
- ]
- ]
- ],
- [
- [
- [
- -0.053898394107818604
- ]
- ]
- ],
- [
- [
- [
- -0.07656838744878769
- ]
- ]
- ],
- [
- [
- [
- -0.07497531175613403
- ]
- ]
- ],
- [
- [
- [
- -0.06811502575874329
- ]
- ]
- ],
- [
- [
- [
- -0.11376581341028214
- ]
- ]
- ],
- [
- [
- [
- -0.06149345636367798
- ]
- ]
- ],
- [
- [
- [
- -0.05183403939008713
- ]
- ]
- ],
- [
- [
- [
- -0.08022721111774445
- ]
- ]
- ],
- [
- [
- [
- -0.0987282544374466
- ]
- ]
- ],
- [
- [
- [
- -0.06399784982204437
- ]
- ]
- ],
- [
- [
- [
- -0.07653763145208359
- ]
- ]
- ],
- [
- [
- [
- -0.06915295124053955
- ]
- ]
- ],
- [
- [
- [
- -0.06052859500050545
- ]
- ]
- ],
- [
- [
- [
- -0.05823924019932747
- ]
- ]
- ],
- [
- [
- [
- -0.0456743985414505
- ]
- ]
- ],
- [
- [
- [
- -0.10369610786437988
- ]
- ]
- ],
- [
- [
- [
- -0.07880622893571854
- ]
- ]
- ],
- [
- [
- [
- -0.08206156641244888
- ]
- ]
- ],
- [
- [
- [
- -0.06859724968671799
- ]
- ]
- ],
- [
- [
- [
- -0.04655861482024193
- ]
- ]
- ],
- [
- [
- [
- -0.07751043885946274
- ]
- ]
- ],
- [
- [
- [
- -0.10279050469398499
- ]
- ]
- ],
- [
- [
- [
- -0.06220567226409912
- ]
- ]
- ],
- [
- [
- [
- -0.06367946416139603
- ]
- ]
- ],
- [
- [
- [
- -0.08618101477622986
- ]
- ]
- ],
- [
- [
- [
- -0.06984037905931473
- ]
- ]
- ],
- [
- [
- [
- -0.08608252555131912
- ]
- ]
- ],
- [
- [
- [
- -0.05895625427365303
- ]
- ]
- ],
- [
- [
- [
- -0.07282155007123947
- ]
- ]
- ],
- [
- [
- [
- -0.08441168069839478
- ]
- ]
- ],
- [
- [
- [
- -0.0793905034661293
- ]
- ]
- ],
- [
- [
- [
- -0.06165153160691261
- ]
- ]
- ],
- [
- [
- [
- -0.06794990599155426
- ]
- ]
- ],
- [
- [
- [
- -0.08553123474121094
- ]
- ]
- ],
- [
- [
- [
- -0.11563128232955933
- ]
- ]
- ],
- [
- [
- [
- -0.07279375940561295
- ]
- ]
- ],
- [
- [
- [
- -0.10589838773012161
- ]
- ]
- ],
- [
- [
- [
- -0.09244062006473541
- ]
- ]
- ],
- [
- [
- [
- -0.07044939696788788
- ]
- ]
- ],
- [
- [
- [
- -0.06015930697321892
- ]
- ]
- ],
- [
- [
- [
- -0.08138158172369003
- ]
- ]
- ],
- [
- [
- [
- -0.06608569622039795
- ]
- ]
- ],
- [
- [
- [
- -0.09543434530496597
- ]
- ]
- ],
- [
- [
- [
- -0.08854544907808304
- ]
- ]
- ],
- [
- [
- [
- -0.10462861508131027
- ]
- ]
- ],
- [
- [
- [
- -0.0497627891600132
- ]
- ]
- ],
- [
- [
- [
- -0.09672799706459045
- ]
- ]
- ],
- [
- [
- [
- -0.07059312611818314
- ]
- ]
- ],
- [
- [
- [
- -0.06578957289457321
- ]
- ]
- ],
- [
- [
- [
- -0.07590578496456146
- ]
- ]
- ],
- [
- [
- [
- -0.11472567915916443
- ]
- ]
- ],
- [
- [
- [
- -0.06593683362007141
- ]
- ]
- ],
- [
- [
- [
- -0.11918499320745468
- ]
- ]
- ],
- [
- [
- [
- -0.05244479328393936
- ]
- ]
- ],
- [
- [
- [
- -0.08672211319208145
- ]
- ]
- ],
- [
- [
- [
- -0.10970969498157501
- ]
- ]
- ],
- [
- [
- [
- -0.047886401414871216
- ]
- ]
- ],
- [
- [
- [
- -0.07232394814491272
- ]
- ]
- ],
- [
- [
- [
- -0.07981234043836594
- ]
- ]
- ],
- [
- [
- [
- -0.09312881529331207
- ]
- ]
- ],
- [
- [
- [
- -0.04917316883802414
- ]
- ]
- ],
- [
- [
- [
- -0.11387096345424652
- ]
- ]
- ],
- [
- [
- [
- -0.057647861540317535
- ]
- ]
- ],
- [
- [
- [
- -0.07365357875823975
- ]
- ]
- ],
- [
- [
- [
- -0.07064367085695267
- ]
- ]
- ],
- [
- [
- [
- -0.059707749634981155
- ]
- ]
- ],
- [
- [
- [
- -0.08768116682767868
- ]
- ]
- ],
- [
- [
- [
- -0.10374545305967331
- ]
- ]
- ],
- [
- [
- [
- -0.08074260503053665
- ]
- ]
- ],
- [
- [
- [
- -0.1018538549542427
- ]
- ]
- ],
- [
- [
- [
- -0.06713578850030899
- ]
- ]
- ],
- [
- [
- [
- -0.09989522397518158
- ]
- ]
- ],
- [
- [
- [
- -0.07748159766197205
- ]
- ]
- ],
- [
- [
- [
- -0.08455442637205124
- ]
- ]
- ],
- [
- [
- [
- -0.06822068244218826
- ]
- ]
- ],
- [
- [
- [
- -0.07050459831953049
- ]
- ]
- ],
- [
- [
- [
- -0.05438802391290665
- ]
- ]
- ],
- [
- [
- [
- -0.1406448930501938
- ]
- ]
- ],
- [
- [
- [
- -0.08751429617404938
- ]
- ]
- ],
- [
- [
- [
- -0.1140630766749382
- ]
- ]
- ],
- [
- [
- [
- -0.06903029978275299
- ]
- ]
- ],
- [
- [
- [
- -0.10764588415622711
- ]
- ]
- ],
- [
- [
- [
- -0.11386705189943314
- ]
- ]
- ],
- [
- [
- [
- -0.11003521829843521
- ]
- ]
- ],
- [
- [
- [
- -0.09007588028907776
- ]
- ]
- ],
- [
- [
- [
- -0.09357762336730957
- ]
- ]
- ],
- [
- [
- [
- -0.05080707371234894
- ]
- ]
- ],
- [
- [
- [
- -0.11502858996391296
- ]
- ]
- ],
- [
- [
- [
- -0.08417194336652756
- ]
- ]
- ],
- [
- [
- [
- -0.06930627673864365
- ]
- ]
- ],
- [
- [
- [
- -0.08114674687385559
- ]
- ]
- ],
- [
- [
- [
- -0.07661283016204834
- ]
- ]
- ],
- [
- [
- [
- -0.09288228303194046
- ]
- ]
- ],
- [
- [
- [
- -0.08105069398880005
- ]
- ]
- ],
- [
- [
- [
- -0.08216700702905655
- ]
- ]
- ],
- [
- [
- [
- -0.05887681245803833
- ]
- ]
- ],
- [
- [
- [
- -0.08021915704011917
- ]
- ]
- ],
- [
- [
- [
- -0.04964153841137886
- ]
- ]
- ],
- [
- [
- [
- -0.082636758685112
- ]
- ]
- ],
- [
- [
- [
- -0.07343064248561859
- ]
- ]
- ],
- [
- [
- [
- -0.08868660032749176
- ]
- ]
- ],
- [
- [
- [
- -0.11057309806346893
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.061027444899082184
- ]
- ]
- ],
- [
- [
- [
- -0.07237456738948822
- ]
- ]
- ],
- [
- [
- [
- -0.08362025022506714
- ]
- ]
- ],
- [
- [
- [
- -0.09920638054609299
- ]
- ]
- ],
- [
- [
- [
- -0.1340709775686264
- ]
- ]
- ],
- [
- [
- [
- -0.068463034927845
- ]
- ]
- ],
- [
- [
- [
- -0.09901504218578339
- ]
- ]
- ],
- [
- [
- [
- -0.051814138889312744
- ]
- ]
- ],
- [
- [
- [
- -0.09742005169391632
- ]
- ]
- ],
- [
- [
- [
- -0.09838517010211945
- ]
- ]
- ],
- [
- [
- [
- -0.08340826630592346
- ]
- ]
- ],
- [
- [
- [
- -0.10339716821908951
- ]
- ]
- ],
- [
- [
- [
- -0.09842051565647125
- ]
- ]
- ],
- [
- [
- [
- -0.11166468262672424
- ]
- ]
- ],
- [
- [
- [
- -0.0726441890001297
- ]
- ]
- ],
- [
- [
- [
- -0.07461782544851303
- ]
- ]
- ],
- [
- [
- [
- -0.0886366069316864
- ]
- ]
- ],
- [
- [
- [
- -0.0885624960064888
- ]
- ]
- ],
- [
- [
- [
- -0.06443940103054047
- ]
- ]
- ],
- [
- [
- [
- -0.06891687214374542
- ]
- ]
- ],
- [
- [
- [
- -0.10335055738687515
- ]
- ]
- ],
- [
- [
- [
- -0.05369953066110611
- ]
- ]
- ],
- [
- [
- [
- -0.09181374311447144
- ]
- ]
- ],
- [
- [
- [
- -0.10616336017847061
- ]
- ]
- ],
- [
- [
- [
- -0.08208567649126053
- ]
- ]
- ],
- [
- [
- [
- -0.06072651594877243
- ]
- ]
- ],
- [
- [
- [
- -0.08171014487743378
- ]
- ]
- ],
- [
- [
- [
- -0.05981767550110817
- ]
- ]
- ],
- [
- [
- [
- -0.09345357865095139
- ]
- ]
- ],
- [
- [
- [
- -0.07424092292785645
- ]
- ]
- ],
- [
- [
- [
- -0.09682814031839371
- ]
- ]
- ],
- [
- [
- [
- -0.058758147060871124
- ]
- ]
- ],
- [
- [
- [
- -0.07748310267925262
- ]
- ]
- ],
- [
- [
- [
- -0.09900659322738647
- ]
- ]
- ],
- [
- [
- [
- -0.07590200752019882
- ]
- ]
- ],
- [
- [
- [
- -0.07720610499382019
- ]
- ]
- ],
- [
- [
- [
- -0.07866807281970978
- ]
- ]
- ],
- [
- [
- [
- -0.07187788188457489
- ]
- ]
- ],
- [
- [
- [
- -0.07282344996929169
- ]
- ]
- ],
- [
- [
- [
- -0.06433700025081635
- ]
- ]
- ],
- [
- [
- [
- -0.058762844651937485
- ]
- ]
- ],
- [
- [
- [
- -0.0874427780508995
- ]
- ]
- ],
- [
- [
- [
- -0.06487059593200684
- ]
- ]
- ],
- [
- [
- [
- -0.11605722457170486
- ]
- ]
- ],
- [
- [
- [
- -0.0916747897863388
- ]
- ]
- ],
- [
- [
- [
- -0.08325311541557312
- ]
- ]
- ],
- [
- [
- [
- -0.04256035014986992
- ]
- ]
- ],
- [
- [
- [
- -0.08200070261955261
- ]
- ]
- ],
- [
- [
- [
- -0.0508047416806221
- ]
- ]
- ],
- [
- [
- [
- -0.07978814095258713
- ]
- ]
- ],
- [
- [
- [
- -0.08552281558513641
- ]
- ]
- ],
- [
- [
- [
- -0.09576233476400375
- ]
- ]
- ],
- [
- [
- [
- -0.09629327058792114
- ]
- ]
- ],
- [
- [
- [
- -0.1156291738152504
- ]
- ]
- ],
- [
- [
- [
- -0.08300036936998367
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.07071530073881149
- ]
- ]
- ],
- [
- [
- [
- -0.0348479263484478
- ]
- ]
- ],
- [
- [
- [
- -0.07415910065174103
- ]
- ]
- ],
- [
- [
- [
- -0.07699710875749588
- ]
- ]
- ],
- [
- [
- [
- -0.06657037883996964
- ]
- ]
- ],
- [
- [
- [
- -0.07827860862016678
- ]
- ]
- ],
- [
- [
- [
- -0.10803039371967316
- ]
- ]
- ],
- [
- [
- [
- -0.06596804410219193
- ]
- ]
- ],
- [
- [
- [
- -0.0571834035217762
- ]
- ]
- ],
- [
- [
- [
- -0.07869469374418259
- ]
- ]
- ],
- [
- [
- [
- -0.08134384453296661
- ]
- ]
- ],
- [
- [
- [
- -0.10438890755176544
- ]
- ]
- ],
- [
- [
- [
- -0.06779247522354126
- ]
- ]
- ],
- [
- [
- [
- -0.06886669248342514
- ]
- ]
- ],
- [
- [
- [
- -0.04101809486746788
- ]
- ]
- ],
- [
- [
- [
- -0.09014171361923218
- ]
- ]
- ],
- [
- [
- [
- -0.061023686081171036
- ]
- ]
- ],
- [
- [
- [
- -0.07694423943758011
- ]
- ]
- ],
- [
- [
- [
- -0.05109279602766037
- ]
- ]
- ],
- [
- [
- [
- -0.07907876372337341
- ]
- ]
- ],
- [
- [
- [
- -0.0869704857468605
- ]
- ]
- ],
- [
- [
- [
- -0.0669490396976471
- ]
- ]
- ],
- [
- [
- [
- -0.0744386613368988
- ]
- ]
- ],
- [
- [
- [
- -0.08544960618019104
- ]
- ]
- ],
- [
- [
- [
- -0.09907975047826767
- ]
- ]
- ],
- [
- [
- [
- -0.09627792239189148
- ]
- ]
- ],
- [
- [
- [
- -0.05716738477349281
- ]
- ]
- ],
- [
- [
- [
- -0.0711086317896843
- ]
- ]
- ],
- [
- [
- [
- -0.07541972398757935
- ]
- ]
- ],
- [
- [
- [
- -0.07838006317615509
- ]
- ]
- ],
- [
- [
- [
- -0.0926440954208374
- ]
- ]
- ],
- [
- [
- [
- -0.08513791859149933
- ]
- ]
- ],
- [
- [
- [
- -0.10456174612045288
- ]
- ]
- ],
- [
- [
- [
- -0.05840069800615311
- ]
- ]
- ],
- [
- [
- [
- -0.09138160943984985
- ]
- ]
- ],
- [
- [
- [
- -0.06858164817094803
- ]
- ]
- ],
- [
- [
- [
- -0.09595582634210587
- ]
- ]
- ],
- [
- [
- [
- -0.0843181386590004
- ]
- ]
- ],
- [
- [
- [
- -0.05078091844916344
- ]
- ]
- ],
- [
- [
- [
- -0.07559074461460114
- ]
- ]
- ],
- [
- [
- [
- -0.06553914397954941
- ]
- ]
- ],
- [
- [
- [
- -0.08262522518634796
- ]
- ]
- ],
- [
- [
- [
- -0.05969710648059845
- ]
- ]
- ],
- [
- [
- [
- -0.07184883207082748
- ]
- ]
- ],
- [
- [
- [
- -0.1262529492378235
- ]
- ]
- ],
- [
- [
- [
- -0.11300506442785263
- ]
- ]
- ],
- [
- [
- [
- -0.0700262114405632
- ]
- ]
- ],
- [
- [
- [
- -0.07061286270618439
- ]
- ]
- ],
- [
- [
- [
- -0.07768005132675171
- ]
- ]
- ],
- [
- [
- [
- -0.1345464289188385
- ]
- ]
- ],
- [
- [
- [
- -0.05173536017537117
- ]
- ]
- ],
- [
- [
- [
- -0.05719456076622009
- ]
- ]
- ],
- [
- [
- [
- -0.07841689884662628
- ]
- ]
- ],
- [
- [
- [
- -0.08785444498062134
- ]
- ]
- ],
- [
- [
- [
- -0.09300225973129272
- ]
- ]
- ],
- [
- [
- [
- -0.1019776463508606
- ]
- ]
- ],
- [
- [
- [
- -0.0797286108136177
- ]
- ]
- ],
- [
- [
- [
- -0.05353109538555145
- ]
- ]
- ],
- [
- [
- [
- -0.09331872314214706
- ]
- ]
- ],
- [
- [
- [
- -0.07876253873109818
- ]
- ]
- ],
- [
- [
- [
- -0.06273772567510605
- ]
- ]
- ],
- [
- [
- [
- -0.06122685596346855
- ]
- ]
- ],
- [
- [
- [
- -0.0732191652059555
- ]
- ]
- ],
- [
- [
- [
- -0.07607833296060562
- ]
- ]
- ],
- [
- [
- [
- -0.08797995746135712
- ]
- ]
- ],
- [
- [
- [
- -0.06540414690971375
- ]
- ]
- ],
- [
- [
- [
- -0.08333247154951096
- ]
- ]
- ],
- [
- [
- [
- -0.0571206696331501
- ]
- ]
- ],
- [
- [
- [
- -0.07081213593482971
- ]
- ]
- ],
- [
- [
- [
- -0.10097313672304153
- ]
- ]
- ],
- [
- [
- [
- -0.07970158755779266
- ]
- ]
- ],
- [
- [
- [
- -0.1025502011179924
- ]
- ]
- ],
- [
- [
- [
- -0.12197284400463104
- ]
- ]
- ],
- [
- [
- [
- -0.05492876097559929
- ]
- ]
- ],
- [
- [
- [
- -0.04584122821688652
- ]
- ]
- ],
- [
- [
- [
- -0.10220208764076233
- ]
- ]
- ],
- [
- [
- [
- -0.08692747354507446
- ]
- ]
- ],
- [
- [
- [
- -0.10250584781169891
- ]
- ]
- ],
- [
- [
- [
- -0.08852393925189972
- ]
- ]
- ],
- [
- [
- [
- -0.07071180641651154
- ]
- ]
- ],
- [
- [
- [
- -0.08751723915338516
- ]
- ]
- ],
- [
- [
- [
- -0.0915805846452713
- ]
- ]
- ],
- [
- [
- [
- -0.0974363386631012
- ]
- ]
- ],
- [
- [
- [
- -0.0844995528459549
- ]
- ]
- ],
- [
- [
- [
- -0.10337289422750473
- ]
- ]
- ],
- [
- [
- [
- -0.05637650191783905
- ]
- ]
- ],
- [
- [
- [
- -0.08052709698677063
- ]
- ]
- ],
- [
- [
- [
- -0.11812326312065125
- ]
- ]
- ],
- [
- [
- [
- -0.07220408320426941
- ]
- ]
- ],
- [
- [
- [
- -0.07470788061618805
- ]
- ]
- ],
- [
- [
- [
- -0.0620674267411232
- ]
- ]
- ],
- [
- [
- [
- -0.07427623867988586
- ]
- ]
- ],
- [
- [
- [
- -0.08792776614427567
- ]
- ]
- ],
- [
- [
- [
- -0.04598432406783104
- ]
- ]
- ],
- [
- [
- [
- -0.06669151782989502
- ]
- ]
- ],
- [
- [
- [
- -0.07933466136455536
- ]
- ]
- ],
- [
- [
- [
- -0.08558259904384613
- ]
- ]
- ],
- [
- [
- [
- -0.08210068941116333
- ]
- ]
- ],
- [
- [
- [
- -0.03772334009408951
- ]
- ]
- ],
- [
- [
- [
- -0.09365830570459366
- ]
- ]
- ],
- [
- [
- [
- -0.07640885561704636
- ]
- ]
- ],
- [
- [
- [
- -0.09812533110380173
- ]
- ]
- ],
- [
- [
- [
- -0.09350292384624481
- ]
- ]
- ],
- [
- [
- [
- -0.07310803979635239
- ]
- ]
- ],
- [
- [
- [
- -0.07064316421747208
- ]
- ]
- ],
- [
- [
- [
- -0.1142919510602951
- ]
- ]
- ],
- [
- [
- [
- -0.07129829376935959
- ]
- ]
- ],
- [
- [
- [
- -0.05380614474415779
- ]
- ]
- ],
- [
- [
- [
- -0.10391110181808472
- ]
- ]
- ],
- [
- [
- [
- -0.09388258308172226
- ]
- ]
- ],
- [
- [
- [
- -0.0752771645784378
- ]
- ]
- ],
- [
- [
- [
- -0.06332244724035263
- ]
- ]
- ],
- [
- [
- [
- -0.08173949271440506
- ]
- ]
- ],
- [
- [
- [
- -0.05839203670620918
- ]
- ]
- ],
- [
- [
- [
- -0.06639210879802704
- ]
- ]
- ],
- [
- [
- [
- -0.09258720278739929
- ]
- ]
- ],
- [
- [
- [
- -0.07380016893148422
- ]
- ]
- ],
- [
- [
- [
- -0.12081968039274216
- ]
- ]
- ],
- [
- [
- [
- -0.06607155501842499
- ]
- ]
- ],
- [
- [
- [
- -0.07054609060287476
- ]
- ]
- ],
- [
- [
- [
- -0.06910192221403122
- ]
- ]
- ],
- [
- [
- [
- -0.09816881269216537
- ]
- ]
- ],
- [
- [
- [
- -0.09072636812925339
- ]
- ]
- ],
- [
- [
- [
- -0.10704080760478973
- ]
- ]
- ],
- [
- [
- [
- -0.09461311995983124
- ]
- ]
- ],
- [
- [
- [
- -0.09698992967605591
- ]
- ]
- ],
- [
- [
- [
- -0.09584659337997437
- ]
- ]
- ],
- [
- [
- [
- -0.0881393551826477
- ]
- ]
- ],
- [
- [
- [
- -0.09438586980104446
- ]
- ]
- ],
- [
- [
- [
- -0.05823419988155365
- ]
- ]
- ],
- [
- [
- [
- -0.07889480888843536
- ]
- ]
- ],
- [
- [
- [
- -0.061699140816926956
- ]
- ]
- ],
- [
- [
- [
- -0.06455875933170319
- ]
- ]
- ],
- [
- [
- [
- -0.09467510879039764
- ]
- ]
- ],
- [
- [
- [
- -0.08654667437076569
- ]
- ]
- ],
- [
- [
- [
- -0.10002695769071579
- ]
- ]
- ],
- [
- [
- [
- -0.09199295938014984
- ]
- ]
- ],
- [
- [
- [
- -0.06514525413513184
- ]
- ]
- ],
- [
- [
- [
- -0.08497554063796997
- ]
- ]
- ],
- [
- [
- [
- -0.047742415219545364
- ]
- ]
- ],
- [
- [
- [
- -0.055402256548404694
- ]
- ]
- ],
- [
- [
- [
- -0.11207106709480286
- ]
- ]
- ],
- [
- [
- [
- -0.06313778460025787
- ]
- ]
- ],
- [
- [
- [
- -0.07136573642492294
- ]
- ]
- ],
- [
- [
- [
- -0.08368609845638275
- ]
- ]
- ],
- [
- [
- [
- -0.07573843747377396
- ]
- ]
- ],
- [
- [
- [
- -0.10183040052652359
- ]
- ]
- ],
- [
- [
- [
- -0.07038111984729767
- ]
- ]
- ],
- [
- [
- [
- -0.08228520303964615
- ]
- ]
- ],
- [
- [
- [
- -0.11264616250991821
- ]
- ]
- ],
- [
- [
- [
- -0.09939232468605042
- ]
- ]
- ],
- [
- [
- [
- -0.08426352590322495
- ]
- ]
- ],
- [
- [
- [
- -0.09023299813270569
- ]
- ]
- ],
- [
- [
- [
- -0.09270405024290085
- ]
- ]
- ],
- [
- [
- [
- -0.07472552359104156
- ]
- ]
- ],
- [
- [
- [
- -0.10498982667922974
- ]
- ]
- ],
- [
- [
- [
- -0.08856912702322006
- ]
- ]
- ],
- [
- [
- [
- -0.11589186638593674
- ]
- ]
- ],
- [
- [
- [
- -0.07473103702068329
- ]
- ]
- ],
- [
- [
- [
- -0.07187560200691223
- ]
- ]
- ],
- [
- [
- [
- -0.1022312119603157
- ]
- ]
- ],
- [
- [
- [
- -0.07976190000772476
- ]
- ]
- ],
- [
- [
- [
- -0.04627872258424759
- ]
- ]
- ],
- [
- [
- [
- -0.0847841277718544
- ]
- ]
- ],
- [
- [
- [
- -0.08206462860107422
- ]
- ]
- ],
- [
- [
- [
- -0.062180060893297195
- ]
- ]
- ],
- [
- [
- [
- -0.08854856342077255
- ]
- ]
- ],
- [
- [
- [
- -0.08091577142477036
- ]
- ]
- ],
- [
- [
- [
- -0.04204418510198593
- ]
- ]
- ],
- [
- [
- [
- -0.08008252084255219
- ]
- ]
- ],
- [
- [
- [
- -0.08155986666679382
- ]
- ]
- ],
- [
- [
- [
- -0.09803514182567596
- ]
- ]
- ],
- [
- [
- [
- -0.04373312368988991
- ]
- ]
- ],
- [
- [
- [
- -0.07711176574230194
- ]
- ]
- ],
- [
- [
- [
- -0.06366907805204391
- ]
- ]
- ],
- [
- [
- [
- -0.0883634090423584
- ]
- ]
- ],
- [
- [
- [
- -0.10297742486000061
- ]
- ]
- ],
- [
- [
- [
- -0.0816849023103714
- ]
- ]
- ],
- [
- [
- [
- -0.11690335720777512
- ]
- ]
- ],
- [
- [
- [
- -0.0785883441567421
- ]
- ]
- ],
- [
- [
- [
- -0.03911576792597771
- ]
- ]
- ],
- [
- [
- [
- -0.07280317693948746
- ]
- ]
- ],
- [
- [
- [
- -0.10225744545459747
- ]
- ]
- ],
- [
- [
- [
- -0.09952295571565628
- ]
- ]
- ],
- [
- [
- [
- -0.0732448622584343
- ]
- ]
- ],
- [
- [
- [
- -0.10555241256952286
- ]
- ]
- ],
- [
- [
- [
- -0.07029056549072266
- ]
- ]
- ],
- [
- [
- [
- -0.08478783071041107
- ]
- ]
- ],
- [
- [
- [
- -0.08725158870220184
- ]
- ]
- ],
- [
- [
- [
- -0.07289407402276993
- ]
- ]
- ],
- [
- [
- [
- -0.08817575871944427
- ]
- ]
- ],
- [
- [
- [
- -0.07154295593500137
- ]
- ]
- ],
- [
- [
- [
- -0.07975222915410995
- ]
- ]
- ],
- [
- [
- [
- -0.05968209728598595
- ]
- ]
- ],
- [
- [
- [
- -0.06454551964998245
- ]
- ]
- ],
- [
- [
- [
- -0.06266672909259796
- ]
- ]
- ],
- [
- [
- [
- -0.08545352518558502
- ]
- ]
- ],
- [
- [
- [
- -0.0918397456407547
- ]
- ]
- ],
- [
- [
- [
- -0.054640140384435654
- ]
- ]
- ],
- [
- [
- [
- -0.10734404623508453
- ]
- ]
- ],
- [
- [
- [
- -0.10849961638450623
- ]
- ]
- ],
- [
- [
- [
- -0.10824594646692276
- ]
- ]
- ],
- [
- [
- [
- -0.1079808846116066
- ]
- ]
- ],
- [
- [
- [
- -0.07557680457830429
- ]
- ]
- ],
- [
- [
- [
- -0.053232885897159576
- ]
- ]
- ],
- [
- [
- [
- -0.08438645303249359
- ]
- ]
- ],
- [
- [
- [
- -0.06537612527608871
- ]
- ]
- ],
- [
- [
- [
- -0.056556422263383865
- ]
- ]
- ],
- [
- [
- [
- -0.08867942541837692
- ]
- ]
- ],
- [
- [
- [
- -0.11264696717262268
- ]
- ]
- ],
- [
- [
- [
- -0.06738556921482086
- ]
- ]
- ],
- [
- [
- [
- -0.09851531684398651
- ]
- ]
- ],
- [
- [
- [
- -0.0782991424202919
- ]
- ]
- ],
- [
- [
- [
- -0.0656714141368866
- ]
- ]
- ],
- [
- [
- [
- -0.075212262570858
- ]
- ]
- ],
- [
- [
- [
- -0.07360821962356567
- ]
- ]
- ],
- [
- [
- [
- -0.0937250629067421
- ]
- ]
- ],
- [
- [
- [
- -0.09428814053535461
- ]
- ]
- ],
- [
- [
- [
- -0.09257518500089645
- ]
- ]
- ],
- [
- [
- [
- -0.10180794447660446
- ]
- ]
- ],
- [
- [
- [
- -0.08753816783428192
- ]
- ]
- ],
- [
- [
- [
- -0.08142414689064026
- ]
- ]
- ],
- [
- [
- [
- -0.07070966064929962
- ]
- ]
- ],
- [
- [
- [
- -0.058878082782030106
- ]
- ]
- ],
- [
- [
- [
- -0.07797295600175858
- ]
- ]
- ],
- [
- [
- [
- -0.09175701439380646
- ]
- ]
- ],
- [
- [
- [
- -0.058204930275678635
- ]
- ]
- ],
- [
- [
- [
- -0.10948582738637924
- ]
- ]
- ],
- [
- [
- [
- -0.08616431057453156
- ]
- ]
- ],
- [
- [
- [
- -0.09029332548379898
- ]
- ]
- ],
- [
- [
- [
- -0.08352357149124146
- ]
- ]
- ],
- [
- [
- [
- -0.05958261340856552
- ]
- ]
- ],
- [
- [
- [
- -0.09466705471277237
- ]
- ]
- ],
- [
- [
- [
- -0.07258259505033493
- ]
- ]
- ],
- [
- [
- [
- -0.04744154214859009
- ]
- ]
- ],
- [
- [
- [
- -0.0699552595615387
- ]
- ]
- ],
- [
- [
- [
- -0.10032375901937485
- ]
- ]
- ],
- [
- [
- [
- -0.050392817705869675
- ]
- ]
- ],
- [
- [
- [
- -0.0665903389453888
- ]
- ]
- ],
- [
- [
- [
- -0.056582026183605194
- ]
- ]
- ],
- [
- [
- [
- -0.11301292479038239
- ]
- ]
- ],
- [
- [
- [
- -0.07282225042581558
- ]
- ]
- ],
- [
- [
- [
- -0.08253932744264603
- ]
- ]
- ],
- [
- [
- [
- -0.07056485861539841
- ]
- ]
- ],
- [
- [
- [
- -0.08465635776519775
- ]
- ]
- ],
- [
- [
- [
- -0.08125829696655273
- ]
- ]
- ],
- [
- [
- [
- -0.08017205446958542
- ]
- ]
- ],
- [
- [
- [
- -0.05288570746779442
- ]
- ]
- ],
- [
- [
- [
- -0.08876357227563858
- ]
- ]
- ],
- [
- [
- [
- -0.06703150272369385
- ]
- ]
- ],
- [
- [
- [
- -0.07813320308923721
- ]
- ]
- ],
- [
- [
- [
- -0.06687869131565094
- ]
- ]
- ],
- [
- [
- [
- -0.06325667351484299
- ]
- ]
- ],
- [
- [
- [
- -0.09541445225477219
- ]
- ]
- ],
- [
- [
- [
- -0.08690016716718674
- ]
- ]
- ],
- [
- [
- [
- -0.08979479223489761
- ]
- ]
- ],
- [
- [
- [
- -0.04826977476477623
- ]
- ]
- ],
- [
- [
- [
- -0.07010262459516525
- ]
- ]
- ],
- [
- [
- [
- -0.04866395145654678
- ]
- ]
- ],
- [
- [
- [
- -0.08788633346557617
- ]
- ]
- ],
- [
- [
- [
- -0.1175958439707756
- ]
- ]
- ],
- [
- [
- [
- -0.08649478107690811
- ]
- ]
- ],
- [
- [
- [
- -0.0749683827161789
- ]
- ]
- ],
- [
- [
- [
- -0.05845803767442703
- ]
- ]
- ],
- [
- [
- [
- -0.09801016002893448
- ]
- ]
- ],
- [
- [
- [
- -0.06879256665706635
- ]
- ]
- ],
- [
- [
- [
- -0.07820084691047668
- ]
- ]
- ],
- [
- [
- [
- -0.10106252133846283
- ]
- ]
- ],
- [
- [
- [
- -0.0389900878071785
- ]
- ]
- ],
- [
- [
- [
- -0.07603240758180618
- ]
- ]
- ],
- [
- [
- [
- -0.08147808164358139
- ]
- ]
- ],
- [
- [
- [
- -0.10170036554336548
- ]
- ]
- ],
- [
- [
- [
- -0.07083087414503098
- ]
- ]
- ],
- [
- [
- [
- -0.09272570163011551
- ]
- ]
- ],
- [
- [
- [
- -0.06662170588970184
- ]
- ]
- ],
- [
- [
- [
- -0.06983763724565506
- ]
- ]
- ],
- [
- [
- [
- -0.09116936475038528
- ]
- ]
- ],
- [
- [
- [
- -0.10190749913454056
- ]
- ]
- ],
- [
- [
- [
- -0.08057215809822083
- ]
- ]
- ],
- [
- [
- [
- -0.12368305027484894
- ]
- ]
- ],
- [
- [
- [
- -0.05933622270822525
- ]
- ]
- ],
- [
- [
- [
- -0.05659732222557068
- ]
- ]
- ],
- [
- [
- [
- -0.0698203444480896
- ]
- ]
- ],
- [
- [
- [
- -0.06823895126581192
- ]
- ]
- ],
- [
- [
- [
- -0.0858592689037323
- ]
- ]
- ],
- [
- [
- [
- -0.07350180298089981
- ]
- ]
- ],
- [
- [
- [
- -0.06860005110502243
- ]
- ]
- ],
- [
- [
- [
- -0.050324905663728714
- ]
- ]
- ],
- [
- [
- [
- -0.07189030200242996
- ]
- ]
- ],
- [
- [
- [
- -0.08609016239643097
- ]
- ]
- ],
- [
- [
- [
- -0.10099496692419052
- ]
- ]
- ],
- [
- [
- [
- -0.08254224807024002
- ]
- ]
- ],
- [
- [
- [
- -0.07932084053754807
- ]
- ]
- ],
- [
- [
- [
- -0.09889435023069382
- ]
- ]
- ],
- [
- [
- [
- -0.07703230530023575
- ]
- ]
- ],
- [
- [
- [
- -0.09348131716251373
- ]
- ]
- ],
- [
- [
- [
- -0.07371295243501663
- ]
- ]
- ],
- [
- [
- [
- -0.0697341039776802
- ]
- ]
- ],
- [
- [
- [
- -0.08877726644277573
- ]
- ]
- ],
- [
- [
- [
- -0.08811005204916
- ]
- ]
- ],
- [
- [
- [
- -0.09618402272462845
- ]
- ]
- ],
- [
- [
- [
- -0.07690417021512985
- ]
- ]
- ],
- [
- [
- [
- -0.05107318237423897
- ]
- ]
- ],
- [
- [
- [
- -0.14495573937892914
- ]
- ]
- ],
- [
- [
- [
- -0.10577777028083801
- ]
- ]
- ],
- [
- [
- [
- -0.07263974100351334
- ]
- ]
- ],
- [
- [
- [
- -0.10268343240022659
- ]
- ]
- ],
- [
- [
- [
- -0.060619913041591644
- ]
- ]
- ],
- [
- [
- [
- -0.06874103844165802
- ]
- ]
- ],
- [
- [
- [
- -0.07998576015233994
- ]
- ]
- ],
- [
- [
- [
- -0.06425560265779495
- ]
- ]
- ],
- [
- [
- [
- -0.12438056617975235
- ]
- ]
- ],
- [
- [
- [
- -0.06132021173834801
- ]
- ]
- ],
- [
- [
- [
- -0.07990734279155731
- ]
- ]
- ],
- [
- [
- [
- -0.06922955811023712
- ]
- ]
- ],
- [
- [
- [
- -0.05405823886394501
- ]
- ]
- ],
- [
- [
- [
- -0.07134158909320831
- ]
- ]
- ],
- [
- [
- [
- -0.08228940516710281
- ]
- ]
- ],
- [
- [
- [
- -0.07209205627441406
- ]
- ]
- ],
- [
- [
- [
- -0.07395186275243759
- ]
- ]
- ],
- [
- [
- [
- -0.04049632325768471
- ]
- ]
- ],
- [
- [
- [
- -0.06080811098217964
- ]
- ]
- ],
- [
- [
- [
- -0.0661211609840393
- ]
- ]
- ],
- [
- [
- [
- -0.09525733441114426
- ]
- ]
- ],
- [
- [
- [
- -0.08097393065690994
- ]
- ]
- ],
- [
- [
- [
- -0.1116902157664299
- ]
- ]
- ],
- [
- [
- [
- -0.047268226742744446
- ]
- ]
- ],
- [
- [
- [
- -0.08791053295135498
- ]
- ]
- ],
- [
- [
- [
- -0.08504649996757507
- ]
- ]
- ],
- [
- [
- [
- -0.12071584910154343
- ]
- ]
- ],
- [
- [
- [
- -0.06961110234260559
- ]
- ]
- ],
- [
- [
- [
- -0.08359209448099136
- ]
- ]
- ],
- [
- [
- [
- -0.05157646909356117
- ]
- ]
- ],
- [
- [
- [
- -0.08283037692308426
- ]
- ]
- ],
- [
- [
- [
- -0.07668830454349518
- ]
- ]
- ],
- [
- [
- [
- -0.05593942478299141
- ]
- ]
- ],
- [
- [
- [
- -0.08263685554265976
- ]
- ]
- ],
- [
- [
- [
- -0.08099956065416336
- ]
- ]
- ],
- [
- [
- [
- -0.057596489787101746
- ]
- ]
- ],
- [
- [
- [
- -0.06627891212701797
- ]
- ]
- ],
- [
- [
- [
- -0.05994277447462082
- ]
- ]
- ],
- [
- [
- [
- -0.10571780800819397
- ]
- ]
- ],
- [
- [
- [
- -0.052054766565561295
- ]
- ]
- ],
- [
- [
- [
- -0.09044913202524185
- ]
- ]
- ],
- [
- [
- [
- -0.09348784387111664
- ]
- ]
- ],
- [
- [
- [
- -0.04625977203249931
- ]
- ]
- ],
- [
- [
- [
- -0.07062697410583496
- ]
- ]
- ],
- [
- [
- [
- -0.08242160826921463
- ]
- ]
- ],
- [
- [
- [
- -0.11613553017377853
- ]
- ]
- ],
- [
- [
- [
- -0.07673363387584686
- ]
- ]
- ],
- [
- [
- [
- -0.05518975481390953
- ]
- ]
- ],
- [
- [
- [
- -0.09465054422616959
- ]
- ]
- ],
- [
- [
- [
- -0.06729406863451004
- ]
- ]
- ],
- [
- [
- [
- -0.05551871657371521
- ]
- ]
- ],
- [
- [
- [
- -0.07817549258470535
- ]
- ]
- ],
- [
- [
- [
- -0.06399229913949966
- ]
- ]
- ],
- [
- [
- [
- -0.05107778310775757
- ]
- ]
- ],
- [
- [
- [
- -0.06149657443165779
- ]
- ]
- ],
- [
- [
- [
- -0.07468979805707932
- ]
- ]
- ],
- [
- [
- [
- -0.06120368465781212
- ]
- ]
- ],
- [
- [
- [
- -0.05948040634393692
- ]
- ]
- ],
- [
- [
- [
- -0.064889095723629
- ]
- ]
- ],
- [
- [
- [
- -0.07499144971370697
- ]
- ]
- ],
- [
- [
- [
- -0.07804940640926361
- ]
- ]
- ],
- [
- [
- [
- -0.08943097293376923
- ]
- ]
- ],
- [
- [
- [
- -0.08910474181175232
- ]
- ]
- ],
- [
- [
- [
- -0.09501776844263077
- ]
- ]
- ],
- [
- [
- [
- -0.10549020022153854
- ]
- ]
- ],
- [
- [
- [
- -0.08772651851177216
- ]
- ]
- ],
- [
- [
- [
- -0.09480185806751251
- ]
- ]
- ],
- [
- [
- [
- -0.039753612130880356
- ]
- ]
- ],
- [
- [
- [
- -0.061523739248514175
- ]
- ]
- ],
- [
- [
- [
- -0.09368418902158737
- ]
- ]
- ],
- [
- [
- [
- -0.07691100239753723
- ]
- ]
- ],
- [
- [
- [
- -0.073822021484375
- ]
- ]
- ],
- [
- [
- [
- -0.05471666157245636
- ]
- ]
- ],
- [
- [
- [
- -0.09052624553442001
- ]
- ]
- ],
- [
- [
- [
- -0.08911649137735367
- ]
- ]
- ],
- [
- [
- [
- -0.043947428464889526
- ]
- ]
- ],
- [
- [
- [
- -0.03806280344724655
- ]
- ]
- ],
- [
- [
- [
- -0.08651432394981384
- ]
- ]
- ],
- [
- [
- [
- -0.08740046620368958
- ]
- ]
- ],
- [
- [
- [
- -0.09589625149965286
- ]
- ]
- ],
- [
- [
- [
- -0.0635964497923851
- ]
- ]
- ],
- [
- [
- [
- -0.07670340687036514
- ]
- ]
- ],
- [
- [
- [
- -0.10258164256811142
- ]
- ]
- ],
- [
- [
- [
- -0.05519557371735573
- ]
- ]
- ],
- [
- [
- [
- -0.058486368507146835
- ]
- ]
- ],
- [
- [
- [
- -0.1136150062084198
- ]
- ]
- ],
- [
- [
- [
- -0.057602450251579285
- ]
- ]
- ],
- [
- [
- [
- -0.09003745019435883
- ]
- ]
- ],
- [
- [
- [
- -0.09422420710325241
- ]
- ]
- ],
- [
- [
- [
- -0.08816602826118469
- ]
- ]
- ],
- [
- [
- [
- -0.06102027744054794
- ]
- ]
- ],
- [
- [
- [
- -0.057667434215545654
- ]
- ]
- ],
- [
- [
- [
- -0.052378516644239426
- ]
- ]
- ],
- [
- [
- [
- -0.0915367603302002
- ]
- ]
- ],
- [
- [
- [
- -0.11141592264175415
- ]
- ]
- ],
- [
- [
- [
- -0.07275049388408661
- ]
- ]
- ],
- [
- [
- [
- -0.09853202849626541
- ]
- ]
- ],
- [
- [
- [
- -0.05745477229356766
- ]
- ]
- ],
- [
- [
- [
- -0.1042008325457573
- ]
- ]
- ],
- [
- [
- [
- -0.084428571164608
- ]
- ]
- ],
- [
- [
- [
- -0.03213006630539894
- ]
- ]
- ],
- [
- [
- [
- -0.053230106830596924
- ]
- ]
- ],
- [
- [
- [
- -0.056356336921453476
- ]
- ]
- ],
- [
- [
- [
- -0.029592957347631454
- ]
- ]
- ],
- [
- [
- [
- -0.03155312314629555
- ]
- ]
- ],
- [
- [
- [
- -0.10173670202493668
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.06684163212776184
- ]
- ]
- ],
- [
- [
- [
- -0.05585940182209015
- ]
- ]
- ],
- [
- [
- [
- -0.14228609204292297
- ]
- ]
- ],
- [
- [
- [
- -0.10057239234447479
- ]
- ]
- ],
- [
- [
- [
- -0.11406401544809341
- ]
- ]
- ],
- [
- [
- [
- -0.07664996385574341
- ]
- ]
- ],
- [
- [
- [
- -0.08341754972934723
- ]
- ]
- ],
- [
- [
- [
- -0.09490326046943665
- ]
- ]
- ],
- [
- [
- [
- -0.07314691692590714
- ]
- ]
- ],
- [
- [
- [
- -0.07535300403833389
- ]
- ]
- ],
- [
- [
- [
- -0.07943447679281235
- ]
- ]
- ],
- [
- [
- [
- -0.05892981216311455
- ]
- ]
- ],
- [
- [
- [
- -0.058823566883802414
- ]
- ]
- ],
- [
- [
- [
- -0.09280380606651306
- ]
- ]
- ],
- [
- [
- [
- -0.08679395169019699
- ]
- ]
- ],
- [
- [
- [
- -0.10126554220914841
- ]
- ]
- ],
- [
- [
- [
- -0.08906863629817963
- ]
- ]
- ],
- [
- [
- [
- -0.054329100996255875
- ]
- ]
- ],
- [
- [
- [
- -0.12931326031684875
- ]
- ]
- ],
- [
- [
- [
- -0.13117115199565887
- ]
- ]
- ],
- [
- [
- [
- -0.07586194574832916
- ]
- ]
- ],
- [
- [
- [
- -0.07552564144134521
- ]
- ]
- ],
- [
- [
- [
- -0.08194880187511444
- ]
- ]
- ],
- [
- [
- [
- -0.08497414737939835
- ]
- ]
- ],
- [
- [
- [
- -0.11016431450843811
- ]
- ]
- ],
- [
- [
- [
- -0.0916135236620903
- ]
- ]
- ],
- [
- [
- [
- -0.09609591215848923
- ]
- ]
- ],
- [
- [
- [
- -0.08644851297140121
- ]
- ]
- ],
- [
- [
- [
- -0.061881810426712036
- ]
- ]
- ],
- [
- [
- [
- -0.052320774644613266
- ]
- ]
- ],
- [
- [
- [
- -0.09620192646980286
- ]
- ]
- ],
- [
- [
- [
- -0.0960218533873558
- ]
- ]
- ],
- [
- [
- [
- -0.09636559337377548
- ]
- ]
- ],
- [
- [
- [
- -0.09018382430076599
- ]
- ]
- ],
- [
- [
- [
- -0.0757909044623375
- ]
- ]
- ],
- [
- [
- [
- -0.1937423050403595
- ]
- ]
- ],
- [
- [
- [
- -0.06648385524749756
- ]
- ]
- ],
- [
- [
- [
- -0.06308578699827194
- ]
- ]
- ],
- [
- [
- [
- -0.0810537114739418
- ]
- ]
- ],
- [
- [
- [
- -0.09674353897571564
- ]
- ]
- ],
- [
- [
- [
- -0.0951564684510231
- ]
- ]
- ],
- [
- [
- [
- -0.05451652780175209
- ]
- ]
- ],
- [
- [
- [
- -0.153913214802742
- ]
- ]
- ],
- [
- [
- [
- -0.08305449038743973
- ]
- ]
- ],
- [
- [
- [
- -0.08001574128866196
- ]
- ]
- ],
- [
- [
- [
- -0.08307718485593796
- ]
- ]
- ],
- [
- [
- [
- -0.09296419471502304
- ]
- ]
- ],
- [
- [
- [
- -0.10116496682167053
- ]
- ]
- ],
- [
- [
- [
- -0.11452315002679825
- ]
- ]
- ],
- [
- [
- [
- -0.059926025569438934
- ]
- ]
- ],
- [
- [
- [
- -0.14107368886470795
- ]
- ]
- ],
- [
- [
- [
- -0.09363594651222229
- ]
- ]
- ],
- [
- [
- [
- -0.05010456219315529
- ]
- ]
- ],
- [
- [
- [
- -0.03640623018145561
- ]
- ]
- ],
- [
- [
- [
- -0.09134142100811005
- ]
- ]
- ],
- [
- [
- [
- -0.07697655260562897
- ]
- ]
- ],
- [
- [
- [
- -0.10864877700805664
- ]
- ]
- ],
- [
- [
- [
- -0.10198307782411575
- ]
- ]
- ],
- [
- [
- [
- -0.1042611300945282
- ]
- ]
- ],
- [
- [
- [
- -0.03458947688341141
- ]
- ]
- ],
- [
- [
- [
- -0.08694835007190704
- ]
- ]
- ],
- [
- [
- [
- -0.053618576377630234
- ]
- ]
- ],
- [
- [
- [
- -0.06671763211488724
- ]
- ]
- ],
- [
- [
- [
- -0.09233434498310089
- ]
- ]
- ],
- [
- [
- [
- -0.06116355210542679
- ]
- ]
- ],
- [
- [
- [
- -0.07294467836618423
- ]
- ]
- ],
- [
- [
- [
- -0.05872868373990059
- ]
- ]
- ],
- [
- [
- [
- -0.08115499466657639
- ]
- ]
- ],
- [
- [
- [
- -0.1184283196926117
- ]
- ]
- ],
- [
- [
- [
- -0.09759453684091568
- ]
- ]
- ],
- [
- [
- [
- -0.13155603408813477
- ]
- ]
- ],
- [
- [
- [
- -0.0788569226861
- ]
- ]
- ],
- [
- [
- [
- -0.06619301438331604
- ]
- ]
- ],
- [
- [
- [
- -0.07956621050834656
- ]
- ]
- ],
- [
- [
- [
- -0.09835013747215271
- ]
- ]
- ],
- [
- [
- [
- -0.07436123490333557
- ]
- ]
- ],
- [
- [
- [
- -0.05061725899577141
- ]
- ]
- ],
- [
- [
- [
- -0.04629236459732056
- ]
- ]
- ],
- [
- [
- [
- -0.09435953944921494
- ]
- ]
- ],
- [
- [
- [
- -0.0668959841132164
- ]
- ]
- ],
- [
- [
- [
- -0.08068779110908508
- ]
- ]
- ],
- [
- [
- [
- -0.08070873469114304
- ]
- ]
- ],
- [
- [
- [
- -0.07939345389604568
- ]
- ]
- ],
- [
- [
- [
- -0.15484188497066498
- ]
- ]
- ],
- [
- [
- [
- -0.0919148251414299
- ]
- ]
- ],
- [
- [
- [
- -0.07471802830696106
- ]
- ]
- ],
- [
- [
- [
- -0.08610639721155167
- ]
- ]
- ],
- [
- [
- [
- -0.07699315994977951
- ]
- ]
- ],
- [
- [
- [
- -0.08712373673915863
- ]
- ]
- ],
- [
- [
- [
- -0.04791928455233574
- ]
- ]
- ],
- [
- [
- [
- -0.08226808160543442
- ]
- ]
- ],
- [
- [
- [
- -0.0632556900382042
- ]
- ]
- ],
- [
- [
- [
- -0.1262573003768921
- ]
- ]
- ],
- [
- [
- [
- -0.10595264285802841
- ]
- ]
- ],
- [
- [
- [
- -0.07297582179307938
- ]
- ]
- ],
- [
- [
- [
- -0.09953981637954712
- ]
- ]
- ],
- [
- [
- [
- -0.08194190263748169
- ]
- ]
- ],
- [
- [
- [
- -0.07714556902647018
- ]
- ]
- ],
- [
- [
- [
- -0.12346109747886658
- ]
- ]
- ],
- [
- [
- [
- -0.06130913645029068
- ]
- ]
- ],
- [
- [
- [
- -0.09535396099090576
- ]
- ]
- ],
- [
- [
- [
- -0.1122744008898735
- ]
- ]
- ],
- [
- [
- [
- -0.1003168523311615
- ]
- ]
- ],
- [
- [
- [
- -0.08037327975034714
- ]
- ]
- ],
- [
- [
- [
- -0.06776654720306396
- ]
- ]
- ],
- [
- [
- [
- -0.0879741758108139
- ]
- ]
- ],
- [
- [
- [
- -0.06921051442623138
- ]
- ]
- ],
- [
- [
- [
- -0.06913849711418152
- ]
- ]
- ],
- [
- [
- [
- -0.07223470509052277
- ]
- ]
- ],
- [
- [
- [
- -0.07350557297468185
- ]
- ]
- ],
- [
- [
- [
- -0.07994816452264786
- ]
- ]
- ],
- [
- [
- [
- -0.07081999629735947
- ]
- ]
- ],
- [
- [
- [
- -0.08315808326005936
- ]
- ]
- ],
- [
- [
- [
- -0.09268578141927719
- ]
- ]
- ],
- [
- [
- [
- -0.12025230377912521
- ]
- ]
- ],
- [
- [
- [
- -0.06363484263420105
- ]
- ]
- ],
- [
- [
- [
- -0.0522334985435009
- ]
- ]
- ],
- [
- [
- [
- -0.04518759995698929
- ]
- ]
- ],
- [
- [
- [
- -0.10059089213609695
- ]
- ]
- ],
- [
- [
- [
- -0.1013714149594307
- ]
- ]
- ],
- [
- [
- [
- -0.06423552334308624
- ]
- ]
- ],
- [
- [
- [
- -0.09093166142702103
- ]
- ]
- ],
- [
- [
- [
- -0.08673609793186188
- ]
- ]
- ],
- [
- [
- [
- -0.07875305414199829
- ]
- ]
- ],
- [
- [
- [
- -0.03263058885931969
- ]
- ]
- ],
- [
- [
- [
- -0.11134500801563263
- ]
- ]
- ],
- [
- [
- [
- -0.05054020136594772
- ]
- ]
- ],
- [
- [
- [
- -0.07523494213819504
- ]
- ]
- ],
- [
- [
- [
- -0.07799956947565079
- ]
- ]
- ],
- [
- [
- [
- -0.12234081327915192
- ]
- ]
- ],
- [
- [
- [
- -0.06707817316055298
- ]
- ]
- ],
- [
- [
- [
- -0.09497781097888947
- ]
- ]
- ],
- [
- [
- [
- -0.0788748487830162
- ]
- ]
- ],
- [
- [
- [
- -0.07790723443031311
- ]
- ]
- ],
- [
- [
- [
- -0.07760436832904816
- ]
- ]
- ],
- [
- [
- [
- -0.0807025209069252
- ]
- ]
- ],
- [
- [
- [
- -0.0785837173461914
- ]
- ]
- ],
- [
- [
- [
- -0.089628204703331
- ]
- ]
- ],
- [
- [
- [
- -0.0907866582274437
- ]
- ]
- ],
- [
- [
- [
- -0.08295813947916031
- ]
- ]
- ],
- [
- [
- [
- -0.06879930198192596
- ]
- ]
- ],
- [
- [
- [
- -0.08176907151937485
- ]
- ]
- ],
- [
- [
- [
- -0.05675710365176201
- ]
- ]
- ],
- [
- [
- [
- -0.08753447979688644
- ]
- ]
- ],
- [
- [
- [
- -0.07372986525297165
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.05830051004886627
- ]
- ]
- ],
- [
- [
- [
- 0.07807084918022156
- ]
- ]
- ],
- [
- [
- [
- 0.058807969093322754
- ]
- ]
- ],
- [
- [
- [
- 0.07144374400377274
- ]
- ]
- ],
- [
- [
- [
- 0.10358694940805435
- ]
- ]
- ],
- [
- [
- [
- 0.07008533924818039
- ]
- ]
- ],
- [
- [
- [
- 0.09185867011547089
- ]
- ]
- ],
- [
- [
- [
- 0.04874323680996895
- ]
- ]
- ],
- [
- [
- [
- 0.06963656097650528
- ]
- ]
- ],
- [
- [
- [
- 0.06616033613681793
- ]
- ]
- ],
- [
- [
- [
- 0.0920611321926117
- ]
- ]
- ],
- [
- [
- [
- 0.06595803052186966
- ]
- ]
- ],
- [
- [
- [
- 0.07073991000652313
- ]
- ]
- ],
- [
- [
- [
- 0.07338160276412964
- ]
- ]
- ],
- [
- [
- [
- 0.08121359348297119
- ]
- ]
- ],
- [
- [
- [
- 0.08493801206350327
- ]
- ]
- ],
- [
- [
- [
- 0.07619204372167587
- ]
- ]
- ],
- [
- [
- [
- 0.10002736002206802
- ]
- ]
- ],
- [
- [
- [
- 0.058286283165216446
- ]
- ]
- ],
- [
- [
- [
- 0.07588834315538406
- ]
- ]
- ],
- [
- [
- [
- 0.09944571554660797
- ]
- ]
- ],
- [
- [
- [
- 0.0723671019077301
- ]
- ]
- ],
- [
- [
- [
- 0.05859633535146713
- ]
- ]
- ],
- [
- [
- [
- 0.06310499459505081
- ]
- ]
- ],
- [
- [
- [
- 0.050543151795864105
- ]
- ]
- ],
- [
- [
- [
- 0.09148801863193512
- ]
- ]
- ],
- [
- [
- [
- 0.08581556379795074
- ]
- ]
- ],
- [
- [
- [
- 0.060656607151031494
- ]
- ]
- ],
- [
- [
- [
- 0.10404647141695023
- ]
- ]
- ],
- [
- [
- [
- 0.06679873168468475
- ]
- ]
- ],
- [
- [
- [
- 0.044415153563022614
- ]
- ]
- ],
- [
- [
- [
- 0.11154074221849442
- ]
- ]
- ],
- [
- [
- [
- 0.07860548049211502
- ]
- ]
- ],
- [
- [
- [
- 0.1185956671833992
- ]
- ]
- ],
- [
- [
- [
- 0.05273063853383064
- ]
- ]
- ],
- [
- [
- [
- 0.052731744945049286
- ]
- ]
- ],
- [
- [
- [
- 0.060855284333229065
- ]
- ]
- ],
- [
- [
- [
- 0.07305596768856049
- ]
- ]
- ],
- [
- [
- [
- 0.07071968168020248
- ]
- ]
- ],
- [
- [
- [
- 0.11274702101945877
- ]
- ]
- ],
- [
- [
- [
- 0.09480860084295273
- ]
- ]
- ],
- [
- [
- [
- 0.07785995304584503
- ]
- ]
- ],
- [
- [
- [
- 0.05848336219787598
- ]
- ]
- ],
- [
- [
- [
- 0.10763268917798996
- ]
- ]
- ],
- [
- [
- [
- 0.1245071142911911
- ]
- ]
- ],
- [
- [
- [
- 0.07579417526721954
- ]
- ]
- ],
- [
- [
- [
- 0.09219890087842941
- ]
- ]
- ],
- [
- [
- [
- 0.13886697590351105
- ]
- ]
- ],
- [
- [
- [
- 0.09606405347585678
- ]
- ]
- ],
- [
- [
- [
- 0.08303540199995041
- ]
- ]
- ],
- [
- [
- [
- 0.07722760736942291
- ]
- ]
- ],
- [
- [
- [
- 0.09945156425237656
- ]
- ]
- ],
- [
- [
- [
- 0.08764202147722244
- ]
- ]
- ],
- [
- [
- [
- 0.058732133358716965
- ]
- ]
- ],
- [
- [
- [
- 0.09361578524112701
- ]
- ]
- ],
- [
- [
- [
- 0.043875839561223984
- ]
- ]
- ],
- [
- [
- [
- 0.07803981006145477
- ]
- ]
- ],
- [
- [
- [
- 0.07265777885913849
- ]
- ]
- ],
- [
- [
- [
- 0.05949536710977554
- ]
- ]
- ],
- [
- [
- [
- 0.07602614164352417
- ]
- ]
- ],
- [
- [
- [
- 0.10432162880897522
- ]
- ]
- ],
- [
- [
- [
- 0.0951901376247406
- ]
- ]
- ],
- [
- [
- [
- 0.06567154079675674
- ]
- ]
- ],
- [
- [
- [
- 0.07698667049407959
- ]
- ]
- ],
- [
- [
- [
- 0.07403117418289185
- ]
- ]
- ],
- [
- [
- [
- 0.08374164998531342
- ]
- ]
- ],
- [
- [
- [
- 0.07519316673278809
- ]
- ]
- ],
- [
- [
- [
- 0.09778162837028503
- ]
- ]
- ],
- [
- [
- [
- 0.07200504094362259
- ]
- ]
- ],
- [
- [
- [
- 0.09817332029342651
- ]
- ]
- ],
- [
- [
- [
- 0.08049968630075455
- ]
- ]
- ],
- [
- [
- [
- 0.06662329286336899
- ]
- ]
- ],
- [
- [
- [
- 0.12475044280290604
- ]
- ]
- ],
- [
- [
- [
- 0.09708505868911743
- ]
- ]
- ],
- [
- [
- [
- 0.05387400463223457
- ]
- ]
- ],
- [
- [
- [
- 0.08167553693056107
- ]
- ]
- ],
- [
- [
- [
- 0.101011261343956
- ]
- ]
- ],
- [
- [
- [
- 0.06901419907808304
- ]
- ]
- ],
- [
- [
- [
- 0.11538947373628616
- ]
- ]
- ],
- [
- [
- [
- 0.09510954469442368
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.0927855595946312
- ]
- ]
- ],
- [
- [
- [
- 0.06547746807336807
- ]
- ]
- ],
- [
- [
- [
- 0.07651612907648087
- ]
- ]
- ],
- [
- [
- [
- 0.07265041023492813
- ]
- ]
- ],
- [
- [
- [
- 0.08361450582742691
- ]
- ]
- ],
- [
- [
- [
- 0.08582837879657745
- ]
- ]
- ],
- [
- [
- [
- 0.06267891824245453
- ]
- ]
- ],
- [
- [
- [
- 0.11335033178329468
- ]
- ]
- ],
- [
- [
- [
- 0.06436843425035477
- ]
- ]
- ],
- [
- [
- [
- 0.08227626234292984
- ]
- ]
- ],
- [
- [
- [
- 0.08898670971393585
- ]
- ]
- ],
- [
- [
- [
- 0.07927422970533371
- ]
- ]
- ],
- [
- [
- [
- 0.06923487037420273
- ]
- ]
- ],
- [
- [
- [
- 0.07126303762197495
- ]
- ]
- ],
- [
- [
- [
- 0.08635919541120529
- ]
- ]
- ],
- [
- [
- [
- 0.10967998951673508
- ]
- ]
- ],
- [
- [
- [
- 0.10560844093561172
- ]
- ]
- ],
- [
- [
- [
- 0.09857683628797531
- ]
- ]
- ],
- [
- [
- [
- 0.06911434233188629
- ]
- ]
- ],
- [
- [
- [
- 0.08430086076259613
- ]
- ]
- ],
- [
- [
- [
- 0.08497870713472366
- ]
- ]
- ],
- [
- [
- [
- 0.07850105315446854
- ]
- ]
- ],
- [
- [
- [
- 0.1128198653459549
- ]
- ]
- ],
- [
- [
- [
- 0.0800718441605568
- ]
- ]
- ],
- [
- [
- [
- 0.09379331767559052
- ]
- ]
- ],
- [
- [
- [
- 0.07006057351827621
- ]
- ]
- ],
- [
- [
- [
- 0.09632085263729095
- ]
- ]
- ],
- [
- [
- [
- 0.07132977992296219
- ]
- ]
- ],
- [
- [
- [
- 0.05603781342506409
- ]
- ]
- ],
- [
- [
- [
- 0.07803531736135483
- ]
- ]
- ],
- [
- [
- [
- 0.09999839961528778
- ]
- ]
- ],
- [
- [
- [
- 0.11049391329288483
- ]
- ]
- ],
- [
- [
- [
- 0.06274744868278503
- ]
- ]
- ],
- [
- [
- [
- 0.05021531879901886
- ]
- ]
- ],
- [
- [
- [
- 0.10432083904743195
- ]
- ]
- ],
- [
- [
- [
- 0.06487513333559036
- ]
- ]
- ],
- [
- [
- [
- 0.04249809682369232
- ]
- ]
- ],
- [
- [
- [
- 0.051618896424770355
- ]
- ]
- ],
- [
- [
- [
- 0.07012447714805603
- ]
- ]
- ],
- [
- [
- [
- 0.08772289007902145
- ]
- ]
- ],
- [
- [
- [
- 0.06959018111228943
- ]
- ]
- ],
- [
- [
- [
- 0.11226815730333328
- ]
- ]
- ],
- [
- [
- [
- 0.09571922570466995
- ]
- ]
- ],
- [
- [
- [
- 0.07333376258611679
- ]
- ]
- ],
- [
- [
- [
- 0.07313158363103867
- ]
- ]
- ],
- [
- [
- [
- 0.07756626605987549
- ]
- ]
- ],
- [
- [
- [
- 0.06275714933872223
- ]
- ]
- ],
- [
- [
- [
- 0.07838936150074005
- ]
- ]
- ],
- [
- [
- [
- 0.06960339844226837
- ]
- ]
- ],
- [
- [
- [
- 0.0780213326215744
- ]
- ]
- ],
- [
- [
- [
- 0.06549248099327087
- ]
- ]
- ],
- [
- [
- [
- 0.06722289323806763
- ]
- ]
- ],
- [
- [
- [
- 0.07430832087993622
- ]
- ]
- ],
- [
- [
- [
- 0.08972927927970886
- ]
- ]
- ],
- [
- [
- [
- 0.09422715753316879
- ]
- ]
- ],
- [
- [
- [
- 0.05425902083516121
- ]
- ]
- ],
- [
- [
- [
- 0.07864182442426682
- ]
- ]
- ],
- [
- [
- [
- 0.07322236150503159
- ]
- ]
- ],
- [
- [
- [
- 0.06648565828800201
- ]
- ]
- ],
- [
- [
- [
- 0.10088223218917847
- ]
- ]
- ],
- [
- [
- [
- 0.07449463754892349
- ]
- ]
- ],
- [
- [
- [
- 0.07603677362203598
- ]
- ]
- ],
- [
- [
- [
- 0.0922265499830246
- ]
- ]
- ],
- [
- [
- [
- 0.09184981137514114
- ]
- ]
- ],
- [
- [
- [
- 0.06204533204436302
- ]
- ]
- ],
- [
- [
- [
- 0.05555403232574463
- ]
- ]
- ],
- [
- [
- [
- 0.06319446861743927
- ]
- ]
- ],
- [
- [
- [
- 0.07266212999820709
- ]
- ]
- ],
- [
- [
- [
- 0.08255491405725479
- ]
- ]
- ],
- [
- [
- [
- 0.06696457415819168
- ]
- ]
- ],
- [
- [
- [
- 0.06429167836904526
- ]
- ]
- ],
- [
- [
- [
- 0.07269757986068726
- ]
- ]
- ],
- [
- [
- [
- 0.0924118310213089
- ]
- ]
- ],
- [
- [
- [
- 0.11024060845375061
- ]
- ]
- ],
- [
- [
- [
- 0.10873532295227051
- ]
- ]
- ],
- [
- [
- [
- 0.08680135011672974
- ]
- ]
- ],
- [
- [
- [
- 0.0676921084523201
- ]
- ]
- ],
- [
- [
- [
- 0.11510374397039413
- ]
- ]
- ],
- [
- [
- [
- 0.09412893652915955
- ]
- ]
- ],
- [
- [
- [
- 0.08386683464050293
- ]
- ]
- ],
- [
- [
- [
- 0.04036860167980194
- ]
- ]
- ],
- [
- [
- [
- 0.11506912857294083
- ]
- ]
- ],
- [
- [
- [
- 0.10754183679819107
- ]
- ]
- ],
- [
- [
- [
- 0.09053366631269455
- ]
- ]
- ],
- [
- [
- [
- 0.11464585363864899
- ]
- ]
- ],
- [
- [
- [
- 0.073506660759449
- ]
- ]
- ],
- [
- [
- [
- 0.08165183663368225
- ]
- ]
- ],
- [
- [
- [
- 0.08294045180082321
- ]
- ]
- ],
- [
- [
- [
- 0.07027869671583176
- ]
- ]
- ],
- [
- [
- [
- 0.08052494376897812
- ]
- ]
- ],
- [
- [
- [
- 0.08692879974842072
- ]
- ]
- ],
- [
- [
- [
- 0.0953993871808052
- ]
- ]
- ],
- [
- [
- [
- 0.10865037143230438
- ]
- ]
- ],
- [
- [
- [
- 0.077224962413311
- ]
- ]
- ],
- [
- [
- [
- 0.09029295295476913
- ]
- ]
- ],
- [
- [
- [
- 0.08946505188941956
- ]
- ]
- ],
- [
- [
- [
- 0.07717661559581757
- ]
- ]
- ],
- [
- [
- [
- 0.11505956202745438
- ]
- ]
- ],
- [
- [
- [
- 0.03286290913820267
- ]
- ]
- ],
- [
- [
- [
- 0.07921445369720459
- ]
- ]
- ],
- [
- [
- [
- 0.05967634916305542
- ]
- ]
- ],
- [
- [
- [
- 0.09584246575832367
- ]
- ]
- ],
- [
- [
- [
- 0.09238466620445251
- ]
- ]
- ],
- [
- [
- [
- 0.09030137211084366
- ]
- ]
- ],
- [
- [
- [
- 0.10391327738761902
- ]
- ]
- ],
- [
- [
- [
- 0.08623527735471725
- ]
- ]
- ],
- [
- [
- [
- 0.05495396628975868
- ]
- ]
- ],
- [
- [
- [
- 0.10202000290155411
- ]
- ]
- ],
- [
- [
- [
- 0.09293452650308609
- ]
- ]
- ],
- [
- [
- [
- 0.05898229777812958
- ]
- ]
- ],
- [
- [
- [
- 0.09295911341905594
- ]
- ]
- ],
- [
- [
- [
- 0.11731816828250885
- ]
- ]
- ],
- [
- [
- [
- 0.08608409017324448
- ]
- ]
- ],
- [
- [
- [
- 0.09794167429208755
- ]
- ]
- ],
- [
- [
- [
- 0.11555340886116028
- ]
- ]
- ],
- [
- [
- [
- 0.06883645057678223
- ]
- ]
- ],
- [
- [
- [
- 0.06651856005191803
- ]
- ]
- ],
- [
- [
- [
- 0.07615353912115097
- ]
- ]
- ],
- [
- [
- [
- 0.08406630158424377
- ]
- ]
- ],
- [
- [
- [
- 0.09096626937389374
- ]
- ]
- ],
- [
- [
- [
- 0.07211116701364517
- ]
- ]
- ],
- [
- [
- [
- 0.0952414944767952
- ]
- ]
- ],
- [
- [
- [
- 0.06680657714605331
- ]
- ]
- ],
- [
- [
- [
- 0.06851711869239807
- ]
- ]
- ],
- [
- [
- [
- 0.08528391271829605
- ]
- ]
- ],
- [
- [
- [
- 0.11180242896080017
- ]
- ]
- ],
- [
- [
- [
- 0.10873346775770187
- ]
- ]
- ],
- [
- [
- [
- 0.059275105595588684
- ]
- ]
- ],
- [
- [
- [
- 0.09423975646495819
- ]
- ]
- ],
- [
- [
- [
- 0.05676921457052231
- ]
- ]
- ],
- [
- [
- [
- 0.07610844820737839
- ]
- ]
- ],
- [
- [
- [
- 0.07910905033349991
- ]
- ]
- ],
- [
- [
- [
- 0.06691212952136993
- ]
- ]
- ],
- [
- [
- [
- 0.11250659823417664
- ]
- ]
- ],
- [
- [
- [
- 0.07419870048761368
- ]
- ]
- ],
- [
- [
- [
- 0.06669463217258453
- ]
- ]
- ],
- [
- [
- [
- 0.05885457992553711
- ]
- ]
- ],
- [
- [
- [
- 0.1159944087266922
- ]
- ]
- ],
- [
- [
- [
- 0.07624396681785583
- ]
- ]
- ],
- [
- [
- [
- 0.06766287237405777
- ]
- ]
- ],
- [
- [
- [
- 0.07680922746658325
- ]
- ]
- ],
- [
- [
- [
- 0.06946471333503723
- ]
- ]
- ],
- [
- [
- [
- 0.0919509083032608
- ]
- ]
- ],
- [
- [
- [
- 0.07592714577913284
- ]
- ]
- ],
- [
- [
- [
- 0.10248823463916779
- ]
- ]
- ],
- [
- [
- [
- 0.13383527100086212
- ]
- ]
- ],
- [
- [
- [
- 0.08339645713567734
- ]
- ]
- ],
- [
- [
- [
- 0.07695843279361725
- ]
- ]
- ],
- [
- [
- [
- 0.07710961997509003
- ]
- ]
- ],
- [
- [
- [
- 0.1061524823307991
- ]
- ]
- ],
- [
- [
- [
- 0.07036775350570679
- ]
- ]
- ],
- [
- [
- [
- 0.085562564432621
- ]
- ]
- ],
- [
- [
- [
- 0.21382242441177368
- ]
- ]
- ],
- [
- [
- [
- 0.07857491821050644
- ]
- ]
- ],
- [
- [
- [
- 0.1099463626742363
- ]
- ]
- ],
- [
- [
- [
- 0.14383450150489807
- ]
- ]
- ],
- [
- [
- [
- 0.10274694114923477
- ]
- ]
- ],
- [
- [
- [
- 0.07513484358787537
- ]
- ]
- ],
- [
- [
- [
- 0.06390704959630966
- ]
- ]
- ],
- [
- [
- [
- 0.07116810232400894
- ]
- ]
- ],
- [
- [
- [
- 0.09363582730293274
- ]
- ]
- ],
- [
- [
- [
- 0.0724642276763916
- ]
- ]
- ],
- [
- [
- [
- 0.07266469299793243
- ]
- ]
- ],
- [
- [
- [
- 0.057547736912965775
- ]
- ]
- ],
- [
- [
- [
- 0.09344135969877243
- ]
- ]
- ],
- [
- [
- [
- 0.053898394107818604
- ]
- ]
- ],
- [
- [
- [
- 0.07656838744878769
- ]
- ]
- ],
- [
- [
- [
- 0.07497531175613403
- ]
- ]
- ],
- [
- [
- [
- 0.06811502575874329
- ]
- ]
- ],
- [
- [
- [
- 0.11376581341028214
- ]
- ]
- ],
- [
- [
- [
- 0.06149345636367798
- ]
- ]
- ],
- [
- [
- [
- 0.05183403939008713
- ]
- ]
- ],
- [
- [
- [
- 0.08022721111774445
- ]
- ]
- ],
- [
- [
- [
- 0.0987282544374466
- ]
- ]
- ],
- [
- [
- [
- 0.06399784982204437
- ]
- ]
- ],
- [
- [
- [
- 0.07653763145208359
- ]
- ]
- ],
- [
- [
- [
- 0.06915295124053955
- ]
- ]
- ],
- [
- [
- [
- 0.06052859500050545
- ]
- ]
- ],
- [
- [
- [
- 0.05823924019932747
- ]
- ]
- ],
- [
- [
- [
- 0.0456743985414505
- ]
- ]
- ],
- [
- [
- [
- 0.10369610786437988
- ]
- ]
- ],
- [
- [
- [
- 0.07880622893571854
- ]
- ]
- ],
- [
- [
- [
- 0.08206156641244888
- ]
- ]
- ],
- [
- [
- [
- 0.06859724968671799
- ]
- ]
- ],
- [
- [
- [
- 0.04655861482024193
- ]
- ]
- ],
- [
- [
- [
- 0.07751043885946274
- ]
- ]
- ],
- [
- [
- [
- 0.10279050469398499
- ]
- ]
- ],
- [
- [
- [
- 0.06220567226409912
- ]
- ]
- ],
- [
- [
- [
- 0.06367946416139603
- ]
- ]
- ],
- [
- [
- [
- 0.08618101477622986
- ]
- ]
- ],
- [
- [
- [
- 0.06984037905931473
- ]
- ]
- ],
- [
- [
- [
- 0.08608252555131912
- ]
- ]
- ],
- [
- [
- [
- 0.05895625427365303
- ]
- ]
- ],
- [
- [
- [
- 0.07282155007123947
- ]
- ]
- ],
- [
- [
- [
- 0.08441168069839478
- ]
- ]
- ],
- [
- [
- [
- 0.0793905034661293
- ]
- ]
- ],
- [
- [
- [
- 0.06165153160691261
- ]
- ]
- ],
- [
- [
- [
- 0.06794990599155426
- ]
- ]
- ],
- [
- [
- [
- 0.08553123474121094
- ]
- ]
- ],
- [
- [
- [
- 0.11563128232955933
- ]
- ]
- ],
- [
- [
- [
- 0.07279375940561295
- ]
- ]
- ],
- [
- [
- [
- 0.10589838773012161
- ]
- ]
- ],
- [
- [
- [
- 0.09244062006473541
- ]
- ]
- ],
- [
- [
- [
- 0.07044939696788788
- ]
- ]
- ],
- [
- [
- [
- 0.06015930697321892
- ]
- ]
- ],
- [
- [
- [
- 0.08138158172369003
- ]
- ]
- ],
- [
- [
- [
- 0.06608569622039795
- ]
- ]
- ],
- [
- [
- [
- 0.09543434530496597
- ]
- ]
- ],
- [
- [
- [
- 0.08854544907808304
- ]
- ]
- ],
- [
- [
- [
- 0.10462861508131027
- ]
- ]
- ],
- [
- [
- [
- 0.0497627891600132
- ]
- ]
- ],
- [
- [
- [
- 0.09672799706459045
- ]
- ]
- ],
- [
- [
- [
- 0.07059312611818314
- ]
- ]
- ],
- [
- [
- [
- 0.06578957289457321
- ]
- ]
- ],
- [
- [
- [
- 0.07590578496456146
- ]
- ]
- ],
- [
- [
- [
- 0.11472567915916443
- ]
- ]
- ],
- [
- [
- [
- 0.06593683362007141
- ]
- ]
- ],
- [
- [
- [
- 0.11918499320745468
- ]
- ]
- ],
- [
- [
- [
- 0.05244479328393936
- ]
- ]
- ],
- [
- [
- [
- 0.08672211319208145
- ]
- ]
- ],
- [
- [
- [
- 0.10970969498157501
- ]
- ]
- ],
- [
- [
- [
- 0.047886401414871216
- ]
- ]
- ],
- [
- [
- [
- 0.07232394814491272
- ]
- ]
- ],
- [
- [
- [
- 0.07981234043836594
- ]
- ]
- ],
- [
- [
- [
- 0.09312881529331207
- ]
- ]
- ],
- [
- [
- [
- 0.04917316883802414
- ]
- ]
- ],
- [
- [
- [
- 0.11387096345424652
- ]
- ]
- ],
- [
- [
- [
- 0.057647861540317535
- ]
- ]
- ],
- [
- [
- [
- 0.07365357875823975
- ]
- ]
- ],
- [
- [
- [
- 0.07064367085695267
- ]
- ]
- ],
- [
- [
- [
- 0.059707749634981155
- ]
- ]
- ],
- [
- [
- [
- 0.08768116682767868
- ]
- ]
- ],
- [
- [
- [
- 0.10374545305967331
- ]
- ]
- ],
- [
- [
- [
- 0.08074260503053665
- ]
- ]
- ],
- [
- [
- [
- 0.1018538549542427
- ]
- ]
- ],
- [
- [
- [
- 0.06713578850030899
- ]
- ]
- ],
- [
- [
- [
- 0.09989522397518158
- ]
- ]
- ],
- [
- [
- [
- 0.07748159766197205
- ]
- ]
- ],
- [
- [
- [
- 0.08455442637205124
- ]
- ]
- ],
- [
- [
- [
- 0.06822068244218826
- ]
- ]
- ],
- [
- [
- [
- 0.07050459831953049
- ]
- ]
- ],
- [
- [
- [
- 0.05438802391290665
- ]
- ]
- ],
- [
- [
- [
- 0.1406448930501938
- ]
- ]
- ],
- [
- [
- [
- 0.08751429617404938
- ]
- ]
- ],
- [
- [
- [
- 0.1140630766749382
- ]
- ]
- ],
- [
- [
- [
- 0.06903029978275299
- ]
- ]
- ],
- [
- [
- [
- 0.10764588415622711
- ]
- ]
- ],
- [
- [
- [
- 0.11386705189943314
- ]
- ]
- ],
- [
- [
- [
- 0.11003521829843521
- ]
- ]
- ],
- [
- [
- [
- 0.09007588028907776
- ]
- ]
- ],
- [
- [
- [
- 0.09357762336730957
- ]
- ]
- ],
- [
- [
- [
- 0.05080707371234894
- ]
- ]
- ],
- [
- [
- [
- 0.11502858996391296
- ]
- ]
- ],
- [
- [
- [
- 0.08417194336652756
- ]
- ]
- ],
- [
- [
- [
- 0.06930627673864365
- ]
- ]
- ],
- [
- [
- [
- 0.08114674687385559
- ]
- ]
- ],
- [
- [
- [
- 0.07661283016204834
- ]
- ]
- ],
- [
- [
- [
- 0.09288228303194046
- ]
- ]
- ],
- [
- [
- [
- 0.08105069398880005
- ]
- ]
- ],
- [
- [
- [
- 0.08216700702905655
- ]
- ]
- ],
- [
- [
- [
- 0.05887681245803833
- ]
- ]
- ],
- [
- [
- [
- 0.08021915704011917
- ]
- ]
- ],
- [
- [
- [
- 0.04964153841137886
- ]
- ]
- ],
- [
- [
- [
- 0.082636758685112
- ]
- ]
- ],
- [
- [
- [
- 0.07343064248561859
- ]
- ]
- ],
- [
- [
- [
- 0.08868660032749176
- ]
- ]
- ],
- [
- [
- [
- 0.11057309806346893
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.061027444899082184
- ]
- ]
- ],
- [
- [
- [
- 0.07237456738948822
- ]
- ]
- ],
- [
- [
- [
- 0.08362025022506714
- ]
- ]
- ],
- [
- [
- [
- 0.09920638054609299
- ]
- ]
- ],
- [
- [
- [
- 0.1340709775686264
- ]
- ]
- ],
- [
- [
- [
- 0.068463034927845
- ]
- ]
- ],
- [
- [
- [
- 0.09901504218578339
- ]
- ]
- ],
- [
- [
- [
- 0.051814138889312744
- ]
- ]
- ],
- [
- [
- [
- 0.09742005169391632
- ]
- ]
- ],
- [
- [
- [
- 0.09838517010211945
- ]
- ]
- ],
- [
- [
- [
- 0.08340826630592346
- ]
- ]
- ],
- [
- [
- [
- 0.10339716821908951
- ]
- ]
- ],
- [
- [
- [
- 0.09842051565647125
- ]
- ]
- ],
- [
- [
- [
- 0.11166468262672424
- ]
- ]
- ],
- [
- [
- [
- 0.0726441890001297
- ]
- ]
- ],
- [
- [
- [
- 0.07461782544851303
- ]
- ]
- ],
- [
- [
- [
- 0.0886366069316864
- ]
- ]
- ],
- [
- [
- [
- 0.0885624960064888
- ]
- ]
- ],
- [
- [
- [
- 0.06443940103054047
- ]
- ]
- ],
- [
- [
- [
- 0.06891687214374542
- ]
- ]
- ],
- [
- [
- [
- 0.10335055738687515
- ]
- ]
- ],
- [
- [
- [
- 0.05369953066110611
- ]
- ]
- ],
- [
- [
- [
- 0.09181374311447144
- ]
- ]
- ],
- [
- [
- [
- 0.10616336017847061
- ]
- ]
- ],
- [
- [
- [
- 0.08208567649126053
- ]
- ]
- ],
- [
- [
- [
- 0.06072651594877243
- ]
- ]
- ],
- [
- [
- [
- 0.08171014487743378
- ]
- ]
- ],
- [
- [
- [
- 0.05981767550110817
- ]
- ]
- ],
- [
- [
- [
- 0.09345357865095139
- ]
- ]
- ],
- [
- [
- [
- 0.07424092292785645
- ]
- ]
- ],
- [
- [
- [
- 0.09682814031839371
- ]
- ]
- ],
- [
- [
- [
- 0.058758147060871124
- ]
- ]
- ],
- [
- [
- [
- 0.07748310267925262
- ]
- ]
- ],
- [
- [
- [
- 0.09900659322738647
- ]
- ]
- ],
- [
- [
- [
- 0.07590200752019882
- ]
- ]
- ],
- [
- [
- [
- 0.07720610499382019
- ]
- ]
- ],
- [
- [
- [
- 0.07866807281970978
- ]
- ]
- ],
- [
- [
- [
- 0.07187788188457489
- ]
- ]
- ],
- [
- [
- [
- 0.07282344996929169
- ]
- ]
- ],
- [
- [
- [
- 0.06433700025081635
- ]
- ]
- ],
- [
- [
- [
- 0.058762844651937485
- ]
- ]
- ],
- [
- [
- [
- 0.0874427780508995
- ]
- ]
- ],
- [
- [
- [
- 0.06487059593200684
- ]
- ]
- ],
- [
- [
- [
- 0.11605722457170486
- ]
- ]
- ],
- [
- [
- [
- 0.0916747897863388
- ]
- ]
- ],
- [
- [
- [
- 0.08325311541557312
- ]
- ]
- ],
- [
- [
- [
- 0.04256035014986992
- ]
- ]
- ],
- [
- [
- [
- 0.08200070261955261
- ]
- ]
- ],
- [
- [
- [
- 0.0508047416806221
- ]
- ]
- ],
- [
- [
- [
- 0.07978814095258713
- ]
- ]
- ],
- [
- [
- [
- 0.08552281558513641
- ]
- ]
- ],
- [
- [
- [
- 0.09576233476400375
- ]
- ]
- ],
- [
- [
- [
- 0.09629327058792114
- ]
- ]
- ],
- [
- [
- [
- 0.1156291738152504
- ]
- ]
- ],
- [
- [
- [
- 0.08300036936998367
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.07071530073881149
- ]
- ]
- ],
- [
- [
- [
- 0.0348479263484478
- ]
- ]
- ],
- [
- [
- [
- 0.07415910065174103
- ]
- ]
- ],
- [
- [
- [
- 0.07699710875749588
- ]
- ]
- ],
- [
- [
- [
- 0.06657037883996964
- ]
- ]
- ],
- [
- [
- [
- 0.07827860862016678
- ]
- ]
- ],
- [
- [
- [
- 0.10803039371967316
- ]
- ]
- ],
- [
- [
- [
- 0.06596804410219193
- ]
- ]
- ],
- [
- [
- [
- 0.0571834035217762
- ]
- ]
- ],
- [
- [
- [
- 0.07869469374418259
- ]
- ]
- ],
- [
- [
- [
- 0.08134384453296661
- ]
- ]
- ],
- [
- [
- [
- 0.10438890755176544
- ]
- ]
- ],
- [
- [
- [
- 0.06779247522354126
- ]
- ]
- ],
- [
- [
- [
- 0.06886669248342514
- ]
- ]
- ],
- [
- [
- [
- 0.04101809486746788
- ]
- ]
- ],
- [
- [
- [
- 0.09014171361923218
- ]
- ]
- ],
- [
- [
- [
- 0.061023686081171036
- ]
- ]
- ],
- [
- [
- [
- 0.07694423943758011
- ]
- ]
- ],
- [
- [
- [
- 0.05109279602766037
- ]
- ]
- ],
- [
- [
- [
- 0.07907876372337341
- ]
- ]
- ],
- [
- [
- [
- 0.0869704857468605
- ]
- ]
- ],
- [
- [
- [
- 0.0669490396976471
- ]
- ]
- ],
- [
- [
- [
- 0.0744386613368988
- ]
- ]
- ],
- [
- [
- [
- 0.08544960618019104
- ]
- ]
- ],
- [
- [
- [
- 0.09907975047826767
- ]
- ]
- ],
- [
- [
- [
- 0.09627792239189148
- ]
- ]
- ],
- [
- [
- [
- 0.05716738477349281
- ]
- ]
- ],
- [
- [
- [
- 0.0711086317896843
- ]
- ]
- ],
- [
- [
- [
- 0.07541972398757935
- ]
- ]
- ],
- [
- [
- [
- 0.07838006317615509
- ]
- ]
- ],
- [
- [
- [
- 0.0926440954208374
- ]
- ]
- ],
- [
- [
- [
- 0.08513791859149933
- ]
- ]
- ],
- [
- [
- [
- 0.10456174612045288
- ]
- ]
- ],
- [
- [
- [
- 0.05840069800615311
- ]
- ]
- ],
- [
- [
- [
- 0.09138160943984985
- ]
- ]
- ],
- [
- [
- [
- 0.06858164817094803
- ]
- ]
- ],
- [
- [
- [
- 0.09595582634210587
- ]
- ]
- ],
- [
- [
- [
- 0.0843181386590004
- ]
- ]
- ],
- [
- [
- [
- 0.05078091844916344
- ]
- ]
- ],
- [
- [
- [
- 0.07559074461460114
- ]
- ]
- ],
- [
- [
- [
- 0.06553914397954941
- ]
- ]
- ],
- [
- [
- [
- 0.08262522518634796
- ]
- ]
- ],
- [
- [
- [
- 0.05969710648059845
- ]
- ]
- ],
- [
- [
- [
- 0.07184883207082748
- ]
- ]
- ],
- [
- [
- [
- 0.1262529492378235
- ]
- ]
- ],
- [
- [
- [
- 0.11300506442785263
- ]
- ]
- ],
- [
- [
- [
- 0.0700262114405632
- ]
- ]
- ],
- [
- [
- [
- 0.07061286270618439
- ]
- ]
- ],
- [
- [
- [
- 0.07768005132675171
- ]
- ]
- ],
- [
- [
- [
- 0.1345464289188385
- ]
- ]
- ],
- [
- [
- [
- 0.05173536017537117
- ]
- ]
- ],
- [
- [
- [
- 0.05719456076622009
- ]
- ]
- ],
- [
- [
- [
- 0.07841689884662628
- ]
- ]
- ],
- [
- [
- [
- 0.08785444498062134
- ]
- ]
- ],
- [
- [
- [
- 0.09300225973129272
- ]
- ]
- ],
- [
- [
- [
- 0.1019776463508606
- ]
- ]
- ],
- [
- [
- [
- 0.0797286108136177
- ]
- ]
- ],
- [
- [
- [
- 0.05353109538555145
- ]
- ]
- ],
- [
- [
- [
- 0.09331872314214706
- ]
- ]
- ],
- [
- [
- [
- 0.07876253873109818
- ]
- ]
- ],
- [
- [
- [
- 0.06273772567510605
- ]
- ]
- ],
- [
- [
- [
- 0.06122685596346855
- ]
- ]
- ],
- [
- [
- [
- 0.0732191652059555
- ]
- ]
- ],
- [
- [
- [
- 0.07607833296060562
- ]
- ]
- ],
- [
- [
- [
- 0.08797995746135712
- ]
- ]
- ],
- [
- [
- [
- 0.06540414690971375
- ]
- ]
- ],
- [
- [
- [
- 0.08333247154951096
- ]
- ]
- ],
- [
- [
- [
- 0.0571206696331501
- ]
- ]
- ],
- [
- [
- [
- 0.07081213593482971
- ]
- ]
- ],
- [
- [
- [
- 0.10097313672304153
- ]
- ]
- ],
- [
- [
- [
- 0.07970158755779266
- ]
- ]
- ],
- [
- [
- [
- 0.1025502011179924
- ]
- ]
- ],
- [
- [
- [
- 0.12197284400463104
- ]
- ]
- ],
- [
- [
- [
- 0.05492876097559929
- ]
- ]
- ],
- [
- [
- [
- 0.04584122821688652
- ]
- ]
- ],
- [
- [
- [
- 0.10220208764076233
- ]
- ]
- ],
- [
- [
- [
- 0.08692747354507446
- ]
- ]
- ],
- [
- [
- [
- 0.10250584781169891
- ]
- ]
- ],
- [
- [
- [
- 0.08852393925189972
- ]
- ]
- ],
- [
- [
- [
- 0.07071180641651154
- ]
- ]
- ],
- [
- [
- [
- 0.08751723915338516
- ]
- ]
- ],
- [
- [
- [
- 0.0915805846452713
- ]
- ]
- ],
- [
- [
- [
- 0.0974363386631012
- ]
- ]
- ],
- [
- [
- [
- 0.0844995528459549
- ]
- ]
- ],
- [
- [
- [
- 0.10337289422750473
- ]
- ]
- ],
- [
- [
- [
- 0.05637650191783905
- ]
- ]
- ],
- [
- [
- [
- 0.08052709698677063
- ]
- ]
- ],
- [
- [
- [
- 0.11812326312065125
- ]
- ]
- ],
- [
- [
- [
- 0.07220408320426941
- ]
- ]
- ],
- [
- [
- [
- 0.07470788061618805
- ]
- ]
- ],
- [
- [
- [
- 0.0620674267411232
- ]
- ]
- ],
- [
- [
- [
- 0.07427623867988586
- ]
- ]
- ],
- [
- [
- [
- 0.08792776614427567
- ]
- ]
- ],
- [
- [
- [
- 0.04598432406783104
- ]
- ]
- ],
- [
- [
- [
- 0.06669151782989502
- ]
- ]
- ],
- [
- [
- [
- 0.07933466136455536
- ]
- ]
- ],
- [
- [
- [
- 0.08558259904384613
- ]
- ]
- ],
- [
- [
- [
- 0.08210068941116333
- ]
- ]
- ],
- [
- [
- [
- 0.03772334009408951
- ]
- ]
- ],
- [
- [
- [
- 0.09365830570459366
- ]
- ]
- ],
- [
- [
- [
- 0.07640885561704636
- ]
- ]
- ],
- [
- [
- [
- 0.09812533110380173
- ]
- ]
- ],
- [
- [
- [
- 0.09350292384624481
- ]
- ]
- ],
- [
- [
- [
- 0.07310803979635239
- ]
- ]
- ],
- [
- [
- [
- 0.07064316421747208
- ]
- ]
- ],
- [
- [
- [
- 0.1142919510602951
- ]
- ]
- ],
- [
- [
- [
- 0.07129829376935959
- ]
- ]
- ],
- [
- [
- [
- 0.05380614474415779
- ]
- ]
- ],
- [
- [
- [
- 0.10391110181808472
- ]
- ]
- ],
- [
- [
- [
- 0.09388258308172226
- ]
- ]
- ],
- [
- [
- [
- 0.0752771645784378
- ]
- ]
- ],
- [
- [
- [
- 0.06332244724035263
- ]
- ]
- ],
- [
- [
- [
- 0.08173949271440506
- ]
- ]
- ],
- [
- [
- [
- 0.05839203670620918
- ]
- ]
- ],
- [
- [
- [
- 0.06639210879802704
- ]
- ]
- ],
- [
- [
- [
- 0.09258720278739929
- ]
- ]
- ],
- [
- [
- [
- 0.07380016893148422
- ]
- ]
- ],
- [
- [
- [
- 0.12081968039274216
- ]
- ]
- ],
- [
- [
- [
- 0.06607155501842499
- ]
- ]
- ],
- [
- [
- [
- 0.07054609060287476
- ]
- ]
- ],
- [
- [
- [
- 0.06910192221403122
- ]
- ]
- ],
- [
- [
- [
- 0.09816881269216537
- ]
- ]
- ],
- [
- [
- [
- 0.09072636812925339
- ]
- ]
- ],
- [
- [
- [
- 0.10704080760478973
- ]
- ]
- ],
- [
- [
- [
- 0.09461311995983124
- ]
- ]
- ],
- [
- [
- [
- 0.09698992967605591
- ]
- ]
- ],
- [
- [
- [
- 0.09584659337997437
- ]
- ]
- ],
- [
- [
- [
- 0.0881393551826477
- ]
- ]
- ],
- [
- [
- [
- 0.09438586980104446
- ]
- ]
- ],
- [
- [
- [
- 0.05823419988155365
- ]
- ]
- ],
- [
- [
- [
- 0.07889480888843536
- ]
- ]
- ],
- [
- [
- [
- 0.061699140816926956
- ]
- ]
- ],
- [
- [
- [
- 0.06455875933170319
- ]
- ]
- ],
- [
- [
- [
- 0.09467510879039764
- ]
- ]
- ],
- [
- [
- [
- 0.08654667437076569
- ]
- ]
- ],
- [
- [
- [
- 0.10002695769071579
- ]
- ]
- ],
- [
- [
- [
- 0.09199295938014984
- ]
- ]
- ],
- [
- [
- [
- 0.06514525413513184
- ]
- ]
- ],
- [
- [
- [
- 0.08497554063796997
- ]
- ]
- ],
- [
- [
- [
- 0.047742415219545364
- ]
- ]
- ],
- [
- [
- [
- 0.055402256548404694
- ]
- ]
- ],
- [
- [
- [
- 0.11207106709480286
- ]
- ]
- ],
- [
- [
- [
- 0.06313778460025787
- ]
- ]
- ],
- [
- [
- [
- 0.07136573642492294
- ]
- ]
- ],
- [
- [
- [
- 0.08368609845638275
- ]
- ]
- ],
- [
- [
- [
- 0.07573843747377396
- ]
- ]
- ],
- [
- [
- [
- 0.10183040052652359
- ]
- ]
- ],
- [
- [
- [
- 0.07038111984729767
- ]
- ]
- ],
- [
- [
- [
- 0.08228520303964615
- ]
- ]
- ],
- [
- [
- [
- 0.11264616250991821
- ]
- ]
- ],
- [
- [
- [
- 0.09939232468605042
- ]
- ]
- ],
- [
- [
- [
- 0.08426352590322495
- ]
- ]
- ],
- [
- [
- [
- 0.09023299813270569
- ]
- ]
- ],
- [
- [
- [
- 0.09270405024290085
- ]
- ]
- ],
- [
- [
- [
- 0.07472552359104156
- ]
- ]
- ],
- [
- [
- [
- 0.10498982667922974
- ]
- ]
- ],
- [
- [
- [
- 0.08856912702322006
- ]
- ]
- ],
- [
- [
- [
- 0.11589186638593674
- ]
- ]
- ],
- [
- [
- [
- 0.07473103702068329
- ]
- ]
- ],
- [
- [
- [
- 0.07187560200691223
- ]
- ]
- ],
- [
- [
- [
- 0.1022312119603157
- ]
- ]
- ],
- [
- [
- [
- 0.07976190000772476
- ]
- ]
- ],
- [
- [
- [
- 0.04627872258424759
- ]
- ]
- ],
- [
- [
- [
- 0.0847841277718544
- ]
- ]
- ],
- [
- [
- [
- 0.08206462860107422
- ]
- ]
- ],
- [
- [
- [
- 0.062180060893297195
- ]
- ]
- ],
- [
- [
- [
- 0.08854856342077255
- ]
- ]
- ],
- [
- [
- [
- 0.08091577142477036
- ]
- ]
- ],
- [
- [
- [
- 0.04204418510198593
- ]
- ]
- ],
- [
- [
- [
- 0.08008252084255219
- ]
- ]
- ],
- [
- [
- [
- 0.08155986666679382
- ]
- ]
- ],
- [
- [
- [
- 0.09803514182567596
- ]
- ]
- ],
- [
- [
- [
- 0.04373312368988991
- ]
- ]
- ],
- [
- [
- [
- 0.07711176574230194
- ]
- ]
- ],
- [
- [
- [
- 0.06366907805204391
- ]
- ]
- ],
- [
- [
- [
- 0.0883634090423584
- ]
- ]
- ],
- [
- [
- [
- 0.10297742486000061
- ]
- ]
- ],
- [
- [
- [
- 0.0816849023103714
- ]
- ]
- ],
- [
- [
- [
- 0.11690335720777512
- ]
- ]
- ],
- [
- [
- [
- 0.0785883441567421
- ]
- ]
- ],
- [
- [
- [
- 0.03911576792597771
- ]
- ]
- ],
- [
- [
- [
- 0.07280317693948746
- ]
- ]
- ],
- [
- [
- [
- 0.10225744545459747
- ]
- ]
- ],
- [
- [
- [
- 0.09952295571565628
- ]
- ]
- ],
- [
- [
- [
- 0.0732448622584343
- ]
- ]
- ],
- [
- [
- [
- 0.10555241256952286
- ]
- ]
- ],
- [
- [
- [
- 0.07029056549072266
- ]
- ]
- ],
- [
- [
- [
- 0.08478783071041107
- ]
- ]
- ],
- [
- [
- [
- 0.08725158870220184
- ]
- ]
- ],
- [
- [
- [
- 0.07289407402276993
- ]
- ]
- ],
- [
- [
- [
- 0.08817575871944427
- ]
- ]
- ],
- [
- [
- [
- 0.07154295593500137
- ]
- ]
- ],
- [
- [
- [
- 0.07975222915410995
- ]
- ]
- ],
- [
- [
- [
- 0.05968209728598595
- ]
- ]
- ],
- [
- [
- [
- 0.06454551964998245
- ]
- ]
- ],
- [
- [
- [
- 0.06266672909259796
- ]
- ]
- ],
- [
- [
- [
- 0.08545352518558502
- ]
- ]
- ],
- [
- [
- [
- 0.0918397456407547
- ]
- ]
- ],
- [
- [
- [
- 0.054640140384435654
- ]
- ]
- ],
- [
- [
- [
- 0.10734404623508453
- ]
- ]
- ],
- [
- [
- [
- 0.10849961638450623
- ]
- ]
- ],
- [
- [
- [
- 0.10824594646692276
- ]
- ]
- ],
- [
- [
- [
- 0.1079808846116066
- ]
- ]
- ],
- [
- [
- [
- 0.07557680457830429
- ]
- ]
- ],
- [
- [
- [
- 0.053232885897159576
- ]
- ]
- ],
- [
- [
- [
- 0.08438645303249359
- ]
- ]
- ],
- [
- [
- [
- 0.06537612527608871
- ]
- ]
- ],
- [
- [
- [
- 0.056556422263383865
- ]
- ]
- ],
- [
- [
- [
- 0.08867942541837692
- ]
- ]
- ],
- [
- [
- [
- 0.11264696717262268
- ]
- ]
- ],
- [
- [
- [
- 0.06738556921482086
- ]
- ]
- ],
- [
- [
- [
- 0.09851531684398651
- ]
- ]
- ],
- [
- [
- [
- 0.0782991424202919
- ]
- ]
- ],
- [
- [
- [
- 0.0656714141368866
- ]
- ]
- ],
- [
- [
- [
- 0.075212262570858
- ]
- ]
- ],
- [
- [
- [
- 0.07360821962356567
- ]
- ]
- ],
- [
- [
- [
- 0.0937250629067421
- ]
- ]
- ],
- [
- [
- [
- 0.09428814053535461
- ]
- ]
- ],
- [
- [
- [
- 0.09257518500089645
- ]
- ]
- ],
- [
- [
- [
- 0.10180794447660446
- ]
- ]
- ],
- [
- [
- [
- 0.08753816783428192
- ]
- ]
- ],
- [
- [
- [
- 0.08142414689064026
- ]
- ]
- ],
- [
- [
- [
- 0.07070966064929962
- ]
- ]
- ],
- [
- [
- [
- 0.058878082782030106
- ]
- ]
- ],
- [
- [
- [
- 0.07797295600175858
- ]
- ]
- ],
- [
- [
- [
- 0.09175701439380646
- ]
- ]
- ],
- [
- [
- [
- 0.058204930275678635
- ]
- ]
- ],
- [
- [
- [
- 0.10948582738637924
- ]
- ]
- ],
- [
- [
- [
- 0.08616431057453156
- ]
- ]
- ],
- [
- [
- [
- 0.09029332548379898
- ]
- ]
- ],
- [
- [
- [
- 0.08352357149124146
- ]
- ]
- ],
- [
- [
- [
- 0.05958261340856552
- ]
- ]
- ],
- [
- [
- [
- 0.09466705471277237
- ]
- ]
- ],
- [
- [
- [
- 0.07258259505033493
- ]
- ]
- ],
- [
- [
- [
- 0.04744154214859009
- ]
- ]
- ],
- [
- [
- [
- 0.0699552595615387
- ]
- ]
- ],
- [
- [
- [
- 0.10032375901937485
- ]
- ]
- ],
- [
- [
- [
- 0.050392817705869675
- ]
- ]
- ],
- [
- [
- [
- 0.0665903389453888
- ]
- ]
- ],
- [
- [
- [
- 0.056582026183605194
- ]
- ]
- ],
- [
- [
- [
- 0.11301292479038239
- ]
- ]
- ],
- [
- [
- [
- 0.07282225042581558
- ]
- ]
- ],
- [
- [
- [
- 0.08253932744264603
- ]
- ]
- ],
- [
- [
- [
- 0.07056485861539841
- ]
- ]
- ],
- [
- [
- [
- 0.08465635776519775
- ]
- ]
- ],
- [
- [
- [
- 0.08125829696655273
- ]
- ]
- ],
- [
- [
- [
- 0.08017205446958542
- ]
- ]
- ],
- [
- [
- [
- 0.05288570746779442
- ]
- ]
- ],
- [
- [
- [
- 0.08876357227563858
- ]
- ]
- ],
- [
- [
- [
- 0.06703150272369385
- ]
- ]
- ],
- [
- [
- [
- 0.07813320308923721
- ]
- ]
- ],
- [
- [
- [
- 0.06687869131565094
- ]
- ]
- ],
- [
- [
- [
- 0.06325667351484299
- ]
- ]
- ],
- [
- [
- [
- 0.09541445225477219
- ]
- ]
- ],
- [
- [
- [
- 0.08690016716718674
- ]
- ]
- ],
- [
- [
- [
- 0.08979479223489761
- ]
- ]
- ],
- [
- [
- [
- 0.04826977476477623
- ]
- ]
- ],
- [
- [
- [
- 0.07010262459516525
- ]
- ]
- ],
- [
- [
- [
- 0.04866395145654678
- ]
- ]
- ],
- [
- [
- [
- 0.08788633346557617
- ]
- ]
- ],
- [
- [
- [
- 0.1175958439707756
- ]
- ]
- ],
- [
- [
- [
- 0.08649478107690811
- ]
- ]
- ],
- [
- [
- [
- 0.0749683827161789
- ]
- ]
- ],
- [
- [
- [
- 0.05845803767442703
- ]
- ]
- ],
- [
- [
- [
- 0.09801016002893448
- ]
- ]
- ],
- [
- [
- [
- 0.06879256665706635
- ]
- ]
- ],
- [
- [
- [
- 0.07820084691047668
- ]
- ]
- ],
- [
- [
- [
- 0.10106252133846283
- ]
- ]
- ],
- [
- [
- [
- 0.0389900878071785
- ]
- ]
- ],
- [
- [
- [
- 0.07603240758180618
- ]
- ]
- ],
- [
- [
- [
- 0.08147808164358139
- ]
- ]
- ],
- [
- [
- [
- 0.10170036554336548
- ]
- ]
- ],
- [
- [
- [
- 0.07083087414503098
- ]
- ]
- ],
- [
- [
- [
- 0.09272570163011551
- ]
- ]
- ],
- [
- [
- [
- 0.06662170588970184
- ]
- ]
- ],
- [
- [
- [
- 0.06983763724565506
- ]
- ]
- ],
- [
- [
- [
- 0.09116936475038528
- ]
- ]
- ],
- [
- [
- [
- 0.10190749913454056
- ]
- ]
- ],
- [
- [
- [
- 0.08057215809822083
- ]
- ]
- ],
- [
- [
- [
- 0.12368305027484894
- ]
- ]
- ],
- [
- [
- [
- 0.05933622270822525
- ]
- ]
- ],
- [
- [
- [
- 0.05659732222557068
- ]
- ]
- ],
- [
- [
- [
- 0.0698203444480896
- ]
- ]
- ],
- [
- [
- [
- 0.06823895126581192
- ]
- ]
- ],
- [
- [
- [
- 0.0858592689037323
- ]
- ]
- ],
- [
- [
- [
- 0.07350180298089981
- ]
- ]
- ],
- [
- [
- [
- 0.06860005110502243
- ]
- ]
- ],
- [
- [
- [
- 0.050324905663728714
- ]
- ]
- ],
- [
- [
- [
- 0.07189030200242996
- ]
- ]
- ],
- [
- [
- [
- 0.08609016239643097
- ]
- ]
- ],
- [
- [
- [
- 0.10099496692419052
- ]
- ]
- ],
- [
- [
- [
- 0.08254224807024002
- ]
- ]
- ],
- [
- [
- [
- 0.07932084053754807
- ]
- ]
- ],
- [
- [
- [
- 0.09889435023069382
- ]
- ]
- ],
- [
- [
- [
- 0.07703230530023575
- ]
- ]
- ],
- [
- [
- [
- 0.09348131716251373
- ]
- ]
- ],
- [
- [
- [
- 0.07371295243501663
- ]
- ]
- ],
- [
- [
- [
- 0.0697341039776802
- ]
- ]
- ],
- [
- [
- [
- 0.08877726644277573
- ]
- ]
- ],
- [
- [
- [
- 0.08811005204916
- ]
- ]
- ],
- [
- [
- [
- 0.09618402272462845
- ]
- ]
- ],
- [
- [
- [
- 0.07690417021512985
- ]
- ]
- ],
- [
- [
- [
- 0.05107318237423897
- ]
- ]
- ],
- [
- [
- [
- 0.14495573937892914
- ]
- ]
- ],
- [
- [
- [
- 0.10577777028083801
- ]
- ]
- ],
- [
- [
- [
- 0.07263974100351334
- ]
- ]
- ],
- [
- [
- [
- 0.10268343240022659
- ]
- ]
- ],
- [
- [
- [
- 0.060619913041591644
- ]
- ]
- ],
- [
- [
- [
- 0.06874103844165802
- ]
- ]
- ],
- [
- [
- [
- 0.07998576015233994
- ]
- ]
- ],
- [
- [
- [
- 0.06425560265779495
- ]
- ]
- ],
- [
- [
- [
- 0.12438056617975235
- ]
- ]
- ],
- [
- [
- [
- 0.06132021173834801
- ]
- ]
- ],
- [
- [
- [
- 0.07990734279155731
- ]
- ]
- ],
- [
- [
- [
- 0.06922955811023712
- ]
- ]
- ],
- [
- [
- [
- 0.05405823886394501
- ]
- ]
- ],
- [
- [
- [
- 0.07134158909320831
- ]
- ]
- ],
- [
- [
- [
- 0.08228940516710281
- ]
- ]
- ],
- [
- [
- [
- 0.07209205627441406
- ]
- ]
- ],
- [
- [
- [
- 0.07395186275243759
- ]
- ]
- ],
- [
- [
- [
- 0.04049632325768471
- ]
- ]
- ],
- [
- [
- [
- 0.06080811098217964
- ]
- ]
- ],
- [
- [
- [
- 0.0661211609840393
- ]
- ]
- ],
- [
- [
- [
- 0.09525733441114426
- ]
- ]
- ],
- [
- [
- [
- 0.08097393065690994
- ]
- ]
- ],
- [
- [
- [
- 0.1116902157664299
- ]
- ]
- ],
- [
- [
- [
- 0.047268226742744446
- ]
- ]
- ],
- [
- [
- [
- 0.08791053295135498
- ]
- ]
- ],
- [
- [
- [
- 0.08504649996757507
- ]
- ]
- ],
- [
- [
- [
- 0.12071584910154343
- ]
- ]
- ],
- [
- [
- [
- 0.06961110234260559
- ]
- ]
- ],
- [
- [
- [
- 0.08359209448099136
- ]
- ]
- ],
- [
- [
- [
- 0.05157646909356117
- ]
- ]
- ],
- [
- [
- [
- 0.08283037692308426
- ]
- ]
- ],
- [
- [
- [
- 0.07668830454349518
- ]
- ]
- ],
- [
- [
- [
- 0.05593942478299141
- ]
- ]
- ],
- [
- [
- [
- 0.08263685554265976
- ]
- ]
- ],
- [
- [
- [
- 0.08099956065416336
- ]
- ]
- ],
- [
- [
- [
- 0.057596489787101746
- ]
- ]
- ],
- [
- [
- [
- 0.06627891212701797
- ]
- ]
- ],
- [
- [
- [
- 0.05994277447462082
- ]
- ]
- ],
- [
- [
- [
- 0.10571780800819397
- ]
- ]
- ],
- [
- [
- [
- 0.052054766565561295
- ]
- ]
- ],
- [
- [
- [
- 0.09044913202524185
- ]
- ]
- ],
- [
- [
- [
- 0.09348784387111664
- ]
- ]
- ],
- [
- [
- [
- 0.04625977203249931
- ]
- ]
- ],
- [
- [
- [
- 0.07062697410583496
- ]
- ]
- ],
- [
- [
- [
- 0.08242160826921463
- ]
- ]
- ],
- [
- [
- [
- 0.11613553017377853
- ]
- ]
- ],
- [
- [
- [
- 0.07673363387584686
- ]
- ]
- ],
- [
- [
- [
- 0.05518975481390953
- ]
- ]
- ],
- [
- [
- [
- 0.09465054422616959
- ]
- ]
- ],
- [
- [
- [
- 0.06729406863451004
- ]
- ]
- ],
- [
- [
- [
- 0.05551871657371521
- ]
- ]
- ],
- [
- [
- [
- 0.07817549258470535
- ]
- ]
- ],
- [
- [
- [
- 0.06399229913949966
- ]
- ]
- ],
- [
- [
- [
- 0.05107778310775757
- ]
- ]
- ],
- [
- [
- [
- 0.06149657443165779
- ]
- ]
- ],
- [
- [
- [
- 0.07468979805707932
- ]
- ]
- ],
- [
- [
- [
- 0.06120368465781212
- ]
- ]
- ],
- [
- [
- [
- 0.05948040634393692
- ]
- ]
- ],
- [
- [
- [
- 0.064889095723629
- ]
- ]
- ],
- [
- [
- [
- 0.07499144971370697
- ]
- ]
- ],
- [
- [
- [
- 0.07804940640926361
- ]
- ]
- ],
- [
- [
- [
- 0.08943097293376923
- ]
- ]
- ],
- [
- [
- [
- 0.08910474181175232
- ]
- ]
- ],
- [
- [
- [
- 0.09501776844263077
- ]
- ]
- ],
- [
- [
- [
- 0.10549020022153854
- ]
- ]
- ],
- [
- [
- [
- 0.08772651851177216
- ]
- ]
- ],
- [
- [
- [
- 0.09480185806751251
- ]
- ]
- ],
- [
- [
- [
- 0.039753612130880356
- ]
- ]
- ],
- [
- [
- [
- 0.061523739248514175
- ]
- ]
- ],
- [
- [
- [
- 0.09368418902158737
- ]
- ]
- ],
- [
- [
- [
- 0.07691100239753723
- ]
- ]
- ],
- [
- [
- [
- 0.073822021484375
- ]
- ]
- ],
- [
- [
- [
- 0.05471666157245636
- ]
- ]
- ],
- [
- [
- [
- 0.09052624553442001
- ]
- ]
- ],
- [
- [
- [
- 0.08911649137735367
- ]
- ]
- ],
- [
- [
- [
- 0.043947428464889526
- ]
- ]
- ],
- [
- [
- [
- 0.03806280344724655
- ]
- ]
- ],
- [
- [
- [
- 0.08651432394981384
- ]
- ]
- ],
- [
- [
- [
- 0.08740046620368958
- ]
- ]
- ],
- [
- [
- [
- 0.09589625149965286
- ]
- ]
- ],
- [
- [
- [
- 0.0635964497923851
- ]
- ]
- ],
- [
- [
- [
- 0.07670340687036514
- ]
- ]
- ],
- [
- [
- [
- 0.10258164256811142
- ]
- ]
- ],
- [
- [
- [
- 0.05519557371735573
- ]
- ]
- ],
- [
- [
- [
- 0.058486368507146835
- ]
- ]
- ],
- [
- [
- [
- 0.1136150062084198
- ]
- ]
- ],
- [
- [
- [
- 0.057602450251579285
- ]
- ]
- ],
- [
- [
- [
- 0.09003745019435883
- ]
- ]
- ],
- [
- [
- [
- 0.09422420710325241
- ]
- ]
- ],
- [
- [
- [
- 0.08816602826118469
- ]
- ]
- ],
- [
- [
- [
- 0.06102027744054794
- ]
- ]
- ],
- [
- [
- [
- 0.057667434215545654
- ]
- ]
- ],
- [
- [
- [
- 0.052378516644239426
- ]
- ]
- ],
- [
- [
- [
- 0.0915367603302002
- ]
- ]
- ],
- [
- [
- [
- 0.11141592264175415
- ]
- ]
- ],
- [
- [
- [
- 0.07275049388408661
- ]
- ]
- ],
- [
- [
- [
- 0.09853202849626541
- ]
- ]
- ],
- [
- [
- [
- 0.05745477229356766
- ]
- ]
- ],
- [
- [
- [
- 0.1042008325457573
- ]
- ]
- ],
- [
- [
- [
- 0.084428571164608
- ]
- ]
- ],
- [
- [
- [
- 0.03213006630539894
- ]
- ]
- ],
- [
- [
- [
- 0.053230106830596924
- ]
- ]
- ],
- [
- [
- [
- 0.056356336921453476
- ]
- ]
- ],
- [
- [
- [
- 0.029592957347631454
- ]
- ]
- ],
- [
- [
- [
- 0.03155312314629555
- ]
- ]
- ],
- [
- [
- [
- 0.10173670202493668
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.06684163212776184
- ]
- ]
- ],
- [
- [
- [
- 0.05585940182209015
- ]
- ]
- ],
- [
- [
- [
- 0.14228609204292297
- ]
- ]
- ],
- [
- [
- [
- 0.10057239234447479
- ]
- ]
- ],
- [
- [
- [
- 0.11406401544809341
- ]
- ]
- ],
- [
- [
- [
- 0.07664996385574341
- ]
- ]
- ],
- [
- [
- [
- 0.08341754972934723
- ]
- ]
- ],
- [
- [
- [
- 0.09490326046943665
- ]
- ]
- ],
- [
- [
- [
- 0.07314691692590714
- ]
- ]
- ],
- [
- [
- [
- 0.07535300403833389
- ]
- ]
- ],
- [
- [
- [
- 0.07943447679281235
- ]
- ]
- ],
- [
- [
- [
- 0.05892981216311455
- ]
- ]
- ],
- [
- [
- [
- 0.058823566883802414
- ]
- ]
- ],
- [
- [
- [
- 0.09280380606651306
- ]
- ]
- ],
- [
- [
- [
- 0.08679395169019699
- ]
- ]
- ],
- [
- [
- [
- 0.10126554220914841
- ]
- ]
- ],
- [
- [
- [
- 0.08906863629817963
- ]
- ]
- ],
- [
- [
- [
- 0.054329100996255875
- ]
- ]
- ],
- [
- [
- [
- 0.12931326031684875
- ]
- ]
- ],
- [
- [
- [
- 0.13117115199565887
- ]
- ]
- ],
- [
- [
- [
- 0.07586194574832916
- ]
- ]
- ],
- [
- [
- [
- 0.07552564144134521
- ]
- ]
- ],
- [
- [
- [
- 0.08194880187511444
- ]
- ]
- ],
- [
- [
- [
- 0.08497414737939835
- ]
- ]
- ],
- [
- [
- [
- 0.11016431450843811
- ]
- ]
- ],
- [
- [
- [
- 0.0916135236620903
- ]
- ]
- ],
- [
- [
- [
- 0.09609591215848923
- ]
- ]
- ],
- [
- [
- [
- 0.08644851297140121
- ]
- ]
- ],
- [
- [
- [
- 0.061881810426712036
- ]
- ]
- ],
- [
- [
- [
- 0.052320774644613266
- ]
- ]
- ],
- [
- [
- [
- 0.09620192646980286
- ]
- ]
- ],
- [
- [
- [
- 0.0960218533873558
- ]
- ]
- ],
- [
- [
- [
- 0.09636559337377548
- ]
- ]
- ],
- [
- [
- [
- 0.09018382430076599
- ]
- ]
- ],
- [
- [
- [
- 0.0757909044623375
- ]
- ]
- ],
- [
- [
- [
- 0.1937423050403595
- ]
- ]
- ],
- [
- [
- [
- 0.06648385524749756
- ]
- ]
- ],
- [
- [
- [
- 0.06308578699827194
- ]
- ]
- ],
- [
- [
- [
- 0.0810537114739418
- ]
- ]
- ],
- [
- [
- [
- 0.09674353897571564
- ]
- ]
- ],
- [
- [
- [
- 0.0951564684510231
- ]
- ]
- ],
- [
- [
- [
- 0.05451652780175209
- ]
- ]
- ],
- [
- [
- [
- 0.153913214802742
- ]
- ]
- ],
- [
- [
- [
- 0.08305449038743973
- ]
- ]
- ],
- [
- [
- [
- 0.08001574128866196
- ]
- ]
- ],
- [
- [
- [
- 0.08307718485593796
- ]
- ]
- ],
- [
- [
- [
- 0.09296419471502304
- ]
- ]
- ],
- [
- [
- [
- 0.10116496682167053
- ]
- ]
- ],
- [
- [
- [
- 0.11452315002679825
- ]
- ]
- ],
- [
- [
- [
- 0.059926025569438934
- ]
- ]
- ],
- [
- [
- [
- 0.14107368886470795
- ]
- ]
- ],
- [
- [
- [
- 0.09363594651222229
- ]
- ]
- ],
- [
- [
- [
- 0.05010456219315529
- ]
- ]
- ],
- [
- [
- [
- 0.03640623018145561
- ]
- ]
- ],
- [
- [
- [
- 0.09134142100811005
- ]
- ]
- ],
- [
- [
- [
- 0.07697655260562897
- ]
- ]
- ],
- [
- [
- [
- 0.10864877700805664
- ]
- ]
- ],
- [
- [
- [
- 0.10198307782411575
- ]
- ]
- ],
- [
- [
- [
- 0.1042611300945282
- ]
- ]
- ],
- [
- [
- [
- 0.03458947688341141
- ]
- ]
- ],
- [
- [
- [
- 0.08694835007190704
- ]
- ]
- ],
- [
- [
- [
- 0.053618576377630234
- ]
- ]
- ],
- [
- [
- [
- 0.06671763211488724
- ]
- ]
- ],
- [
- [
- [
- 0.09233434498310089
- ]
- ]
- ],
- [
- [
- [
- 0.06116355210542679
- ]
- ]
- ],
- [
- [
- [
- 0.07294467836618423
- ]
- ]
- ],
- [
- [
- [
- 0.05872868373990059
- ]
- ]
- ],
- [
- [
- [
- 0.08115499466657639
- ]
- ]
- ],
- [
- [
- [
- 0.1184283196926117
- ]
- ]
- ],
- [
- [
- [
- 0.09759453684091568
- ]
- ]
- ],
- [
- [
- [
- 0.13155603408813477
- ]
- ]
- ],
- [
- [
- [
- 0.0788569226861
- ]
- ]
- ],
- [
- [
- [
- 0.06619301438331604
- ]
- ]
- ],
- [
- [
- [
- 0.07956621050834656
- ]
- ]
- ],
- [
- [
- [
- 0.09835013747215271
- ]
- ]
- ],
- [
- [
- [
- 0.07436123490333557
- ]
- ]
- ],
- [
- [
- [
- 0.05061725899577141
- ]
- ]
- ],
- [
- [
- [
- 0.04629236459732056
- ]
- ]
- ],
- [
- [
- [
- 0.09435953944921494
- ]
- ]
- ],
- [
- [
- [
- 0.0668959841132164
- ]
- ]
- ],
- [
- [
- [
- 0.08068779110908508
- ]
- ]
- ],
- [
- [
- [
- 0.08070873469114304
- ]
- ]
- ],
- [
- [
- [
- 0.07939345389604568
- ]
- ]
- ],
- [
- [
- [
- 0.15484188497066498
- ]
- ]
- ],
- [
- [
- [
- 0.0919148251414299
- ]
- ]
- ],
- [
- [
- [
- 0.07471802830696106
- ]
- ]
- ],
- [
- [
- [
- 0.08610639721155167
- ]
- ]
- ],
- [
- [
- [
- 0.07699315994977951
- ]
- ]
- ],
- [
- [
- [
- 0.08712373673915863
- ]
- ]
- ],
- [
- [
- [
- 0.04791928455233574
- ]
- ]
- ],
- [
- [
- [
- 0.08226808160543442
- ]
- ]
- ],
- [
- [
- [
- 0.0632556900382042
- ]
- ]
- ],
- [
- [
- [
- 0.1262573003768921
- ]
- ]
- ],
- [
- [
- [
- 0.10595264285802841
- ]
- ]
- ],
- [
- [
- [
- 0.07297582179307938
- ]
- ]
- ],
- [
- [
- [
- 0.09953981637954712
- ]
- ]
- ],
- [
- [
- [
- 0.08194190263748169
- ]
- ]
- ],
- [
- [
- [
- 0.07714556902647018
- ]
- ]
- ],
- [
- [
- [
- 0.12346109747886658
- ]
- ]
- ],
- [
- [
- [
- 0.06130913645029068
- ]
- ]
- ],
- [
- [
- [
- 0.09535396099090576
- ]
- ]
- ],
- [
- [
- [
- 0.1122744008898735
- ]
- ]
- ],
- [
- [
- [
- 0.1003168523311615
- ]
- ]
- ],
- [
- [
- [
- 0.08037327975034714
- ]
- ]
- ],
- [
- [
- [
- 0.06776654720306396
- ]
- ]
- ],
- [
- [
- [
- 0.0879741758108139
- ]
- ]
- ],
- [
- [
- [
- 0.06921051442623138
- ]
- ]
- ],
- [
- [
- [
- 0.06913849711418152
- ]
- ]
- ],
- [
- [
- [
- 0.07223470509052277
- ]
- ]
- ],
- [
- [
- [
- 0.07350557297468185
- ]
- ]
- ],
- [
- [
- [
- 0.07994816452264786
- ]
- ]
- ],
- [
- [
- [
- 0.07081999629735947
- ]
- ]
- ],
- [
- [
- [
- 0.08315808326005936
- ]
- ]
- ],
- [
- [
- [
- 0.09268578141927719
- ]
- ]
- ],
- [
- [
- [
- 0.12025230377912521
- ]
- ]
- ],
- [
- [
- [
- 0.06363484263420105
- ]
- ]
- ],
- [
- [
- [
- 0.0522334985435009
- ]
- ]
- ],
- [
- [
- [
- 0.04518759995698929
- ]
- ]
- ],
- [
- [
- [
- 0.10059089213609695
- ]
- ]
- ],
- [
- [
- [
- 0.1013714149594307
- ]
- ]
- ],
- [
- [
- [
- 0.06423552334308624
- ]
- ]
- ],
- [
- [
- [
- 0.09093166142702103
- ]
- ]
- ],
- [
- [
- [
- 0.08673609793186188
- ]
- ]
- ],
- [
- [
- [
- 0.07875305414199829
- ]
- ]
- ],
- [
- [
- [
- 0.03263058885931969
- ]
- ]
- ],
- [
- [
- [
- 0.11134500801563263
- ]
- ]
- ],
- [
- [
- [
- 0.05054020136594772
- ]
- ]
- ],
- [
- [
- [
- 0.07523494213819504
- ]
- ]
- ],
- [
- [
- [
- 0.07799956947565079
- ]
- ]
- ],
- [
- [
- [
- 0.12234081327915192
- ]
- ]
- ],
- [
- [
- [
- 0.06707817316055298
- ]
- ]
- ],
- [
- [
- [
- 0.09497781097888947
- ]
- ]
- ],
- [
- [
- [
- 0.0788748487830162
- ]
- ]
- ],
- [
- [
- [
- 0.07790723443031311
- ]
- ]
- ],
- [
- [
- [
- 0.07760436832904816
- ]
- ]
- ],
- [
- [
- [
- 0.0807025209069252
- ]
- ]
- ],
- [
- [
- [
- 0.0785837173461914
- ]
- ]
- ],
- [
- [
- [
- 0.089628204703331
- ]
- ]
- ],
- [
- [
- [
- 0.0907866582274437
- ]
- ]
- ],
- [
- [
- [
- 0.08295813947916031
- ]
- ]
- ],
- [
- [
- [
- 0.06879930198192596
- ]
- ]
- ],
- [
- [
- [
- 0.08176907151937485
- ]
- ]
- ],
- [
- [
- [
- 0.05675710365176201
- ]
- ]
- ],
- [
- [
- [
- 0.08753447979688644
- ]
- ]
- ],
- [
- [
- [
- 0.07372986525297165
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.05830051004886627
- ]
- ]
- ],
- [
- [
- [
- -0.07807084918022156
- ]
- ]
- ],
- [
- [
- [
- -0.058807969093322754
- ]
- ]
- ],
- [
- [
- [
- -0.07144374400377274
- ]
- ]
- ],
- [
- [
- [
- -0.10358694940805435
- ]
- ]
- ],
- [
- [
- [
- -0.07008533924818039
- ]
- ]
- ],
- [
- [
- [
- -0.09185867011547089
- ]
- ]
- ],
- [
- [
- [
- -0.04874323680996895
- ]
- ]
- ],
- [
- [
- [
- -0.06963656097650528
- ]
- ]
- ],
- [
- [
- [
- -0.06616033613681793
- ]
- ]
- ],
- [
- [
- [
- -0.0920611321926117
- ]
- ]
- ],
- [
- [
- [
- -0.06595803052186966
- ]
- ]
- ],
- [
- [
- [
- -0.07073991000652313
- ]
- ]
- ],
- [
- [
- [
- -0.07338160276412964
- ]
- ]
- ],
- [
- [
- [
- -0.08121359348297119
- ]
- ]
- ],
- [
- [
- [
- -0.08493801206350327
- ]
- ]
- ],
- [
- [
- [
- -0.07619204372167587
- ]
- ]
- ],
- [
- [
- [
- -0.10002736002206802
- ]
- ]
- ],
- [
- [
- [
- -0.058286283165216446
- ]
- ]
- ],
- [
- [
- [
- -0.07588834315538406
- ]
- ]
- ],
- [
- [
- [
- -0.09944571554660797
- ]
- ]
- ],
- [
- [
- [
- -0.0723671019077301
- ]
- ]
- ],
- [
- [
- [
- -0.05859633535146713
- ]
- ]
- ],
- [
- [
- [
- -0.06310499459505081
- ]
- ]
- ],
- [
- [
- [
- -0.050543151795864105
- ]
- ]
- ],
- [
- [
- [
- -0.09148801863193512
- ]
- ]
- ],
- [
- [
- [
- -0.08581556379795074
- ]
- ]
- ],
- [
- [
- [
- -0.060656607151031494
- ]
- ]
- ],
- [
- [
- [
- -0.10404647141695023
- ]
- ]
- ],
- [
- [
- [
- -0.06679873168468475
- ]
- ]
- ],
- [
- [
- [
- -0.044415153563022614
- ]
- ]
- ],
- [
- [
- [
- -0.11154074221849442
- ]
- ]
- ],
- [
- [
- [
- -0.07860548049211502
- ]
- ]
- ],
- [
- [
- [
- -0.1185956671833992
- ]
- ]
- ],
- [
- [
- [
- -0.05273063853383064
- ]
- ]
- ],
- [
- [
- [
- -0.052731744945049286
- ]
- ]
- ],
- [
- [
- [
- -0.060855284333229065
- ]
- ]
- ],
- [
- [
- [
- -0.07305596768856049
- ]
- ]
- ],
- [
- [
- [
- -0.07071968168020248
- ]
- ]
- ],
- [
- [
- [
- -0.11274702101945877
- ]
- ]
- ],
- [
- [
- [
- -0.09480860084295273
- ]
- ]
- ],
- [
- [
- [
- -0.07785995304584503
- ]
- ]
- ],
- [
- [
- [
- -0.05848336219787598
- ]
- ]
- ],
- [
- [
- [
- -0.10763268917798996
- ]
- ]
- ],
- [
- [
- [
- -0.1245071142911911
- ]
- ]
- ],
- [
- [
- [
- -0.07579417526721954
- ]
- ]
- ],
- [
- [
- [
- -0.09219890087842941
- ]
- ]
- ],
- [
- [
- [
- -0.13886697590351105
- ]
- ]
- ],
- [
- [
- [
- -0.09606405347585678
- ]
- ]
- ],
- [
- [
- [
- -0.08303540199995041
- ]
- ]
- ],
- [
- [
- [
- -0.07722760736942291
- ]
- ]
- ],
- [
- [
- [
- -0.09945156425237656
- ]
- ]
- ],
- [
- [
- [
- -0.08764202147722244
- ]
- ]
- ],
- [
- [
- [
- -0.058732133358716965
- ]
- ]
- ],
- [
- [
- [
- -0.09361578524112701
- ]
- ]
- ],
- [
- [
- [
- -0.043875839561223984
- ]
- ]
- ],
- [
- [
- [
- -0.07803981006145477
- ]
- ]
- ],
- [
- [
- [
- -0.07265777885913849
- ]
- ]
- ],
- [
- [
- [
- -0.05949536710977554
- ]
- ]
- ],
- [
- [
- [
- -0.07602614164352417
- ]
- ]
- ],
- [
- [
- [
- -0.10432162880897522
- ]
- ]
- ],
- [
- [
- [
- -0.0951901376247406
- ]
- ]
- ],
- [
- [
- [
- -0.06567154079675674
- ]
- ]
- ],
- [
- [
- [
- -0.07698667049407959
- ]
- ]
- ],
- [
- [
- [
- -0.07403117418289185
- ]
- ]
- ],
- [
- [
- [
- -0.08374164998531342
- ]
- ]
- ],
- [
- [
- [
- -0.07519316673278809
- ]
- ]
- ],
- [
- [
- [
- -0.09778162837028503
- ]
- ]
- ],
- [
- [
- [
- -0.07200504094362259
- ]
- ]
- ],
- [
- [
- [
- -0.09817332029342651
- ]
- ]
- ],
- [
- [
- [
- -0.08049968630075455
- ]
- ]
- ],
- [
- [
- [
- -0.06662329286336899
- ]
- ]
- ],
- [
- [
- [
- -0.12475044280290604
- ]
- ]
- ],
- [
- [
- [
- -0.09708505868911743
- ]
- ]
- ],
- [
- [
- [
- -0.05387400463223457
- ]
- ]
- ],
- [
- [
- [
- -0.08167553693056107
- ]
- ]
- ],
- [
- [
- [
- -0.101011261343956
- ]
- ]
- ],
- [
- [
- [
- -0.06901419907808304
- ]
- ]
- ],
- [
- [
- [
- -0.11538947373628616
- ]
- ]
- ],
- [
- [
- [
- -0.09510954469442368
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.0927855595946312
- ]
- ]
- ],
- [
- [
- [
- -0.06547746807336807
- ]
- ]
- ],
- [
- [
- [
- -0.07651612907648087
- ]
- ]
- ],
- [
- [
- [
- -0.07265041023492813
- ]
- ]
- ],
- [
- [
- [
- -0.08361450582742691
- ]
- ]
- ],
- [
- [
- [
- -0.08582837879657745
- ]
- ]
- ],
- [
- [
- [
- -0.06267891824245453
- ]
- ]
- ],
- [
- [
- [
- -0.11335033178329468
- ]
- ]
- ],
- [
- [
- [
- -0.06436843425035477
- ]
- ]
- ],
- [
- [
- [
- -0.08227626234292984
- ]
- ]
- ],
- [
- [
- [
- -0.08898670971393585
- ]
- ]
- ],
- [
- [
- [
- -0.07927422970533371
- ]
- ]
- ],
- [
- [
- [
- -0.06923487037420273
- ]
- ]
- ],
- [
- [
- [
- -0.07126303762197495
- ]
- ]
- ],
- [
- [
- [
- -0.08635919541120529
- ]
- ]
- ],
- [
- [
- [
- -0.10967998951673508
- ]
- ]
- ],
- [
- [
- [
- -0.10560844093561172
- ]
- ]
- ],
- [
- [
- [
- -0.09857683628797531
- ]
- ]
- ],
- [
- [
- [
- -0.06911434233188629
- ]
- ]
- ],
- [
- [
- [
- -0.08430086076259613
- ]
- ]
- ],
- [
- [
- [
- -0.08497870713472366
- ]
- ]
- ],
- [
- [
- [
- -0.07850105315446854
- ]
- ]
- ],
- [
- [
- [
- -0.1128198653459549
- ]
- ]
- ],
- [
- [
- [
- -0.0800718441605568
- ]
- ]
- ],
- [
- [
- [
- -0.09379331767559052
- ]
- ]
- ],
- [
- [
- [
- -0.07006057351827621
- ]
- ]
- ],
- [
- [
- [
- -0.09632085263729095
- ]
- ]
- ],
- [
- [
- [
- -0.07132977992296219
- ]
- ]
- ],
- [
- [
- [
- -0.05603781342506409
- ]
- ]
- ],
- [
- [
- [
- -0.07803531736135483
- ]
- ]
- ],
- [
- [
- [
- -0.09999839961528778
- ]
- ]
- ],
- [
- [
- [
- -0.11049391329288483
- ]
- ]
- ],
- [
- [
- [
- -0.06274744868278503
- ]
- ]
- ],
- [
- [
- [
- -0.05021531879901886
- ]
- ]
- ],
- [
- [
- [
- -0.10432083904743195
- ]
- ]
- ],
- [
- [
- [
- -0.06487513333559036
- ]
- ]
- ],
- [
- [
- [
- -0.04249809682369232
- ]
- ]
- ],
- [
- [
- [
- -0.051618896424770355
- ]
- ]
- ],
- [
- [
- [
- -0.07012447714805603
- ]
- ]
- ],
- [
- [
- [
- -0.08772289007902145
- ]
- ]
- ],
- [
- [
- [
- -0.06959018111228943
- ]
- ]
- ],
- [
- [
- [
- -0.11226815730333328
- ]
- ]
- ],
- [
- [
- [
- -0.09571922570466995
- ]
- ]
- ],
- [
- [
- [
- -0.07333376258611679
- ]
- ]
- ],
- [
- [
- [
- -0.07313158363103867
- ]
- ]
- ],
- [
- [
- [
- -0.07756626605987549
- ]
- ]
- ],
- [
- [
- [
- -0.06275714933872223
- ]
- ]
- ],
- [
- [
- [
- -0.07838936150074005
- ]
- ]
- ],
- [
- [
- [
- -0.06960339844226837
- ]
- ]
- ],
- [
- [
- [
- -0.0780213326215744
- ]
- ]
- ],
- [
- [
- [
- -0.06549248099327087
- ]
- ]
- ],
- [
- [
- [
- -0.06722289323806763
- ]
- ]
- ],
- [
- [
- [
- -0.07430832087993622
- ]
- ]
- ],
- [
- [
- [
- -0.08972927927970886
- ]
- ]
- ],
- [
- [
- [
- -0.09422715753316879
- ]
- ]
- ],
- [
- [
- [
- -0.05425902083516121
- ]
- ]
- ],
- [
- [
- [
- -0.07864182442426682
- ]
- ]
- ],
- [
- [
- [
- -0.07322236150503159
- ]
- ]
- ],
- [
- [
- [
- -0.06648565828800201
- ]
- ]
- ],
- [
- [
- [
- -0.10088223218917847
- ]
- ]
- ],
- [
- [
- [
- -0.07449463754892349
- ]
- ]
- ],
- [
- [
- [
- -0.07603677362203598
- ]
- ]
- ],
- [
- [
- [
- -0.0922265499830246
- ]
- ]
- ],
- [
- [
- [
- -0.09184981137514114
- ]
- ]
- ],
- [
- [
- [
- -0.06204533204436302
- ]
- ]
- ],
- [
- [
- [
- -0.05555403232574463
- ]
- ]
- ],
- [
- [
- [
- -0.06319446861743927
- ]
- ]
- ],
- [
- [
- [
- -0.07266212999820709
- ]
- ]
- ],
- [
- [
- [
- -0.08255491405725479
- ]
- ]
- ],
- [
- [
- [
- -0.06696457415819168
- ]
- ]
- ],
- [
- [
- [
- -0.06429167836904526
- ]
- ]
- ],
- [
- [
- [
- -0.07269757986068726
- ]
- ]
- ],
- [
- [
- [
- -0.0924118310213089
- ]
- ]
- ],
- [
- [
- [
- -0.11024060845375061
- ]
- ]
- ],
- [
- [
- [
- -0.10873532295227051
- ]
- ]
- ],
- [
- [
- [
- -0.08680135011672974
- ]
- ]
- ],
- [
- [
- [
- -0.0676921084523201
- ]
- ]
- ],
- [
- [
- [
- -0.11510374397039413
- ]
- ]
- ],
- [
- [
- [
- -0.09412893652915955
- ]
- ]
- ],
- [
- [
- [
- -0.08386683464050293
- ]
- ]
- ],
- [
- [
- [
- -0.04036860167980194
- ]
- ]
- ],
- [
- [
- [
- -0.11506912857294083
- ]
- ]
- ],
- [
- [
- [
- -0.10754183679819107
- ]
- ]
- ],
- [
- [
- [
- -0.09053366631269455
- ]
- ]
- ],
- [
- [
- [
- -0.11464585363864899
- ]
- ]
- ],
- [
- [
- [
- -0.073506660759449
- ]
- ]
- ],
- [
- [
- [
- -0.08165183663368225
- ]
- ]
- ],
- [
- [
- [
- -0.08294045180082321
- ]
- ]
- ],
- [
- [
- [
- -0.07027869671583176
- ]
- ]
- ],
- [
- [
- [
- -0.08052494376897812
- ]
- ]
- ],
- [
- [
- [
- -0.08692879974842072
- ]
- ]
- ],
- [
- [
- [
- -0.0953993871808052
- ]
- ]
- ],
- [
- [
- [
- -0.10865037143230438
- ]
- ]
- ],
- [
- [
- [
- -0.077224962413311
- ]
- ]
- ],
- [
- [
- [
- -0.09029295295476913
- ]
- ]
- ],
- [
- [
- [
- -0.08946505188941956
- ]
- ]
- ],
- [
- [
- [
- -0.07717661559581757
- ]
- ]
- ],
- [
- [
- [
- -0.11505956202745438
- ]
- ]
- ],
- [
- [
- [
- -0.03286290913820267
- ]
- ]
- ],
- [
- [
- [
- -0.07921445369720459
- ]
- ]
- ],
- [
- [
- [
- -0.05967634916305542
- ]
- ]
- ],
- [
- [
- [
- -0.09584246575832367
- ]
- ]
- ],
- [
- [
- [
- -0.09238466620445251
- ]
- ]
- ],
- [
- [
- [
- -0.09030137211084366
- ]
- ]
- ],
- [
- [
- [
- -0.10391327738761902
- ]
- ]
- ],
- [
- [
- [
- -0.08623527735471725
- ]
- ]
- ],
- [
- [
- [
- -0.05495396628975868
- ]
- ]
- ],
- [
- [
- [
- -0.10202000290155411
- ]
- ]
- ],
- [
- [
- [
- -0.09293452650308609
- ]
- ]
- ],
- [
- [
- [
- -0.05898229777812958
- ]
- ]
- ],
- [
- [
- [
- -0.09295911341905594
- ]
- ]
- ],
- [
- [
- [
- -0.11731816828250885
- ]
- ]
- ],
- [
- [
- [
- -0.08608409017324448
- ]
- ]
- ],
- [
- [
- [
- -0.09794167429208755
- ]
- ]
- ],
- [
- [
- [
- -0.11555340886116028
- ]
- ]
- ],
- [
- [
- [
- -0.06883645057678223
- ]
- ]
- ],
- [
- [
- [
- -0.06651856005191803
- ]
- ]
- ],
- [
- [
- [
- -0.07615353912115097
- ]
- ]
- ],
- [
- [
- [
- -0.08406630158424377
- ]
- ]
- ],
- [
- [
- [
- -0.09096626937389374
- ]
- ]
- ],
- [
- [
- [
- -0.07211116701364517
- ]
- ]
- ],
- [
- [
- [
- -0.0952414944767952
- ]
- ]
- ],
- [
- [
- [
- -0.06680657714605331
- ]
- ]
- ],
- [
- [
- [
- -0.06851711869239807
- ]
- ]
- ],
- [
- [
- [
- -0.08528391271829605
- ]
- ]
- ],
- [
- [
- [
- -0.11180242896080017
- ]
- ]
- ],
- [
- [
- [
- -0.10873346775770187
- ]
- ]
- ],
- [
- [
- [
- -0.059275105595588684
- ]
- ]
- ],
- [
- [
- [
- -0.09423975646495819
- ]
- ]
- ],
- [
- [
- [
- -0.05676921457052231
- ]
- ]
- ],
- [
- [
- [
- -0.07610844820737839
- ]
- ]
- ],
- [
- [
- [
- -0.07910905033349991
- ]
- ]
- ],
- [
- [
- [
- -0.06691212952136993
- ]
- ]
- ],
- [
- [
- [
- -0.11250659823417664
- ]
- ]
- ],
- [
- [
- [
- -0.07419870048761368
- ]
- ]
- ],
- [
- [
- [
- -0.06669463217258453
- ]
- ]
- ],
- [
- [
- [
- -0.05885457992553711
- ]
- ]
- ],
- [
- [
- [
- -0.1159944087266922
- ]
- ]
- ],
- [
- [
- [
- -0.07624396681785583
- ]
- ]
- ],
- [
- [
- [
- -0.06766287237405777
- ]
- ]
- ],
- [
- [
- [
- -0.07680922746658325
- ]
- ]
- ],
- [
- [
- [
- -0.06946471333503723
- ]
- ]
- ],
- [
- [
- [
- -0.0919509083032608
- ]
- ]
- ],
- [
- [
- [
- -0.07592714577913284
- ]
- ]
- ],
- [
- [
- [
- -0.10248823463916779
- ]
- ]
- ],
- [
- [
- [
- -0.13383527100086212
- ]
- ]
- ],
- [
- [
- [
- -0.08339645713567734
- ]
- ]
- ],
- [
- [
- [
- -0.07695843279361725
- ]
- ]
- ],
- [
- [
- [
- -0.07710961997509003
- ]
- ]
- ],
- [
- [
- [
- -0.1061524823307991
- ]
- ]
- ],
- [
- [
- [
- -0.07036775350570679
- ]
- ]
- ],
- [
- [
- [
- -0.085562564432621
- ]
- ]
- ],
- [
- [
- [
- -0.21382242441177368
- ]
- ]
- ],
- [
- [
- [
- -0.07857491821050644
- ]
- ]
- ],
- [
- [
- [
- -0.1099463626742363
- ]
- ]
- ],
- [
- [
- [
- -0.14383450150489807
- ]
- ]
- ],
- [
- [
- [
- -0.10274694114923477
- ]
- ]
- ],
- [
- [
- [
- -0.07513484358787537
- ]
- ]
- ],
- [
- [
- [
- -0.06390704959630966
- ]
- ]
- ],
- [
- [
- [
- -0.07116810232400894
- ]
- ]
- ],
- [
- [
- [
- -0.09363582730293274
- ]
- ]
- ],
- [
- [
- [
- -0.0724642276763916
- ]
- ]
- ],
- [
- [
- [
- -0.07266469299793243
- ]
- ]
- ],
- [
- [
- [
- -0.057547736912965775
- ]
- ]
- ],
- [
- [
- [
- -0.09344135969877243
- ]
- ]
- ],
- [
- [
- [
- -0.053898394107818604
- ]
- ]
- ],
- [
- [
- [
- -0.07656838744878769
- ]
- ]
- ],
- [
- [
- [
- -0.07497531175613403
- ]
- ]
- ],
- [
- [
- [
- -0.06811502575874329
- ]
- ]
- ],
- [
- [
- [
- -0.11376581341028214
- ]
- ]
- ],
- [
- [
- [
- -0.06149345636367798
- ]
- ]
- ],
- [
- [
- [
- -0.05183403939008713
- ]
- ]
- ],
- [
- [
- [
- -0.08022721111774445
- ]
- ]
- ],
- [
- [
- [
- -0.0987282544374466
- ]
- ]
- ],
- [
- [
- [
- -0.06399784982204437
- ]
- ]
- ],
- [
- [
- [
- -0.07653763145208359
- ]
- ]
- ],
- [
- [
- [
- -0.06915295124053955
- ]
- ]
- ],
- [
- [
- [
- -0.06052859500050545
- ]
- ]
- ],
- [
- [
- [
- -0.05823924019932747
- ]
- ]
- ],
- [
- [
- [
- -0.0456743985414505
- ]
- ]
- ],
- [
- [
- [
- -0.10369610786437988
- ]
- ]
- ],
- [
- [
- [
- -0.07880622893571854
- ]
- ]
- ],
- [
- [
- [
- -0.08206156641244888
- ]
- ]
- ],
- [
- [
- [
- -0.06859724968671799
- ]
- ]
- ],
- [
- [
- [
- -0.04655861482024193
- ]
- ]
- ],
- [
- [
- [
- -0.07751043885946274
- ]
- ]
- ],
- [
- [
- [
- -0.10279050469398499
- ]
- ]
- ],
- [
- [
- [
- -0.06220567226409912
- ]
- ]
- ],
- [
- [
- [
- -0.06367946416139603
- ]
- ]
- ],
- [
- [
- [
- -0.08618101477622986
- ]
- ]
- ],
- [
- [
- [
- -0.06984037905931473
- ]
- ]
- ],
- [
- [
- [
- -0.08608252555131912
- ]
- ]
- ],
- [
- [
- [
- -0.05895625427365303
- ]
- ]
- ],
- [
- [
- [
- -0.07282155007123947
- ]
- ]
- ],
- [
- [
- [
- -0.08441168069839478
- ]
- ]
- ],
- [
- [
- [
- -0.0793905034661293
- ]
- ]
- ],
- [
- [
- [
- -0.06165153160691261
- ]
- ]
- ],
- [
- [
- [
- -0.06794990599155426
- ]
- ]
- ],
- [
- [
- [
- -0.08553123474121094
- ]
- ]
- ],
- [
- [
- [
- -0.11563128232955933
- ]
- ]
- ],
- [
- [
- [
- -0.07279375940561295
- ]
- ]
- ],
- [
- [
- [
- -0.10589838773012161
- ]
- ]
- ],
- [
- [
- [
- -0.09244062006473541
- ]
- ]
- ],
- [
- [
- [
- -0.07044939696788788
- ]
- ]
- ],
- [
- [
- [
- -0.06015930697321892
- ]
- ]
- ],
- [
- [
- [
- -0.08138158172369003
- ]
- ]
- ],
- [
- [
- [
- -0.06608569622039795
- ]
- ]
- ],
- [
- [
- [
- -0.09543434530496597
- ]
- ]
- ],
- [
- [
- [
- -0.08854544907808304
- ]
- ]
- ],
- [
- [
- [
- -0.10462861508131027
- ]
- ]
- ],
- [
- [
- [
- -0.0497627891600132
- ]
- ]
- ],
- [
- [
- [
- -0.09672799706459045
- ]
- ]
- ],
- [
- [
- [
- -0.07059312611818314
- ]
- ]
- ],
- [
- [
- [
- -0.06578957289457321
- ]
- ]
- ],
- [
- [
- [
- -0.07590578496456146
- ]
- ]
- ],
- [
- [
- [
- -0.11472567915916443
- ]
- ]
- ],
- [
- [
- [
- -0.06593683362007141
- ]
- ]
- ],
- [
- [
- [
- -0.11918499320745468
- ]
- ]
- ],
- [
- [
- [
- -0.05244479328393936
- ]
- ]
- ],
- [
- [
- [
- -0.08672211319208145
- ]
- ]
- ],
- [
- [
- [
- -0.10970969498157501
- ]
- ]
- ],
- [
- [
- [
- -0.047886401414871216
- ]
- ]
- ],
- [
- [
- [
- -0.07232394814491272
- ]
- ]
- ],
- [
- [
- [
- -0.07981234043836594
- ]
- ]
- ],
- [
- [
- [
- -0.09312881529331207
- ]
- ]
- ],
- [
- [
- [
- -0.04917316883802414
- ]
- ]
- ],
- [
- [
- [
- -0.11387096345424652
- ]
- ]
- ],
- [
- [
- [
- -0.057647861540317535
- ]
- ]
- ],
- [
- [
- [
- -0.07365357875823975
- ]
- ]
- ],
- [
- [
- [
- -0.07064367085695267
- ]
- ]
- ],
- [
- [
- [
- -0.059707749634981155
- ]
- ]
- ],
- [
- [
- [
- -0.08768116682767868
- ]
- ]
- ],
- [
- [
- [
- -0.10374545305967331
- ]
- ]
- ],
- [
- [
- [
- -0.08074260503053665
- ]
- ]
- ],
- [
- [
- [
- -0.1018538549542427
- ]
- ]
- ],
- [
- [
- [
- -0.06713578850030899
- ]
- ]
- ],
- [
- [
- [
- -0.09989522397518158
- ]
- ]
- ],
- [
- [
- [
- -0.07748159766197205
- ]
- ]
- ],
- [
- [
- [
- -0.08455442637205124
- ]
- ]
- ],
- [
- [
- [
- -0.06822068244218826
- ]
- ]
- ],
- [
- [
- [
- -0.07050459831953049
- ]
- ]
- ],
- [
- [
- [
- -0.05438802391290665
- ]
- ]
- ],
- [
- [
- [
- -0.1406448930501938
- ]
- ]
- ],
- [
- [
- [
- -0.08751429617404938
- ]
- ]
- ],
- [
- [
- [
- -0.1140630766749382
- ]
- ]
- ],
- [
- [
- [
- -0.06903029978275299
- ]
- ]
- ],
- [
- [
- [
- -0.10764588415622711
- ]
- ]
- ],
- [
- [
- [
- -0.11386705189943314
- ]
- ]
- ],
- [
- [
- [
- -0.11003521829843521
- ]
- ]
- ],
- [
- [
- [
- -0.09007588028907776
- ]
- ]
- ],
- [
- [
- [
- -0.09357762336730957
- ]
- ]
- ],
- [
- [
- [
- -0.05080707371234894
- ]
- ]
- ],
- [
- [
- [
- -0.11502858996391296
- ]
- ]
- ],
- [
- [
- [
- -0.08417194336652756
- ]
- ]
- ],
- [
- [
- [
- -0.06930627673864365
- ]
- ]
- ],
- [
- [
- [
- -0.08114674687385559
- ]
- ]
- ],
- [
- [
- [
- -0.07661283016204834
- ]
- ]
- ],
- [
- [
- [
- -0.09288228303194046
- ]
- ]
- ],
- [
- [
- [
- -0.08105069398880005
- ]
- ]
- ],
- [
- [
- [
- -0.08216700702905655
- ]
- ]
- ],
- [
- [
- [
- -0.05887681245803833
- ]
- ]
- ],
- [
- [
- [
- -0.08021915704011917
- ]
- ]
- ],
- [
- [
- [
- -0.04964153841137886
- ]
- ]
- ],
- [
- [
- [
- -0.082636758685112
- ]
- ]
- ],
- [
- [
- [
- -0.07343064248561859
- ]
- ]
- ],
- [
- [
- [
- -0.08868660032749176
- ]
- ]
- ],
- [
- [
- [
- -0.11057309806346893
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.061027444899082184
- ]
- ]
- ],
- [
- [
- [
- -0.07237456738948822
- ]
- ]
- ],
- [
- [
- [
- -0.08362025022506714
- ]
- ]
- ],
- [
- [
- [
- -0.09920638054609299
- ]
- ]
- ],
- [
- [
- [
- -0.1340709775686264
- ]
- ]
- ],
- [
- [
- [
- -0.068463034927845
- ]
- ]
- ],
- [
- [
- [
- -0.09901504218578339
- ]
- ]
- ],
- [
- [
- [
- -0.051814138889312744
- ]
- ]
- ],
- [
- [
- [
- -0.09742005169391632
- ]
- ]
- ],
- [
- [
- [
- -0.09838517010211945
- ]
- ]
- ],
- [
- [
- [
- -0.08340826630592346
- ]
- ]
- ],
- [
- [
- [
- -0.10339716821908951
- ]
- ]
- ],
- [
- [
- [
- -0.09842051565647125
- ]
- ]
- ],
- [
- [
- [
- -0.11166468262672424
- ]
- ]
- ],
- [
- [
- [
- -0.0726441890001297
- ]
- ]
- ],
- [
- [
- [
- -0.07461782544851303
- ]
- ]
- ],
- [
- [
- [
- -0.0886366069316864
- ]
- ]
- ],
- [
- [
- [
- -0.0885624960064888
- ]
- ]
- ],
- [
- [
- [
- -0.06443940103054047
- ]
- ]
- ],
- [
- [
- [
- -0.06891687214374542
- ]
- ]
- ],
- [
- [
- [
- -0.10335055738687515
- ]
- ]
- ],
- [
- [
- [
- -0.05369953066110611
- ]
- ]
- ],
- [
- [
- [
- -0.09181374311447144
- ]
- ]
- ],
- [
- [
- [
- -0.10616336017847061
- ]
- ]
- ],
- [
- [
- [
- -0.08208567649126053
- ]
- ]
- ],
- [
- [
- [
- -0.06072651594877243
- ]
- ]
- ],
- [
- [
- [
- -0.08171014487743378
- ]
- ]
- ],
- [
- [
- [
- -0.05981767550110817
- ]
- ]
- ],
- [
- [
- [
- -0.09345357865095139
- ]
- ]
- ],
- [
- [
- [
- -0.07424092292785645
- ]
- ]
- ],
- [
- [
- [
- -0.09682814031839371
- ]
- ]
- ],
- [
- [
- [
- -0.058758147060871124
- ]
- ]
- ],
- [
- [
- [
- -0.07748310267925262
- ]
- ]
- ],
- [
- [
- [
- -0.09900659322738647
- ]
- ]
- ],
- [
- [
- [
- -0.07590200752019882
- ]
- ]
- ],
- [
- [
- [
- -0.07720610499382019
- ]
- ]
- ],
- [
- [
- [
- -0.07866807281970978
- ]
- ]
- ],
- [
- [
- [
- -0.07187788188457489
- ]
- ]
- ],
- [
- [
- [
- -0.07282344996929169
- ]
- ]
- ],
- [
- [
- [
- -0.06433700025081635
- ]
- ]
- ],
- [
- [
- [
- -0.058762844651937485
- ]
- ]
- ],
- [
- [
- [
- -0.0874427780508995
- ]
- ]
- ],
- [
- [
- [
- -0.06487059593200684
- ]
- ]
- ],
- [
- [
- [
- -0.11605722457170486
- ]
- ]
- ],
- [
- [
- [
- -0.0916747897863388
- ]
- ]
- ],
- [
- [
- [
- -0.08325311541557312
- ]
- ]
- ],
- [
- [
- [
- -0.04256035014986992
- ]
- ]
- ],
- [
- [
- [
- -0.08200070261955261
- ]
- ]
- ],
- [
- [
- [
- -0.0508047416806221
- ]
- ]
- ],
- [
- [
- [
- -0.07978814095258713
- ]
- ]
- ],
- [
- [
- [
- -0.08552281558513641
- ]
- ]
- ],
- [
- [
- [
- -0.09576233476400375
- ]
- ]
- ],
- [
- [
- [
- -0.09629327058792114
- ]
- ]
- ],
- [
- [
- [
- -0.1156291738152504
- ]
- ]
- ],
- [
- [
- [
- -0.08300036936998367
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.07071530073881149
- ]
- ]
- ],
- [
- [
- [
- -0.0348479263484478
- ]
- ]
- ],
- [
- [
- [
- -0.07415910065174103
- ]
- ]
- ],
- [
- [
- [
- -0.07699710875749588
- ]
- ]
- ],
- [
- [
- [
- -0.06657037883996964
- ]
- ]
- ],
- [
- [
- [
- -0.07827860862016678
- ]
- ]
- ],
- [
- [
- [
- -0.10803039371967316
- ]
- ]
- ],
- [
- [
- [
- -0.06596804410219193
- ]
- ]
- ],
- [
- [
- [
- -0.0571834035217762
- ]
- ]
- ],
- [
- [
- [
- -0.07869469374418259
- ]
- ]
- ],
- [
- [
- [
- -0.08134384453296661
- ]
- ]
- ],
- [
- [
- [
- -0.10438890755176544
- ]
- ]
- ],
- [
- [
- [
- -0.06779247522354126
- ]
- ]
- ],
- [
- [
- [
- -0.06886669248342514
- ]
- ]
- ],
- [
- [
- [
- -0.04101809486746788
- ]
- ]
- ],
- [
- [
- [
- -0.09014171361923218
- ]
- ]
- ],
- [
- [
- [
- -0.061023686081171036
- ]
- ]
- ],
- [
- [
- [
- -0.07694423943758011
- ]
- ]
- ],
- [
- [
- [
- -0.05109279602766037
- ]
- ]
- ],
- [
- [
- [
- -0.07907876372337341
- ]
- ]
- ],
- [
- [
- [
- -0.0869704857468605
- ]
- ]
- ],
- [
- [
- [
- -0.0669490396976471
- ]
- ]
- ],
- [
- [
- [
- -0.0744386613368988
- ]
- ]
- ],
- [
- [
- [
- -0.08544960618019104
- ]
- ]
- ],
- [
- [
- [
- -0.09907975047826767
- ]
- ]
- ],
- [
- [
- [
- -0.09627792239189148
- ]
- ]
- ],
- [
- [
- [
- -0.05716738477349281
- ]
- ]
- ],
- [
- [
- [
- -0.0711086317896843
- ]
- ]
- ],
- [
- [
- [
- -0.07541972398757935
- ]
- ]
- ],
- [
- [
- [
- -0.07838006317615509
- ]
- ]
- ],
- [
- [
- [
- -0.0926440954208374
- ]
- ]
- ],
- [
- [
- [
- -0.08513791859149933
- ]
- ]
- ],
- [
- [
- [
- -0.10456174612045288
- ]
- ]
- ],
- [
- [
- [
- -0.05840069800615311
- ]
- ]
- ],
- [
- [
- [
- -0.09138160943984985
- ]
- ]
- ],
- [
- [
- [
- -0.06858164817094803
- ]
- ]
- ],
- [
- [
- [
- -0.09595582634210587
- ]
- ]
- ],
- [
- [
- [
- -0.0843181386590004
- ]
- ]
- ],
- [
- [
- [
- -0.05078091844916344
- ]
- ]
- ],
- [
- [
- [
- -0.07559074461460114
- ]
- ]
- ],
- [
- [
- [
- -0.06553914397954941
- ]
- ]
- ],
- [
- [
- [
- -0.08262522518634796
- ]
- ]
- ],
- [
- [
- [
- -0.05969710648059845
- ]
- ]
- ],
- [
- [
- [
- -0.07184883207082748
- ]
- ]
- ],
- [
- [
- [
- -0.1262529492378235
- ]
- ]
- ],
- [
- [
- [
- -0.11300506442785263
- ]
- ]
- ],
- [
- [
- [
- -0.0700262114405632
- ]
- ]
- ],
- [
- [
- [
- -0.07061286270618439
- ]
- ]
- ],
- [
- [
- [
- -0.07768005132675171
- ]
- ]
- ],
- [
- [
- [
- -0.1345464289188385
- ]
- ]
- ],
- [
- [
- [
- -0.05173536017537117
- ]
- ]
- ],
- [
- [
- [
- -0.05719456076622009
- ]
- ]
- ],
- [
- [
- [
- -0.07841689884662628
- ]
- ]
- ],
- [
- [
- [
- -0.08785444498062134
- ]
- ]
- ],
- [
- [
- [
- -0.09300225973129272
- ]
- ]
- ],
- [
- [
- [
- -0.1019776463508606
- ]
- ]
- ],
- [
- [
- [
- -0.0797286108136177
- ]
- ]
- ],
- [
- [
- [
- -0.05353109538555145
- ]
- ]
- ],
- [
- [
- [
- -0.09331872314214706
- ]
- ]
- ],
- [
- [
- [
- -0.07876253873109818
- ]
- ]
- ],
- [
- [
- [
- -0.06273772567510605
- ]
- ]
- ],
- [
- [
- [
- -0.06122685596346855
- ]
- ]
- ],
- [
- [
- [
- -0.0732191652059555
- ]
- ]
- ],
- [
- [
- [
- -0.07607833296060562
- ]
- ]
- ],
- [
- [
- [
- -0.08797995746135712
- ]
- ]
- ],
- [
- [
- [
- -0.06540414690971375
- ]
- ]
- ],
- [
- [
- [
- -0.08333247154951096
- ]
- ]
- ],
- [
- [
- [
- -0.0571206696331501
- ]
- ]
- ],
- [
- [
- [
- -0.07081213593482971
- ]
- ]
- ],
- [
- [
- [
- -0.10097313672304153
- ]
- ]
- ],
- [
- [
- [
- -0.07970158755779266
- ]
- ]
- ],
- [
- [
- [
- -0.1025502011179924
- ]
- ]
- ],
- [
- [
- [
- -0.12197284400463104
- ]
- ]
- ],
- [
- [
- [
- -0.05492876097559929
- ]
- ]
- ],
- [
- [
- [
- -0.04584122821688652
- ]
- ]
- ],
- [
- [
- [
- -0.10220208764076233
- ]
- ]
- ],
- [
- [
- [
- -0.08692747354507446
- ]
- ]
- ],
- [
- [
- [
- -0.10250584781169891
- ]
- ]
- ],
- [
- [
- [
- -0.08852393925189972
- ]
- ]
- ],
- [
- [
- [
- -0.07071180641651154
- ]
- ]
- ],
- [
- [
- [
- -0.08751723915338516
- ]
- ]
- ],
- [
- [
- [
- -0.0915805846452713
- ]
- ]
- ],
- [
- [
- [
- -0.0974363386631012
- ]
- ]
- ],
- [
- [
- [
- -0.0844995528459549
- ]
- ]
- ],
- [
- [
- [
- -0.10337289422750473
- ]
- ]
- ],
- [
- [
- [
- -0.05637650191783905
- ]
- ]
- ],
- [
- [
- [
- -0.08052709698677063
- ]
- ]
- ],
- [
- [
- [
- -0.11812326312065125
- ]
- ]
- ],
- [
- [
- [
- -0.07220408320426941
- ]
- ]
- ],
- [
- [
- [
- -0.07470788061618805
- ]
- ]
- ],
- [
- [
- [
- -0.0620674267411232
- ]
- ]
- ],
- [
- [
- [
- -0.07427623867988586
- ]
- ]
- ],
- [
- [
- [
- -0.08792776614427567
- ]
- ]
- ],
- [
- [
- [
- -0.04598432406783104
- ]
- ]
- ],
- [
- [
- [
- -0.06669151782989502
- ]
- ]
- ],
- [
- [
- [
- -0.07933466136455536
- ]
- ]
- ],
- [
- [
- [
- -0.08558259904384613
- ]
- ]
- ],
- [
- [
- [
- -0.08210068941116333
- ]
- ]
- ],
- [
- [
- [
- -0.03772334009408951
- ]
- ]
- ],
- [
- [
- [
- -0.09365830570459366
- ]
- ]
- ],
- [
- [
- [
- -0.07640885561704636
- ]
- ]
- ],
- [
- [
- [
- -0.09812533110380173
- ]
- ]
- ],
- [
- [
- [
- -0.09350292384624481
- ]
- ]
- ],
- [
- [
- [
- -0.07310803979635239
- ]
- ]
- ],
- [
- [
- [
- -0.07064316421747208
- ]
- ]
- ],
- [
- [
- [
- -0.1142919510602951
- ]
- ]
- ],
- [
- [
- [
- -0.07129829376935959
- ]
- ]
- ],
- [
- [
- [
- -0.05380614474415779
- ]
- ]
- ],
- [
- [
- [
- -0.10391110181808472
- ]
- ]
- ],
- [
- [
- [
- -0.09388258308172226
- ]
- ]
- ],
- [
- [
- [
- -0.0752771645784378
- ]
- ]
- ],
- [
- [
- [
- -0.06332244724035263
- ]
- ]
- ],
- [
- [
- [
- -0.08173949271440506
- ]
- ]
- ],
- [
- [
- [
- -0.05839203670620918
- ]
- ]
- ],
- [
- [
- [
- -0.06639210879802704
- ]
- ]
- ],
- [
- [
- [
- -0.09258720278739929
- ]
- ]
- ],
- [
- [
- [
- -0.07380016893148422
- ]
- ]
- ],
- [
- [
- [
- -0.12081968039274216
- ]
- ]
- ],
- [
- [
- [
- -0.06607155501842499
- ]
- ]
- ],
- [
- [
- [
- -0.07054609060287476
- ]
- ]
- ],
- [
- [
- [
- -0.06910192221403122
- ]
- ]
- ],
- [
- [
- [
- -0.09816881269216537
- ]
- ]
- ],
- [
- [
- [
- -0.09072636812925339
- ]
- ]
- ],
- [
- [
- [
- -0.10704080760478973
- ]
- ]
- ],
- [
- [
- [
- -0.09461311995983124
- ]
- ]
- ],
- [
- [
- [
- -0.09698992967605591
- ]
- ]
- ],
- [
- [
- [
- -0.09584659337997437
- ]
- ]
- ],
- [
- [
- [
- -0.0881393551826477
- ]
- ]
- ],
- [
- [
- [
- -0.09438586980104446
- ]
- ]
- ],
- [
- [
- [
- -0.05823419988155365
- ]
- ]
- ],
- [
- [
- [
- -0.07889480888843536
- ]
- ]
- ],
- [
- [
- [
- -0.061699140816926956
- ]
- ]
- ],
- [
- [
- [
- -0.06455875933170319
- ]
- ]
- ],
- [
- [
- [
- -0.09467510879039764
- ]
- ]
- ],
- [
- [
- [
- -0.08654667437076569
- ]
- ]
- ],
- [
- [
- [
- -0.10002695769071579
- ]
- ]
- ],
- [
- [
- [
- -0.09199295938014984
- ]
- ]
- ],
- [
- [
- [
- -0.06514525413513184
- ]
- ]
- ],
- [
- [
- [
- -0.08497554063796997
- ]
- ]
- ],
- [
- [
- [
- -0.047742415219545364
- ]
- ]
- ],
- [
- [
- [
- -0.055402256548404694
- ]
- ]
- ],
- [
- [
- [
- -0.11207106709480286
- ]
- ]
- ],
- [
- [
- [
- -0.06313778460025787
- ]
- ]
- ],
- [
- [
- [
- -0.07136573642492294
- ]
- ]
- ],
- [
- [
- [
- -0.08368609845638275
- ]
- ]
- ],
- [
- [
- [
- -0.07573843747377396
- ]
- ]
- ],
- [
- [
- [
- -0.10183040052652359
- ]
- ]
- ],
- [
- [
- [
- -0.07038111984729767
- ]
- ]
- ],
- [
- [
- [
- -0.08228520303964615
- ]
- ]
- ],
- [
- [
- [
- -0.11264616250991821
- ]
- ]
- ],
- [
- [
- [
- -0.09939232468605042
- ]
- ]
- ],
- [
- [
- [
- -0.08426352590322495
- ]
- ]
- ],
- [
- [
- [
- -0.09023299813270569
- ]
- ]
- ],
- [
- [
- [
- -0.09270405024290085
- ]
- ]
- ],
- [
- [
- [
- -0.07472552359104156
- ]
- ]
- ],
- [
- [
- [
- -0.10498982667922974
- ]
- ]
- ],
- [
- [
- [
- -0.08856912702322006
- ]
- ]
- ],
- [
- [
- [
- -0.11589186638593674
- ]
- ]
- ],
- [
- [
- [
- -0.07473103702068329
- ]
- ]
- ],
- [
- [
- [
- -0.07187560200691223
- ]
- ]
- ],
- [
- [
- [
- -0.1022312119603157
- ]
- ]
- ],
- [
- [
- [
- -0.07976190000772476
- ]
- ]
- ],
- [
- [
- [
- -0.04627872258424759
- ]
- ]
- ],
- [
- [
- [
- -0.0847841277718544
- ]
- ]
- ],
- [
- [
- [
- -0.08206462860107422
- ]
- ]
- ],
- [
- [
- [
- -0.062180060893297195
- ]
- ]
- ],
- [
- [
- [
- -0.08854856342077255
- ]
- ]
- ],
- [
- [
- [
- -0.08091577142477036
- ]
- ]
- ],
- [
- [
- [
- -0.04204418510198593
- ]
- ]
- ],
- [
- [
- [
- -0.08008252084255219
- ]
- ]
- ],
- [
- [
- [
- -0.08155986666679382
- ]
- ]
- ],
- [
- [
- [
- -0.09803514182567596
- ]
- ]
- ],
- [
- [
- [
- -0.04373312368988991
- ]
- ]
- ],
- [
- [
- [
- -0.07711176574230194
- ]
- ]
- ],
- [
- [
- [
- -0.06366907805204391
- ]
- ]
- ],
- [
- [
- [
- -0.0883634090423584
- ]
- ]
- ],
- [
- [
- [
- -0.10297742486000061
- ]
- ]
- ],
- [
- [
- [
- -0.0816849023103714
- ]
- ]
- ],
- [
- [
- [
- -0.11690335720777512
- ]
- ]
- ],
- [
- [
- [
- -0.0785883441567421
- ]
- ]
- ],
- [
- [
- [
- -0.03911576792597771
- ]
- ]
- ],
- [
- [
- [
- -0.07280317693948746
- ]
- ]
- ],
- [
- [
- [
- -0.10225744545459747
- ]
- ]
- ],
- [
- [
- [
- -0.09952295571565628
- ]
- ]
- ],
- [
- [
- [
- -0.0732448622584343
- ]
- ]
- ],
- [
- [
- [
- -0.10555241256952286
- ]
- ]
- ],
- [
- [
- [
- -0.07029056549072266
- ]
- ]
- ],
- [
- [
- [
- -0.08478783071041107
- ]
- ]
- ],
- [
- [
- [
- -0.08725158870220184
- ]
- ]
- ],
- [
- [
- [
- -0.07289407402276993
- ]
- ]
- ],
- [
- [
- [
- -0.08817575871944427
- ]
- ]
- ],
- [
- [
- [
- -0.07154295593500137
- ]
- ]
- ],
- [
- [
- [
- -0.07975222915410995
- ]
- ]
- ],
- [
- [
- [
- -0.05968209728598595
- ]
- ]
- ],
- [
- [
- [
- -0.06454551964998245
- ]
- ]
- ],
- [
- [
- [
- -0.06266672909259796
- ]
- ]
- ],
- [
- [
- [
- -0.08545352518558502
- ]
- ]
- ],
- [
- [
- [
- -0.0918397456407547
- ]
- ]
- ],
- [
- [
- [
- -0.054640140384435654
- ]
- ]
- ],
- [
- [
- [
- -0.10734404623508453
- ]
- ]
- ],
- [
- [
- [
- -0.10849961638450623
- ]
- ]
- ],
- [
- [
- [
- -0.10824594646692276
- ]
- ]
- ],
- [
- [
- [
- -0.1079808846116066
- ]
- ]
- ],
- [
- [
- [
- -0.07557680457830429
- ]
- ]
- ],
- [
- [
- [
- -0.053232885897159576
- ]
- ]
- ],
- [
- [
- [
- -0.08438645303249359
- ]
- ]
- ],
- [
- [
- [
- -0.06537612527608871
- ]
- ]
- ],
- [
- [
- [
- -0.056556422263383865
- ]
- ]
- ],
- [
- [
- [
- -0.08867942541837692
- ]
- ]
- ],
- [
- [
- [
- -0.11264696717262268
- ]
- ]
- ],
- [
- [
- [
- -0.06738556921482086
- ]
- ]
- ],
- [
- [
- [
- -0.09851531684398651
- ]
- ]
- ],
- [
- [
- [
- -0.0782991424202919
- ]
- ]
- ],
- [
- [
- [
- -0.0656714141368866
- ]
- ]
- ],
- [
- [
- [
- -0.075212262570858
- ]
- ]
- ],
- [
- [
- [
- -0.07360821962356567
- ]
- ]
- ],
- [
- [
- [
- -0.0937250629067421
- ]
- ]
- ],
- [
- [
- [
- -0.09428814053535461
- ]
- ]
- ],
- [
- [
- [
- -0.09257518500089645
- ]
- ]
- ],
- [
- [
- [
- -0.10180794447660446
- ]
- ]
- ],
- [
- [
- [
- -0.08753816783428192
- ]
- ]
- ],
- [
- [
- [
- -0.08142414689064026
- ]
- ]
- ],
- [
- [
- [
- -0.07070966064929962
- ]
- ]
- ],
- [
- [
- [
- -0.058878082782030106
- ]
- ]
- ],
- [
- [
- [
- -0.07797295600175858
- ]
- ]
- ],
- [
- [
- [
- -0.09175701439380646
- ]
- ]
- ],
- [
- [
- [
- -0.058204930275678635
- ]
- ]
- ],
- [
- [
- [
- -0.10948582738637924
- ]
- ]
- ],
- [
- [
- [
- -0.08616431057453156
- ]
- ]
- ],
- [
- [
- [
- -0.09029332548379898
- ]
- ]
- ],
- [
- [
- [
- -0.08352357149124146
- ]
- ]
- ],
- [
- [
- [
- -0.05958261340856552
- ]
- ]
- ],
- [
- [
- [
- -0.09466705471277237
- ]
- ]
- ],
- [
- [
- [
- -0.07258259505033493
- ]
- ]
- ],
- [
- [
- [
- -0.04744154214859009
- ]
- ]
- ],
- [
- [
- [
- -0.0699552595615387
- ]
- ]
- ],
- [
- [
- [
- -0.10032375901937485
- ]
- ]
- ],
- [
- [
- [
- -0.050392817705869675
- ]
- ]
- ],
- [
- [
- [
- -0.0665903389453888
- ]
- ]
- ],
- [
- [
- [
- -0.056582026183605194
- ]
- ]
- ],
- [
- [
- [
- -0.11301292479038239
- ]
- ]
- ],
- [
- [
- [
- -0.07282225042581558
- ]
- ]
- ],
- [
- [
- [
- -0.08253932744264603
- ]
- ]
- ],
- [
- [
- [
- -0.07056485861539841
- ]
- ]
- ],
- [
- [
- [
- -0.08465635776519775
- ]
- ]
- ],
- [
- [
- [
- -0.08125829696655273
- ]
- ]
- ],
- [
- [
- [
- -0.08017205446958542
- ]
- ]
- ],
- [
- [
- [
- -0.05288570746779442
- ]
- ]
- ],
- [
- [
- [
- -0.08876357227563858
- ]
- ]
- ],
- [
- [
- [
- -0.06703150272369385
- ]
- ]
- ],
- [
- [
- [
- -0.07813320308923721
- ]
- ]
- ],
- [
- [
- [
- -0.06687869131565094
- ]
- ]
- ],
- [
- [
- [
- -0.06325667351484299
- ]
- ]
- ],
- [
- [
- [
- -0.09541445225477219
- ]
- ]
- ],
- [
- [
- [
- -0.08690016716718674
- ]
- ]
- ],
- [
- [
- [
- -0.08979479223489761
- ]
- ]
- ],
- [
- [
- [
- -0.04826977476477623
- ]
- ]
- ],
- [
- [
- [
- -0.07010262459516525
- ]
- ]
- ],
- [
- [
- [
- -0.04866395145654678
- ]
- ]
- ],
- [
- [
- [
- -0.08788633346557617
- ]
- ]
- ],
- [
- [
- [
- -0.1175958439707756
- ]
- ]
- ],
- [
- [
- [
- -0.08649478107690811
- ]
- ]
- ],
- [
- [
- [
- -0.0749683827161789
- ]
- ]
- ],
- [
- [
- [
- -0.05845803767442703
- ]
- ]
- ],
- [
- [
- [
- -0.09801016002893448
- ]
- ]
- ],
- [
- [
- [
- -0.06879256665706635
- ]
- ]
- ],
- [
- [
- [
- -0.07820084691047668
- ]
- ]
- ],
- [
- [
- [
- -0.10106252133846283
- ]
- ]
- ],
- [
- [
- [
- -0.0389900878071785
- ]
- ]
- ],
- [
- [
- [
- -0.07603240758180618
- ]
- ]
- ],
- [
- [
- [
- -0.08147808164358139
- ]
- ]
- ],
- [
- [
- [
- -0.10170036554336548
- ]
- ]
- ],
- [
- [
- [
- -0.07083087414503098
- ]
- ]
- ],
- [
- [
- [
- -0.09272570163011551
- ]
- ]
- ],
- [
- [
- [
- -0.06662170588970184
- ]
- ]
- ],
- [
- [
- [
- -0.06983763724565506
- ]
- ]
- ],
- [
- [
- [
- -0.09116936475038528
- ]
- ]
- ],
- [
- [
- [
- -0.10190749913454056
- ]
- ]
- ],
- [
- [
- [
- -0.08057215809822083
- ]
- ]
- ],
- [
- [
- [
- -0.12368305027484894
- ]
- ]
- ],
- [
- [
- [
- -0.05933622270822525
- ]
- ]
- ],
- [
- [
- [
- -0.05659732222557068
- ]
- ]
- ],
- [
- [
- [
- -0.0698203444480896
- ]
- ]
- ],
- [
- [
- [
- -0.06823895126581192
- ]
- ]
- ],
- [
- [
- [
- -0.0858592689037323
- ]
- ]
- ],
- [
- [
- [
- -0.07350180298089981
- ]
- ]
- ],
- [
- [
- [
- -0.06860005110502243
- ]
- ]
- ],
- [
- [
- [
- -0.050324905663728714
- ]
- ]
- ],
- [
- [
- [
- -0.07189030200242996
- ]
- ]
- ],
- [
- [
- [
- -0.08609016239643097
- ]
- ]
- ],
- [
- [
- [
- -0.10099496692419052
- ]
- ]
- ],
- [
- [
- [
- -0.08254224807024002
- ]
- ]
- ],
- [
- [
- [
- -0.07932084053754807
- ]
- ]
- ],
- [
- [
- [
- -0.09889435023069382
- ]
- ]
- ],
- [
- [
- [
- -0.07703230530023575
- ]
- ]
- ],
- [
- [
- [
- -0.09348131716251373
- ]
- ]
- ],
- [
- [
- [
- -0.07371295243501663
- ]
- ]
- ],
- [
- [
- [
- -0.0697341039776802
- ]
- ]
- ],
- [
- [
- [
- -0.08877726644277573
- ]
- ]
- ],
- [
- [
- [
- -0.08811005204916
- ]
- ]
- ],
- [
- [
- [
- -0.09618402272462845
- ]
- ]
- ],
- [
- [
- [
- -0.07690417021512985
- ]
- ]
- ],
- [
- [
- [
- -0.05107318237423897
- ]
- ]
- ],
- [
- [
- [
- -0.14495573937892914
- ]
- ]
- ],
- [
- [
- [
- -0.10577777028083801
- ]
- ]
- ],
- [
- [
- [
- -0.07263974100351334
- ]
- ]
- ],
- [
- [
- [
- -0.10268343240022659
- ]
- ]
- ],
- [
- [
- [
- -0.060619913041591644
- ]
- ]
- ],
- [
- [
- [
- -0.06874103844165802
- ]
- ]
- ],
- [
- [
- [
- -0.07998576015233994
- ]
- ]
- ],
- [
- [
- [
- -0.06425560265779495
- ]
- ]
- ],
- [
- [
- [
- -0.12438056617975235
- ]
- ]
- ],
- [
- [
- [
- -0.06132021173834801
- ]
- ]
- ],
- [
- [
- [
- -0.07990734279155731
- ]
- ]
- ],
- [
- [
- [
- -0.06922955811023712
- ]
- ]
- ],
- [
- [
- [
- -0.05405823886394501
- ]
- ]
- ],
- [
- [
- [
- -0.07134158909320831
- ]
- ]
- ],
- [
- [
- [
- -0.08228940516710281
- ]
- ]
- ],
- [
- [
- [
- -0.07209205627441406
- ]
- ]
- ],
- [
- [
- [
- -0.07395186275243759
- ]
- ]
- ],
- [
- [
- [
- -0.04049632325768471
- ]
- ]
- ],
- [
- [
- [
- -0.06080811098217964
- ]
- ]
- ],
- [
- [
- [
- -0.0661211609840393
- ]
- ]
- ],
- [
- [
- [
- -0.09525733441114426
- ]
- ]
- ],
- [
- [
- [
- -0.08097393065690994
- ]
- ]
- ],
- [
- [
- [
- -0.1116902157664299
- ]
- ]
- ],
- [
- [
- [
- -0.047268226742744446
- ]
- ]
- ],
- [
- [
- [
- -0.08791053295135498
- ]
- ]
- ],
- [
- [
- [
- -0.08504649996757507
- ]
- ]
- ],
- [
- [
- [
- -0.12071584910154343
- ]
- ]
- ],
- [
- [
- [
- -0.06961110234260559
- ]
- ]
- ],
- [
- [
- [
- -0.08359209448099136
- ]
- ]
- ],
- [
- [
- [
- -0.05157646909356117
- ]
- ]
- ],
- [
- [
- [
- -0.08283037692308426
- ]
- ]
- ],
- [
- [
- [
- -0.07668830454349518
- ]
- ]
- ],
- [
- [
- [
- -0.05593942478299141
- ]
- ]
- ],
- [
- [
- [
- -0.08263685554265976
- ]
- ]
- ],
- [
- [
- [
- -0.08099956065416336
- ]
- ]
- ],
- [
- [
- [
- -0.057596489787101746
- ]
- ]
- ],
- [
- [
- [
- -0.06627891212701797
- ]
- ]
- ],
- [
- [
- [
- -0.05994277447462082
- ]
- ]
- ],
- [
- [
- [
- -0.10571780800819397
- ]
- ]
- ],
- [
- [
- [
- -0.052054766565561295
- ]
- ]
- ],
- [
- [
- [
- -0.09044913202524185
- ]
- ]
- ],
- [
- [
- [
- -0.09348784387111664
- ]
- ]
- ],
- [
- [
- [
- -0.04625977203249931
- ]
- ]
- ],
- [
- [
- [
- -0.07062697410583496
- ]
- ]
- ],
- [
- [
- [
- -0.08242160826921463
- ]
- ]
- ],
- [
- [
- [
- -0.11613553017377853
- ]
- ]
- ],
- [
- [
- [
- -0.07673363387584686
- ]
- ]
- ],
- [
- [
- [
- -0.05518975481390953
- ]
- ]
- ],
- [
- [
- [
- -0.09465054422616959
- ]
- ]
- ],
- [
- [
- [
- -0.06729406863451004
- ]
- ]
- ],
- [
- [
- [
- -0.05551871657371521
- ]
- ]
- ],
- [
- [
- [
- -0.07817549258470535
- ]
- ]
- ],
- [
- [
- [
- -0.06399229913949966
- ]
- ]
- ],
- [
- [
- [
- -0.05107778310775757
- ]
- ]
- ],
- [
- [
- [
- -0.06149657443165779
- ]
- ]
- ],
- [
- [
- [
- -0.07468979805707932
- ]
- ]
- ],
- [
- [
- [
- -0.06120368465781212
- ]
- ]
- ],
- [
- [
- [
- -0.05948040634393692
- ]
- ]
- ],
- [
- [
- [
- -0.064889095723629
- ]
- ]
- ],
- [
- [
- [
- -0.07499144971370697
- ]
- ]
- ],
- [
- [
- [
- -0.07804940640926361
- ]
- ]
- ],
- [
- [
- [
- -0.08943097293376923
- ]
- ]
- ],
- [
- [
- [
- -0.08910474181175232
- ]
- ]
- ],
- [
- [
- [
- -0.09501776844263077
- ]
- ]
- ],
- [
- [
- [
- -0.10549020022153854
- ]
- ]
- ],
- [
- [
- [
- -0.08772651851177216
- ]
- ]
- ],
- [
- [
- [
- -0.09480185806751251
- ]
- ]
- ],
- [
- [
- [
- -0.039753612130880356
- ]
- ]
- ],
- [
- [
- [
- -0.061523739248514175
- ]
- ]
- ],
- [
- [
- [
- -0.09368418902158737
- ]
- ]
- ],
- [
- [
- [
- -0.07691100239753723
- ]
- ]
- ],
- [
- [
- [
- -0.073822021484375
- ]
- ]
- ],
- [
- [
- [
- -0.05471666157245636
- ]
- ]
- ],
- [
- [
- [
- -0.09052624553442001
- ]
- ]
- ],
- [
- [
- [
- -0.08911649137735367
- ]
- ]
- ],
- [
- [
- [
- -0.043947428464889526
- ]
- ]
- ],
- [
- [
- [
- -0.03806280344724655
- ]
- ]
- ],
- [
- [
- [
- -0.08651432394981384
- ]
- ]
- ],
- [
- [
- [
- -0.08740046620368958
- ]
- ]
- ],
- [
- [
- [
- -0.09589625149965286
- ]
- ]
- ],
- [
- [
- [
- -0.0635964497923851
- ]
- ]
- ],
- [
- [
- [
- -0.07670340687036514
- ]
- ]
- ],
- [
- [
- [
- -0.10258164256811142
- ]
- ]
- ],
- [
- [
- [
- -0.05519557371735573
- ]
- ]
- ],
- [
- [
- [
- -0.058486368507146835
- ]
- ]
- ],
- [
- [
- [
- -0.1136150062084198
- ]
- ]
- ],
- [
- [
- [
- -0.057602450251579285
- ]
- ]
- ],
- [
- [
- [
- -0.09003745019435883
- ]
- ]
- ],
- [
- [
- [
- -0.09422420710325241
- ]
- ]
- ],
- [
- [
- [
- -0.08816602826118469
- ]
- ]
- ],
- [
- [
- [
- -0.06102027744054794
- ]
- ]
- ],
- [
- [
- [
- -0.057667434215545654
- ]
- ]
- ],
- [
- [
- [
- -0.052378516644239426
- ]
- ]
- ],
- [
- [
- [
- -0.0915367603302002
- ]
- ]
- ],
- [
- [
- [
- -0.11141592264175415
- ]
- ]
- ],
- [
- [
- [
- -0.07275049388408661
- ]
- ]
- ],
- [
- [
- [
- -0.09853202849626541
- ]
- ]
- ],
- [
- [
- [
- -0.05745477229356766
- ]
- ]
- ],
- [
- [
- [
- -0.1042008325457573
- ]
- ]
- ],
- [
- [
- [
- -0.084428571164608
- ]
- ]
- ],
- [
- [
- [
- -0.03213006630539894
- ]
- ]
- ],
- [
- [
- [
- -0.053230106830596924
- ]
- ]
- ],
- [
- [
- [
- -0.056356336921453476
- ]
- ]
- ],
- [
- [
- [
- -0.029592957347631454
- ]
- ]
- ],
- [
- [
- [
- -0.03155312314629555
- ]
- ]
- ],
- [
- [
- [
- -0.10173670202493668
- ]
- ]
- ],
- [
- [
- [
- -0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- -0.06684163212776184
- ]
- ]
- ],
- [
- [
- [
- -0.05585940182209015
- ]
- ]
- ],
- [
- [
- [
- -0.14228609204292297
- ]
- ]
- ],
- [
- [
- [
- -0.10057239234447479
- ]
- ]
- ],
- [
- [
- [
- -0.11406401544809341
- ]
- ]
- ],
- [
- [
- [
- -0.07664996385574341
- ]
- ]
- ],
- [
- [
- [
- -0.08341754972934723
- ]
- ]
- ],
- [
- [
- [
- -0.09490326046943665
- ]
- ]
- ],
- [
- [
- [
- -0.07314691692590714
- ]
- ]
- ],
- [
- [
- [
- -0.07535300403833389
- ]
- ]
- ],
- [
- [
- [
- -0.07943447679281235
- ]
- ]
- ],
- [
- [
- [
- -0.05892981216311455
- ]
- ]
- ],
- [
- [
- [
- -0.058823566883802414
- ]
- ]
- ],
- [
- [
- [
- -0.09280380606651306
- ]
- ]
- ],
- [
- [
- [
- -0.08679395169019699
- ]
- ]
- ],
- [
- [
- [
- -0.10126554220914841
- ]
- ]
- ],
- [
- [
- [
- -0.08906863629817963
- ]
- ]
- ],
- [
- [
- [
- -0.054329100996255875
- ]
- ]
- ],
- [
- [
- [
- -0.12931326031684875
- ]
- ]
- ],
- [
- [
- [
- -0.13117115199565887
- ]
- ]
- ],
- [
- [
- [
- -0.07586194574832916
- ]
- ]
- ],
- [
- [
- [
- -0.07552564144134521
- ]
- ]
- ],
- [
- [
- [
- -0.08194880187511444
- ]
- ]
- ],
- [
- [
- [
- -0.08497414737939835
- ]
- ]
- ],
- [
- [
- [
- -0.11016431450843811
- ]
- ]
- ],
- [
- [
- [
- -0.0916135236620903
- ]
- ]
- ],
- [
- [
- [
- -0.09609591215848923
- ]
- ]
- ],
- [
- [
- [
- -0.08644851297140121
- ]
- ]
- ],
- [
- [
- [
- -0.061881810426712036
- ]
- ]
- ],
- [
- [
- [
- -0.052320774644613266
- ]
- ]
- ],
- [
- [
- [
- -0.09620192646980286
- ]
- ]
- ],
- [
- [
- [
- -0.0960218533873558
- ]
- ]
- ],
- [
- [
- [
- -0.09636559337377548
- ]
- ]
- ],
- [
- [
- [
- -0.09018382430076599
- ]
- ]
- ],
- [
- [
- [
- -0.0757909044623375
- ]
- ]
- ],
- [
- [
- [
- -0.1937423050403595
- ]
- ]
- ],
- [
- [
- [
- -0.06648385524749756
- ]
- ]
- ],
- [
- [
- [
- -0.06308578699827194
- ]
- ]
- ],
- [
- [
- [
- -0.0810537114739418
- ]
- ]
- ],
- [
- [
- [
- -0.09674353897571564
- ]
- ]
- ],
- [
- [
- [
- -0.0951564684510231
- ]
- ]
- ],
- [
- [
- [
- -0.05451652780175209
- ]
- ]
- ],
- [
- [
- [
- -0.153913214802742
- ]
- ]
- ],
- [
- [
- [
- -0.08305449038743973
- ]
- ]
- ],
- [
- [
- [
- -0.08001574128866196
- ]
- ]
- ],
- [
- [
- [
- -0.08307718485593796
- ]
- ]
- ],
- [
- [
- [
- -0.09296419471502304
- ]
- ]
- ],
- [
- [
- [
- -0.10116496682167053
- ]
- ]
- ],
- [
- [
- [
- -0.11452315002679825
- ]
- ]
- ],
- [
- [
- [
- -0.059926025569438934
- ]
- ]
- ],
- [
- [
- [
- -0.14107368886470795
- ]
- ]
- ],
- [
- [
- [
- -0.09363594651222229
- ]
- ]
- ],
- [
- [
- [
- -0.05010456219315529
- ]
- ]
- ],
- [
- [
- [
- -0.03640623018145561
- ]
- ]
- ],
- [
- [
- [
- -0.09134142100811005
- ]
- ]
- ],
- [
- [
- [
- -0.07697655260562897
- ]
- ]
- ],
- [
- [
- [
- -0.10864877700805664
- ]
- ]
- ],
- [
- [
- [
- -0.10198307782411575
- ]
- ]
- ],
- [
- [
- [
- -0.1042611300945282
- ]
- ]
- ],
- [
- [
- [
- -0.03458947688341141
- ]
- ]
- ],
- [
- [
- [
- -0.08694835007190704
- ]
- ]
- ],
- [
- [
- [
- -0.053618576377630234
- ]
- ]
- ],
- [
- [
- [
- -0.06671763211488724
- ]
- ]
- ],
- [
- [
- [
- -0.09233434498310089
- ]
- ]
- ],
- [
- [
- [
- -0.06116355210542679
- ]
- ]
- ],
- [
- [
- [
- -0.07294467836618423
- ]
- ]
- ],
- [
- [
- [
- -0.05872868373990059
- ]
- ]
- ],
- [
- [
- [
- -0.08115499466657639
- ]
- ]
- ],
- [
- [
- [
- -0.1184283196926117
- ]
- ]
- ],
- [
- [
- [
- -0.09759453684091568
- ]
- ]
- ],
- [
- [
- [
- -0.13155603408813477
- ]
- ]
- ],
- [
- [
- [
- -0.0788569226861
- ]
- ]
- ],
- [
- [
- [
- -0.06619301438331604
- ]
- ]
- ],
- [
- [
- [
- -0.07956621050834656
- ]
- ]
- ],
- [
- [
- [
- -0.09835013747215271
- ]
- ]
- ],
- [
- [
- [
- -0.07436123490333557
- ]
- ]
- ],
- [
- [
- [
- -0.05061725899577141
- ]
- ]
- ],
- [
- [
- [
- -0.04629236459732056
- ]
- ]
- ],
- [
- [
- [
- -0.09435953944921494
- ]
- ]
- ],
- [
- [
- [
- -0.0668959841132164
- ]
- ]
- ],
- [
- [
- [
- -0.08068779110908508
- ]
- ]
- ],
- [
- [
- [
- -0.08070873469114304
- ]
- ]
- ],
- [
- [
- [
- -0.07939345389604568
- ]
- ]
- ],
- [
- [
- [
- -0.15484188497066498
- ]
- ]
- ],
- [
- [
- [
- -0.0919148251414299
- ]
- ]
- ],
- [
- [
- [
- -0.07471802830696106
- ]
- ]
- ],
- [
- [
- [
- -0.08610639721155167
- ]
- ]
- ],
- [
- [
- [
- -0.07699315994977951
- ]
- ]
- ],
- [
- [
- [
- -0.08712373673915863
- ]
- ]
- ],
- [
- [
- [
- -0.04791928455233574
- ]
- ]
- ],
- [
- [
- [
- -0.08226808160543442
- ]
- ]
- ],
- [
- [
- [
- -0.0632556900382042
- ]
- ]
- ],
- [
- [
- [
- -0.1262573003768921
- ]
- ]
- ],
- [
- [
- [
- -0.10595264285802841
- ]
- ]
- ],
- [
- [
- [
- -0.07297582179307938
- ]
- ]
- ],
- [
- [
- [
- -0.09953981637954712
- ]
- ]
- ],
- [
- [
- [
- -0.08194190263748169
- ]
- ]
- ],
- [
- [
- [
- -0.07714556902647018
- ]
- ]
- ],
- [
- [
- [
- -0.12346109747886658
- ]
- ]
- ],
- [
- [
- [
- -0.06130913645029068
- ]
- ]
- ],
- [
- [
- [
- -0.09535396099090576
- ]
- ]
- ],
- [
- [
- [
- -0.1122744008898735
- ]
- ]
- ],
- [
- [
- [
- -0.1003168523311615
- ]
- ]
- ],
- [
- [
- [
- -0.08037327975034714
- ]
- ]
- ],
- [
- [
- [
- -0.06776654720306396
- ]
- ]
- ],
- [
- [
- [
- -0.0879741758108139
- ]
- ]
- ],
- [
- [
- [
- -0.06921051442623138
- ]
- ]
- ],
- [
- [
- [
- -0.06913849711418152
- ]
- ]
- ],
- [
- [
- [
- -0.07223470509052277
- ]
- ]
- ],
- [
- [
- [
- -0.07350557297468185
- ]
- ]
- ],
- [
- [
- [
- -0.07994816452264786
- ]
- ]
- ],
- [
- [
- [
- -0.07081999629735947
- ]
- ]
- ],
- [
- [
- [
- -0.08315808326005936
- ]
- ]
- ],
- [
- [
- [
- -0.09268578141927719
- ]
- ]
- ],
- [
- [
- [
- -0.12025230377912521
- ]
- ]
- ],
- [
- [
- [
- -0.06363484263420105
- ]
- ]
- ],
- [
- [
- [
- -0.0522334985435009
- ]
- ]
- ],
- [
- [
- [
- -0.04518759995698929
- ]
- ]
- ],
- [
- [
- [
- -0.10059089213609695
- ]
- ]
- ],
- [
- [
- [
- -0.1013714149594307
- ]
- ]
- ],
- [
- [
- [
- -0.06423552334308624
- ]
- ]
- ],
- [
- [
- [
- -0.09093166142702103
- ]
- ]
- ],
- [
- [
- [
- -0.08673609793186188
- ]
- ]
- ],
- [
- [
- [
- -0.07875305414199829
- ]
- ]
- ],
- [
- [
- [
- -0.03263058885931969
- ]
- ]
- ],
- [
- [
- [
- -0.11134500801563263
- ]
- ]
- ],
- [
- [
- [
- -0.05054020136594772
- ]
- ]
- ],
- [
- [
- [
- -0.07523494213819504
- ]
- ]
- ],
- [
- [
- [
- -0.07799956947565079
- ]
- ]
- ],
- [
- [
- [
- -0.12234081327915192
- ]
- ]
- ],
- [
- [
- [
- -0.06707817316055298
- ]
- ]
- ],
- [
- [
- [
- -0.09497781097888947
- ]
- ]
- ],
- [
- [
- [
- -0.0788748487830162
- ]
- ]
- ],
- [
- [
- [
- -0.07790723443031311
- ]
- ]
- ],
- [
- [
- [
- -0.07760436832904816
- ]
- ]
- ],
- [
- [
- [
- -0.0807025209069252
- ]
- ]
- ],
- [
- [
- [
- -0.0785837173461914
- ]
- ]
- ],
- [
- [
- [
- -0.089628204703331
- ]
- ]
- ],
- [
- [
- [
- -0.0907866582274437
- ]
- ]
- ],
- [
- [
- [
- -0.08295813947916031
- ]
- ]
- ],
- [
- [
- [
- -0.06879930198192596
- ]
- ]
- ],
- [
- [
- [
- -0.08176907151937485
- ]
- ]
- ],
- [
- [
- [
- -0.05675710365176201
- ]
- ]
- ],
- [
- [
- [
- -0.08753447979688644
- ]
- ]
- ],
- [
- [
- [
- -0.07372986525297165
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.05830051004886627
- ]
- ]
- ],
- [
- [
- [
- 0.07807084918022156
- ]
- ]
- ],
- [
- [
- [
- 0.058807969093322754
- ]
- ]
- ],
- [
- [
- [
- 0.07144374400377274
- ]
- ]
- ],
- [
- [
- [
- 0.10358694940805435
- ]
- ]
- ],
- [
- [
- [
- 0.07008533924818039
- ]
- ]
- ],
- [
- [
- [
- 0.09185867011547089
- ]
- ]
- ],
- [
- [
- [
- 0.04874323680996895
- ]
- ]
- ],
- [
- [
- [
- 0.06963656097650528
- ]
- ]
- ],
- [
- [
- [
- 0.06616033613681793
- ]
- ]
- ],
- [
- [
- [
- 0.0920611321926117
- ]
- ]
- ],
- [
- [
- [
- 0.06595803052186966
- ]
- ]
- ],
- [
- [
- [
- 0.07073991000652313
- ]
- ]
- ],
- [
- [
- [
- 0.07338160276412964
- ]
- ]
- ],
- [
- [
- [
- 0.08121359348297119
- ]
- ]
- ],
- [
- [
- [
- 0.08493801206350327
- ]
- ]
- ],
- [
- [
- [
- 0.07619204372167587
- ]
- ]
- ],
- [
- [
- [
- 0.10002736002206802
- ]
- ]
- ],
- [
- [
- [
- 0.058286283165216446
- ]
- ]
- ],
- [
- [
- [
- 0.07588834315538406
- ]
- ]
- ],
- [
- [
- [
- 0.09944571554660797
- ]
- ]
- ],
- [
- [
- [
- 0.0723671019077301
- ]
- ]
- ],
- [
- [
- [
- 0.05859633535146713
- ]
- ]
- ],
- [
- [
- [
- 0.06310499459505081
- ]
- ]
- ],
- [
- [
- [
- 0.050543151795864105
- ]
- ]
- ],
- [
- [
- [
- 0.09148801863193512
- ]
- ]
- ],
- [
- [
- [
- 0.08581556379795074
- ]
- ]
- ],
- [
- [
- [
- 0.060656607151031494
- ]
- ]
- ],
- [
- [
- [
- 0.10404647141695023
- ]
- ]
- ],
- [
- [
- [
- 0.06679873168468475
- ]
- ]
- ],
- [
- [
- [
- 0.044415153563022614
- ]
- ]
- ],
- [
- [
- [
- 0.11154074221849442
- ]
- ]
- ],
- [
- [
- [
- 0.07860548049211502
- ]
- ]
- ],
- [
- [
- [
- 0.1185956671833992
- ]
- ]
- ],
- [
- [
- [
- 0.05273063853383064
- ]
- ]
- ],
- [
- [
- [
- 0.052731744945049286
- ]
- ]
- ],
- [
- [
- [
- 0.060855284333229065
- ]
- ]
- ],
- [
- [
- [
- 0.07305596768856049
- ]
- ]
- ],
- [
- [
- [
- 0.07071968168020248
- ]
- ]
- ],
- [
- [
- [
- 0.11274702101945877
- ]
- ]
- ],
- [
- [
- [
- 0.09480860084295273
- ]
- ]
- ],
- [
- [
- [
- 0.07785995304584503
- ]
- ]
- ],
- [
- [
- [
- 0.05848336219787598
- ]
- ]
- ],
- [
- [
- [
- 0.10763268917798996
- ]
- ]
- ],
- [
- [
- [
- 0.1245071142911911
- ]
- ]
- ],
- [
- [
- [
- 0.07579417526721954
- ]
- ]
- ],
- [
- [
- [
- 0.09219890087842941
- ]
- ]
- ],
- [
- [
- [
- 0.13886697590351105
- ]
- ]
- ],
- [
- [
- [
- 0.09606405347585678
- ]
- ]
- ],
- [
- [
- [
- 0.08303540199995041
- ]
- ]
- ],
- [
- [
- [
- 0.07722760736942291
- ]
- ]
- ],
- [
- [
- [
- 0.09945156425237656
- ]
- ]
- ],
- [
- [
- [
- 0.08764202147722244
- ]
- ]
- ],
- [
- [
- [
- 0.058732133358716965
- ]
- ]
- ],
- [
- [
- [
- 0.09361578524112701
- ]
- ]
- ],
- [
- [
- [
- 0.043875839561223984
- ]
- ]
- ],
- [
- [
- [
- 0.07803981006145477
- ]
- ]
- ],
- [
- [
- [
- 0.07265777885913849
- ]
- ]
- ],
- [
- [
- [
- 0.05949536710977554
- ]
- ]
- ],
- [
- [
- [
- 0.07602614164352417
- ]
- ]
- ],
- [
- [
- [
- 0.10432162880897522
- ]
- ]
- ],
- [
- [
- [
- 0.0951901376247406
- ]
- ]
- ],
- [
- [
- [
- 0.06567154079675674
- ]
- ]
- ],
- [
- [
- [
- 0.07698667049407959
- ]
- ]
- ],
- [
- [
- [
- 0.07403117418289185
- ]
- ]
- ],
- [
- [
- [
- 0.08374164998531342
- ]
- ]
- ],
- [
- [
- [
- 0.07519316673278809
- ]
- ]
- ],
- [
- [
- [
- 0.09778162837028503
- ]
- ]
- ],
- [
- [
- [
- 0.07200504094362259
- ]
- ]
- ],
- [
- [
- [
- 0.09817332029342651
- ]
- ]
- ],
- [
- [
- [
- 0.08049968630075455
- ]
- ]
- ],
- [
- [
- [
- 0.06662329286336899
- ]
- ]
- ],
- [
- [
- [
- 0.12475044280290604
- ]
- ]
- ],
- [
- [
- [
- 0.09708505868911743
- ]
- ]
- ],
- [
- [
- [
- 0.05387400463223457
- ]
- ]
- ],
- [
- [
- [
- 0.08167553693056107
- ]
- ]
- ],
- [
- [
- [
- 0.101011261343956
- ]
- ]
- ],
- [
- [
- [
- 0.06901419907808304
- ]
- ]
- ],
- [
- [
- [
- 0.11538947373628616
- ]
- ]
- ],
- [
- [
- [
- 0.09510954469442368
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.0927855595946312
- ]
- ]
- ],
- [
- [
- [
- 0.06547746807336807
- ]
- ]
- ],
- [
- [
- [
- 0.07651612907648087
- ]
- ]
- ],
- [
- [
- [
- 0.07265041023492813
- ]
- ]
- ],
- [
- [
- [
- 0.08361450582742691
- ]
- ]
- ],
- [
- [
- [
- 0.08582837879657745
- ]
- ]
- ],
- [
- [
- [
- 0.06267891824245453
- ]
- ]
- ],
- [
- [
- [
- 0.11335033178329468
- ]
- ]
- ],
- [
- [
- [
- 0.06436843425035477
- ]
- ]
- ],
- [
- [
- [
- 0.08227626234292984
- ]
- ]
- ],
- [
- [
- [
- 0.08898670971393585
- ]
- ]
- ],
- [
- [
- [
- 0.07927422970533371
- ]
- ]
- ],
- [
- [
- [
- 0.06923487037420273
- ]
- ]
- ],
- [
- [
- [
- 0.07126303762197495
- ]
- ]
- ],
- [
- [
- [
- 0.08635919541120529
- ]
- ]
- ],
- [
- [
- [
- 0.10967998951673508
- ]
- ]
- ],
- [
- [
- [
- 0.10560844093561172
- ]
- ]
- ],
- [
- [
- [
- 0.09857683628797531
- ]
- ]
- ],
- [
- [
- [
- 0.06911434233188629
- ]
- ]
- ],
- [
- [
- [
- 0.08430086076259613
- ]
- ]
- ],
- [
- [
- [
- 0.08497870713472366
- ]
- ]
- ],
- [
- [
- [
- 0.07850105315446854
- ]
- ]
- ],
- [
- [
- [
- 0.1128198653459549
- ]
- ]
- ],
- [
- [
- [
- 0.0800718441605568
- ]
- ]
- ],
- [
- [
- [
- 0.09379331767559052
- ]
- ]
- ],
- [
- [
- [
- 0.07006057351827621
- ]
- ]
- ],
- [
- [
- [
- 0.09632085263729095
- ]
- ]
- ],
- [
- [
- [
- 0.07132977992296219
- ]
- ]
- ],
- [
- [
- [
- 0.05603781342506409
- ]
- ]
- ],
- [
- [
- [
- 0.07803531736135483
- ]
- ]
- ],
- [
- [
- [
- 0.09999839961528778
- ]
- ]
- ],
- [
- [
- [
- 0.11049391329288483
- ]
- ]
- ],
- [
- [
- [
- 0.06274744868278503
- ]
- ]
- ],
- [
- [
- [
- 0.05021531879901886
- ]
- ]
- ],
- [
- [
- [
- 0.10432083904743195
- ]
- ]
- ],
- [
- [
- [
- 0.06487513333559036
- ]
- ]
- ],
- [
- [
- [
- 0.04249809682369232
- ]
- ]
- ],
- [
- [
- [
- 0.051618896424770355
- ]
- ]
- ],
- [
- [
- [
- 0.07012447714805603
- ]
- ]
- ],
- [
- [
- [
- 0.08772289007902145
- ]
- ]
- ],
- [
- [
- [
- 0.06959018111228943
- ]
- ]
- ],
- [
- [
- [
- 0.11226815730333328
- ]
- ]
- ],
- [
- [
- [
- 0.09571922570466995
- ]
- ]
- ],
- [
- [
- [
- 0.07333376258611679
- ]
- ]
- ],
- [
- [
- [
- 0.07313158363103867
- ]
- ]
- ],
- [
- [
- [
- 0.07756626605987549
- ]
- ]
- ],
- [
- [
- [
- 0.06275714933872223
- ]
- ]
- ],
- [
- [
- [
- 0.07838936150074005
- ]
- ]
- ],
- [
- [
- [
- 0.06960339844226837
- ]
- ]
- ],
- [
- [
- [
- 0.0780213326215744
- ]
- ]
- ],
- [
- [
- [
- 0.06549248099327087
- ]
- ]
- ],
- [
- [
- [
- 0.06722289323806763
- ]
- ]
- ],
- [
- [
- [
- 0.07430832087993622
- ]
- ]
- ],
- [
- [
- [
- 0.08972927927970886
- ]
- ]
- ],
- [
- [
- [
- 0.09422715753316879
- ]
- ]
- ],
- [
- [
- [
- 0.05425902083516121
- ]
- ]
- ],
- [
- [
- [
- 0.07864182442426682
- ]
- ]
- ],
- [
- [
- [
- 0.07322236150503159
- ]
- ]
- ],
- [
- [
- [
- 0.06648565828800201
- ]
- ]
- ],
- [
- [
- [
- 0.10088223218917847
- ]
- ]
- ],
- [
- [
- [
- 0.07449463754892349
- ]
- ]
- ],
- [
- [
- [
- 0.07603677362203598
- ]
- ]
- ],
- [
- [
- [
- 0.0922265499830246
- ]
- ]
- ],
- [
- [
- [
- 0.09184981137514114
- ]
- ]
- ],
- [
- [
- [
- 0.06204533204436302
- ]
- ]
- ],
- [
- [
- [
- 0.05555403232574463
- ]
- ]
- ],
- [
- [
- [
- 0.06319446861743927
- ]
- ]
- ],
- [
- [
- [
- 0.07266212999820709
- ]
- ]
- ],
- [
- [
- [
- 0.08255491405725479
- ]
- ]
- ],
- [
- [
- [
- 0.06696457415819168
- ]
- ]
- ],
- [
- [
- [
- 0.06429167836904526
- ]
- ]
- ],
- [
- [
- [
- 0.07269757986068726
- ]
- ]
- ],
- [
- [
- [
- 0.0924118310213089
- ]
- ]
- ],
- [
- [
- [
- 0.11024060845375061
- ]
- ]
- ],
- [
- [
- [
- 0.10873532295227051
- ]
- ]
- ],
- [
- [
- [
- 0.08680135011672974
- ]
- ]
- ],
- [
- [
- [
- 0.0676921084523201
- ]
- ]
- ],
- [
- [
- [
- 0.11510374397039413
- ]
- ]
- ],
- [
- [
- [
- 0.09412893652915955
- ]
- ]
- ],
- [
- [
- [
- 0.08386683464050293
- ]
- ]
- ],
- [
- [
- [
- 0.04036860167980194
- ]
- ]
- ],
- [
- [
- [
- 0.11506912857294083
- ]
- ]
- ],
- [
- [
- [
- 0.10754183679819107
- ]
- ]
- ],
- [
- [
- [
- 0.09053366631269455
- ]
- ]
- ],
- [
- [
- [
- 0.11464585363864899
- ]
- ]
- ],
- [
- [
- [
- 0.073506660759449
- ]
- ]
- ],
- [
- [
- [
- 0.08165183663368225
- ]
- ]
- ],
- [
- [
- [
- 0.08294045180082321
- ]
- ]
- ],
- [
- [
- [
- 0.07027869671583176
- ]
- ]
- ],
- [
- [
- [
- 0.08052494376897812
- ]
- ]
- ],
- [
- [
- [
- 0.08692879974842072
- ]
- ]
- ],
- [
- [
- [
- 0.0953993871808052
- ]
- ]
- ],
- [
- [
- [
- 0.10865037143230438
- ]
- ]
- ],
- [
- [
- [
- 0.077224962413311
- ]
- ]
- ],
- [
- [
- [
- 0.09029295295476913
- ]
- ]
- ],
- [
- [
- [
- 0.08946505188941956
- ]
- ]
- ],
- [
- [
- [
- 0.07717661559581757
- ]
- ]
- ],
- [
- [
- [
- 0.11505956202745438
- ]
- ]
- ],
- [
- [
- [
- 0.03286290913820267
- ]
- ]
- ],
- [
- [
- [
- 0.07921445369720459
- ]
- ]
- ],
- [
- [
- [
- 0.05967634916305542
- ]
- ]
- ],
- [
- [
- [
- 0.09584246575832367
- ]
- ]
- ],
- [
- [
- [
- 0.09238466620445251
- ]
- ]
- ],
- [
- [
- [
- 0.09030137211084366
- ]
- ]
- ],
- [
- [
- [
- 0.10391327738761902
- ]
- ]
- ],
- [
- [
- [
- 0.08623527735471725
- ]
- ]
- ],
- [
- [
- [
- 0.05495396628975868
- ]
- ]
- ],
- [
- [
- [
- 0.10202000290155411
- ]
- ]
- ],
- [
- [
- [
- 0.09293452650308609
- ]
- ]
- ],
- [
- [
- [
- 0.05898229777812958
- ]
- ]
- ],
- [
- [
- [
- 0.09295911341905594
- ]
- ]
- ],
- [
- [
- [
- 0.11731816828250885
- ]
- ]
- ],
- [
- [
- [
- 0.08608409017324448
- ]
- ]
- ],
- [
- [
- [
- 0.09794167429208755
- ]
- ]
- ],
- [
- [
- [
- 0.11555340886116028
- ]
- ]
- ],
- [
- [
- [
- 0.06883645057678223
- ]
- ]
- ],
- [
- [
- [
- 0.06651856005191803
- ]
- ]
- ],
- [
- [
- [
- 0.07615353912115097
- ]
- ]
- ],
- [
- [
- [
- 0.08406630158424377
- ]
- ]
- ],
- [
- [
- [
- 0.09096626937389374
- ]
- ]
- ],
- [
- [
- [
- 0.07211116701364517
- ]
- ]
- ],
- [
- [
- [
- 0.0952414944767952
- ]
- ]
- ],
- [
- [
- [
- 0.06680657714605331
- ]
- ]
- ],
- [
- [
- [
- 0.06851711869239807
- ]
- ]
- ],
- [
- [
- [
- 0.08528391271829605
- ]
- ]
- ],
- [
- [
- [
- 0.11180242896080017
- ]
- ]
- ],
- [
- [
- [
- 0.10873346775770187
- ]
- ]
- ],
- [
- [
- [
- 0.059275105595588684
- ]
- ]
- ],
- [
- [
- [
- 0.09423975646495819
- ]
- ]
- ],
- [
- [
- [
- 0.05676921457052231
- ]
- ]
- ],
- [
- [
- [
- 0.07610844820737839
- ]
- ]
- ],
- [
- [
- [
- 0.07910905033349991
- ]
- ]
- ],
- [
- [
- [
- 0.06691212952136993
- ]
- ]
- ],
- [
- [
- [
- 0.11250659823417664
- ]
- ]
- ],
- [
- [
- [
- 0.07419870048761368
- ]
- ]
- ],
- [
- [
- [
- 0.06669463217258453
- ]
- ]
- ],
- [
- [
- [
- 0.05885457992553711
- ]
- ]
- ],
- [
- [
- [
- 0.1159944087266922
- ]
- ]
- ],
- [
- [
- [
- 0.07624396681785583
- ]
- ]
- ],
- [
- [
- [
- 0.06766287237405777
- ]
- ]
- ],
- [
- [
- [
- 0.07680922746658325
- ]
- ]
- ],
- [
- [
- [
- 0.06946471333503723
- ]
- ]
- ],
- [
- [
- [
- 0.0919509083032608
- ]
- ]
- ],
- [
- [
- [
- 0.07592714577913284
- ]
- ]
- ],
- [
- [
- [
- 0.10248823463916779
- ]
- ]
- ],
- [
- [
- [
- 0.13383527100086212
- ]
- ]
- ],
- [
- [
- [
- 0.08339645713567734
- ]
- ]
- ],
- [
- [
- [
- 0.07695843279361725
- ]
- ]
- ],
- [
- [
- [
- 0.07710961997509003
- ]
- ]
- ],
- [
- [
- [
- 0.1061524823307991
- ]
- ]
- ],
- [
- [
- [
- 0.07036775350570679
- ]
- ]
- ],
- [
- [
- [
- 0.085562564432621
- ]
- ]
- ],
- [
- [
- [
- 0.21382242441177368
- ]
- ]
- ],
- [
- [
- [
- 0.07857491821050644
- ]
- ]
- ],
- [
- [
- [
- 0.1099463626742363
- ]
- ]
- ],
- [
- [
- [
- 0.14383450150489807
- ]
- ]
- ],
- [
- [
- [
- 0.10274694114923477
- ]
- ]
- ],
- [
- [
- [
- 0.07513484358787537
- ]
- ]
- ],
- [
- [
- [
- 0.06390704959630966
- ]
- ]
- ],
- [
- [
- [
- 0.07116810232400894
- ]
- ]
- ],
- [
- [
- [
- 0.09363582730293274
- ]
- ]
- ],
- [
- [
- [
- 0.0724642276763916
- ]
- ]
- ],
- [
- [
- [
- 0.07266469299793243
- ]
- ]
- ],
- [
- [
- [
- 0.057547736912965775
- ]
- ]
- ],
- [
- [
- [
- 0.09344135969877243
- ]
- ]
- ],
- [
- [
- [
- 0.053898394107818604
- ]
- ]
- ],
- [
- [
- [
- 0.07656838744878769
- ]
- ]
- ],
- [
- [
- [
- 0.07497531175613403
- ]
- ]
- ],
- [
- [
- [
- 0.06811502575874329
- ]
- ]
- ],
- [
- [
- [
- 0.11376581341028214
- ]
- ]
- ],
- [
- [
- [
- 0.06149345636367798
- ]
- ]
- ],
- [
- [
- [
- 0.05183403939008713
- ]
- ]
- ],
- [
- [
- [
- 0.08022721111774445
- ]
- ]
- ],
- [
- [
- [
- 0.0987282544374466
- ]
- ]
- ],
- [
- [
- [
- 0.06399784982204437
- ]
- ]
- ],
- [
- [
- [
- 0.07653763145208359
- ]
- ]
- ],
- [
- [
- [
- 0.06915295124053955
- ]
- ]
- ],
- [
- [
- [
- 0.06052859500050545
- ]
- ]
- ],
- [
- [
- [
- 0.05823924019932747
- ]
- ]
- ],
- [
- [
- [
- 0.0456743985414505
- ]
- ]
- ],
- [
- [
- [
- 0.10369610786437988
- ]
- ]
- ],
- [
- [
- [
- 0.07880622893571854
- ]
- ]
- ],
- [
- [
- [
- 0.08206156641244888
- ]
- ]
- ],
- [
- [
- [
- 0.06859724968671799
- ]
- ]
- ],
- [
- [
- [
- 0.04655861482024193
- ]
- ]
- ],
- [
- [
- [
- 0.07751043885946274
- ]
- ]
- ],
- [
- [
- [
- 0.10279050469398499
- ]
- ]
- ],
- [
- [
- [
- 0.06220567226409912
- ]
- ]
- ],
- [
- [
- [
- 0.06367946416139603
- ]
- ]
- ],
- [
- [
- [
- 0.08618101477622986
- ]
- ]
- ],
- [
- [
- [
- 0.06984037905931473
- ]
- ]
- ],
- [
- [
- [
- 0.08608252555131912
- ]
- ]
- ],
- [
- [
- [
- 0.05895625427365303
- ]
- ]
- ],
- [
- [
- [
- 0.07282155007123947
- ]
- ]
- ],
- [
- [
- [
- 0.08441168069839478
- ]
- ]
- ],
- [
- [
- [
- 0.0793905034661293
- ]
- ]
- ],
- [
- [
- [
- 0.06165153160691261
- ]
- ]
- ],
- [
- [
- [
- 0.06794990599155426
- ]
- ]
- ],
- [
- [
- [
- 0.08553123474121094
- ]
- ]
- ],
- [
- [
- [
- 0.11563128232955933
- ]
- ]
- ],
- [
- [
- [
- 0.07279375940561295
- ]
- ]
- ],
- [
- [
- [
- 0.10589838773012161
- ]
- ]
- ],
- [
- [
- [
- 0.09244062006473541
- ]
- ]
- ],
- [
- [
- [
- 0.07044939696788788
- ]
- ]
- ],
- [
- [
- [
- 0.06015930697321892
- ]
- ]
- ],
- [
- [
- [
- 0.08138158172369003
- ]
- ]
- ],
- [
- [
- [
- 0.06608569622039795
- ]
- ]
- ],
- [
- [
- [
- 0.09543434530496597
- ]
- ]
- ],
- [
- [
- [
- 0.08854544907808304
- ]
- ]
- ],
- [
- [
- [
- 0.10462861508131027
- ]
- ]
- ],
- [
- [
- [
- 0.0497627891600132
- ]
- ]
- ],
- [
- [
- [
- 0.09672799706459045
- ]
- ]
- ],
- [
- [
- [
- 0.07059312611818314
- ]
- ]
- ],
- [
- [
- [
- 0.06578957289457321
- ]
- ]
- ],
- [
- [
- [
- 0.07590578496456146
- ]
- ]
- ],
- [
- [
- [
- 0.11472567915916443
- ]
- ]
- ],
- [
- [
- [
- 0.06593683362007141
- ]
- ]
- ],
- [
- [
- [
- 0.11918499320745468
- ]
- ]
- ],
- [
- [
- [
- 0.05244479328393936
- ]
- ]
- ],
- [
- [
- [
- 0.08672211319208145
- ]
- ]
- ],
- [
- [
- [
- 0.10970969498157501
- ]
- ]
- ],
- [
- [
- [
- 0.047886401414871216
- ]
- ]
- ],
- [
- [
- [
- 0.07232394814491272
- ]
- ]
- ],
- [
- [
- [
- 0.07981234043836594
- ]
- ]
- ],
- [
- [
- [
- 0.09312881529331207
- ]
- ]
- ],
- [
- [
- [
- 0.04917316883802414
- ]
- ]
- ],
- [
- [
- [
- 0.11387096345424652
- ]
- ]
- ],
- [
- [
- [
- 0.057647861540317535
- ]
- ]
- ],
- [
- [
- [
- 0.07365357875823975
- ]
- ]
- ],
- [
- [
- [
- 0.07064367085695267
- ]
- ]
- ],
- [
- [
- [
- 0.059707749634981155
- ]
- ]
- ],
- [
- [
- [
- 0.08768116682767868
- ]
- ]
- ],
- [
- [
- [
- 0.10374545305967331
- ]
- ]
- ],
- [
- [
- [
- 0.08074260503053665
- ]
- ]
- ],
- [
- [
- [
- 0.1018538549542427
- ]
- ]
- ],
- [
- [
- [
- 0.06713578850030899
- ]
- ]
- ],
- [
- [
- [
- 0.09989522397518158
- ]
- ]
- ],
- [
- [
- [
- 0.07748159766197205
- ]
- ]
- ],
- [
- [
- [
- 0.08455442637205124
- ]
- ]
- ],
- [
- [
- [
- 0.06822068244218826
- ]
- ]
- ],
- [
- [
- [
- 0.07050459831953049
- ]
- ]
- ],
- [
- [
- [
- 0.05438802391290665
- ]
- ]
- ],
- [
- [
- [
- 0.1406448930501938
- ]
- ]
- ],
- [
- [
- [
- 0.08751429617404938
- ]
- ]
- ],
- [
- [
- [
- 0.1140630766749382
- ]
- ]
- ],
- [
- [
- [
- 0.06903029978275299
- ]
- ]
- ],
- [
- [
- [
- 0.10764588415622711
- ]
- ]
- ],
- [
- [
- [
- 0.11386705189943314
- ]
- ]
- ],
- [
- [
- [
- 0.11003521829843521
- ]
- ]
- ],
- [
- [
- [
- 0.09007588028907776
- ]
- ]
- ],
- [
- [
- [
- 0.09357762336730957
- ]
- ]
- ],
- [
- [
- [
- 0.05080707371234894
- ]
- ]
- ],
- [
- [
- [
- 0.11502858996391296
- ]
- ]
- ],
- [
- [
- [
- 0.08417194336652756
- ]
- ]
- ],
- [
- [
- [
- 0.06930627673864365
- ]
- ]
- ],
- [
- [
- [
- 0.08114674687385559
- ]
- ]
- ],
- [
- [
- [
- 0.07661283016204834
- ]
- ]
- ],
- [
- [
- [
- 0.09288228303194046
- ]
- ]
- ],
- [
- [
- [
- 0.08105069398880005
- ]
- ]
- ],
- [
- [
- [
- 0.08216700702905655
- ]
- ]
- ],
- [
- [
- [
- 0.05887681245803833
- ]
- ]
- ],
- [
- [
- [
- 0.08021915704011917
- ]
- ]
- ],
- [
- [
- [
- 0.04964153841137886
- ]
- ]
- ],
- [
- [
- [
- 0.082636758685112
- ]
- ]
- ],
- [
- [
- [
- 0.07343064248561859
- ]
- ]
- ],
- [
- [
- [
- 0.08868660032749176
- ]
- ]
- ],
- [
- [
- [
- 0.11057309806346893
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.061027444899082184
- ]
- ]
- ],
- [
- [
- [
- 0.07237456738948822
- ]
- ]
- ],
- [
- [
- [
- 0.08362025022506714
- ]
- ]
- ],
- [
- [
- [
- 0.09920638054609299
- ]
- ]
- ],
- [
- [
- [
- 0.1340709775686264
- ]
- ]
- ],
- [
- [
- [
- 0.068463034927845
- ]
- ]
- ],
- [
- [
- [
- 0.09901504218578339
- ]
- ]
- ],
- [
- [
- [
- 0.051814138889312744
- ]
- ]
- ],
- [
- [
- [
- 0.09742005169391632
- ]
- ]
- ],
- [
- [
- [
- 0.09838517010211945
- ]
- ]
- ],
- [
- [
- [
- 0.08340826630592346
- ]
- ]
- ],
- [
- [
- [
- 0.10339716821908951
- ]
- ]
- ],
- [
- [
- [
- 0.09842051565647125
- ]
- ]
- ],
- [
- [
- [
- 0.11166468262672424
- ]
- ]
- ],
- [
- [
- [
- 0.0726441890001297
- ]
- ]
- ],
- [
- [
- [
- 0.07461782544851303
- ]
- ]
- ],
- [
- [
- [
- 0.0886366069316864
- ]
- ]
- ],
- [
- [
- [
- 0.0885624960064888
- ]
- ]
- ],
- [
- [
- [
- 0.06443940103054047
- ]
- ]
- ],
- [
- [
- [
- 0.06891687214374542
- ]
- ]
- ],
- [
- [
- [
- 0.10335055738687515
- ]
- ]
- ],
- [
- [
- [
- 0.05369953066110611
- ]
- ]
- ],
- [
- [
- [
- 0.09181374311447144
- ]
- ]
- ],
- [
- [
- [
- 0.10616336017847061
- ]
- ]
- ],
- [
- [
- [
- 0.08208567649126053
- ]
- ]
- ],
- [
- [
- [
- 0.06072651594877243
- ]
- ]
- ],
- [
- [
- [
- 0.08171014487743378
- ]
- ]
- ],
- [
- [
- [
- 0.05981767550110817
- ]
- ]
- ],
- [
- [
- [
- 0.09345357865095139
- ]
- ]
- ],
- [
- [
- [
- 0.07424092292785645
- ]
- ]
- ],
- [
- [
- [
- 0.09682814031839371
- ]
- ]
- ],
- [
- [
- [
- 0.058758147060871124
- ]
- ]
- ],
- [
- [
- [
- 0.07748310267925262
- ]
- ]
- ],
- [
- [
- [
- 0.09900659322738647
- ]
- ]
- ],
- [
- [
- [
- 0.07590200752019882
- ]
- ]
- ],
- [
- [
- [
- 0.07720610499382019
- ]
- ]
- ],
- [
- [
- [
- 0.07866807281970978
- ]
- ]
- ],
- [
- [
- [
- 0.07187788188457489
- ]
- ]
- ],
- [
- [
- [
- 0.07282344996929169
- ]
- ]
- ],
- [
- [
- [
- 0.06433700025081635
- ]
- ]
- ],
- [
- [
- [
- 0.058762844651937485
- ]
- ]
- ],
- [
- [
- [
- 0.0874427780508995
- ]
- ]
- ],
- [
- [
- [
- 0.06487059593200684
- ]
- ]
- ],
- [
- [
- [
- 0.11605722457170486
- ]
- ]
- ],
- [
- [
- [
- 0.0916747897863388
- ]
- ]
- ],
- [
- [
- [
- 0.08325311541557312
- ]
- ]
- ],
- [
- [
- [
- 0.04256035014986992
- ]
- ]
- ],
- [
- [
- [
- 0.08200070261955261
- ]
- ]
- ],
- [
- [
- [
- 0.0508047416806221
- ]
- ]
- ],
- [
- [
- [
- 0.07978814095258713
- ]
- ]
- ],
- [
- [
- [
- 0.08552281558513641
- ]
- ]
- ],
- [
- [
- [
- 0.09576233476400375
- ]
- ]
- ],
- [
- [
- [
- 0.09629327058792114
- ]
- ]
- ],
- [
- [
- [
- 0.1156291738152504
- ]
- ]
- ],
- [
- [
- [
- 0.08300036936998367
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.07071530073881149
- ]
- ]
- ],
- [
- [
- [
- 0.0348479263484478
- ]
- ]
- ],
- [
- [
- [
- 0.07415910065174103
- ]
- ]
- ],
- [
- [
- [
- 0.07699710875749588
- ]
- ]
- ],
- [
- [
- [
- 0.06657037883996964
- ]
- ]
- ],
- [
- [
- [
- 0.07827860862016678
- ]
- ]
- ],
- [
- [
- [
- 0.10803039371967316
- ]
- ]
- ],
- [
- [
- [
- 0.06596804410219193
- ]
- ]
- ],
- [
- [
- [
- 0.0571834035217762
- ]
- ]
- ],
- [
- [
- [
- 0.07869469374418259
- ]
- ]
- ],
- [
- [
- [
- 0.08134384453296661
- ]
- ]
- ],
- [
- [
- [
- 0.10438890755176544
- ]
- ]
- ],
- [
- [
- [
- 0.06779247522354126
- ]
- ]
- ],
- [
- [
- [
- 0.06886669248342514
- ]
- ]
- ],
- [
- [
- [
- 0.04101809486746788
- ]
- ]
- ],
- [
- [
- [
- 0.09014171361923218
- ]
- ]
- ],
- [
- [
- [
- 0.061023686081171036
- ]
- ]
- ],
- [
- [
- [
- 0.07694423943758011
- ]
- ]
- ],
- [
- [
- [
- 0.05109279602766037
- ]
- ]
- ],
- [
- [
- [
- 0.07907876372337341
- ]
- ]
- ],
- [
- [
- [
- 0.0869704857468605
- ]
- ]
- ],
- [
- [
- [
- 0.0669490396976471
- ]
- ]
- ],
- [
- [
- [
- 0.0744386613368988
- ]
- ]
- ],
- [
- [
- [
- 0.08544960618019104
- ]
- ]
- ],
- [
- [
- [
- 0.09907975047826767
- ]
- ]
- ],
- [
- [
- [
- 0.09627792239189148
- ]
- ]
- ],
- [
- [
- [
- 0.05716738477349281
- ]
- ]
- ],
- [
- [
- [
- 0.0711086317896843
- ]
- ]
- ],
- [
- [
- [
- 0.07541972398757935
- ]
- ]
- ],
- [
- [
- [
- 0.07838006317615509
- ]
- ]
- ],
- [
- [
- [
- 0.0926440954208374
- ]
- ]
- ],
- [
- [
- [
- 0.08513791859149933
- ]
- ]
- ],
- [
- [
- [
- 0.10456174612045288
- ]
- ]
- ],
- [
- [
- [
- 0.05840069800615311
- ]
- ]
- ],
- [
- [
- [
- 0.09138160943984985
- ]
- ]
- ],
- [
- [
- [
- 0.06858164817094803
- ]
- ]
- ],
- [
- [
- [
- 0.09595582634210587
- ]
- ]
- ],
- [
- [
- [
- 0.0843181386590004
- ]
- ]
- ],
- [
- [
- [
- 0.05078091844916344
- ]
- ]
- ],
- [
- [
- [
- 0.07559074461460114
- ]
- ]
- ],
- [
- [
- [
- 0.06553914397954941
- ]
- ]
- ],
- [
- [
- [
- 0.08262522518634796
- ]
- ]
- ],
- [
- [
- [
- 0.05969710648059845
- ]
- ]
- ],
- [
- [
- [
- 0.07184883207082748
- ]
- ]
- ],
- [
- [
- [
- 0.1262529492378235
- ]
- ]
- ],
- [
- [
- [
- 0.11300506442785263
- ]
- ]
- ],
- [
- [
- [
- 0.0700262114405632
- ]
- ]
- ],
- [
- [
- [
- 0.07061286270618439
- ]
- ]
- ],
- [
- [
- [
- 0.07768005132675171
- ]
- ]
- ],
- [
- [
- [
- 0.1345464289188385
- ]
- ]
- ],
- [
- [
- [
- 0.05173536017537117
- ]
- ]
- ],
- [
- [
- [
- 0.05719456076622009
- ]
- ]
- ],
- [
- [
- [
- 0.07841689884662628
- ]
- ]
- ],
- [
- [
- [
- 0.08785444498062134
- ]
- ]
- ],
- [
- [
- [
- 0.09300225973129272
- ]
- ]
- ],
- [
- [
- [
- 0.1019776463508606
- ]
- ]
- ],
- [
- [
- [
- 0.0797286108136177
- ]
- ]
- ],
- [
- [
- [
- 0.05353109538555145
- ]
- ]
- ],
- [
- [
- [
- 0.09331872314214706
- ]
- ]
- ],
- [
- [
- [
- 0.07876253873109818
- ]
- ]
- ],
- [
- [
- [
- 0.06273772567510605
- ]
- ]
- ],
- [
- [
- [
- 0.06122685596346855
- ]
- ]
- ],
- [
- [
- [
- 0.0732191652059555
- ]
- ]
- ],
- [
- [
- [
- 0.07607833296060562
- ]
- ]
- ],
- [
- [
- [
- 0.08797995746135712
- ]
- ]
- ],
- [
- [
- [
- 0.06540414690971375
- ]
- ]
- ],
- [
- [
- [
- 0.08333247154951096
- ]
- ]
- ],
- [
- [
- [
- 0.0571206696331501
- ]
- ]
- ],
- [
- [
- [
- 0.07081213593482971
- ]
- ]
- ],
- [
- [
- [
- 0.10097313672304153
- ]
- ]
- ],
- [
- [
- [
- 0.07970158755779266
- ]
- ]
- ],
- [
- [
- [
- 0.1025502011179924
- ]
- ]
- ],
- [
- [
- [
- 0.12197284400463104
- ]
- ]
- ],
- [
- [
- [
- 0.05492876097559929
- ]
- ]
- ],
- [
- [
- [
- 0.04584122821688652
- ]
- ]
- ],
- [
- [
- [
- 0.10220208764076233
- ]
- ]
- ],
- [
- [
- [
- 0.08692747354507446
- ]
- ]
- ],
- [
- [
- [
- 0.10250584781169891
- ]
- ]
- ],
- [
- [
- [
- 0.08852393925189972
- ]
- ]
- ],
- [
- [
- [
- 0.07071180641651154
- ]
- ]
- ],
- [
- [
- [
- 0.08751723915338516
- ]
- ]
- ],
- [
- [
- [
- 0.0915805846452713
- ]
- ]
- ],
- [
- [
- [
- 0.0974363386631012
- ]
- ]
- ],
- [
- [
- [
- 0.0844995528459549
- ]
- ]
- ],
- [
- [
- [
- 0.10337289422750473
- ]
- ]
- ],
- [
- [
- [
- 0.05637650191783905
- ]
- ]
- ],
- [
- [
- [
- 0.08052709698677063
- ]
- ]
- ],
- [
- [
- [
- 0.11812326312065125
- ]
- ]
- ],
- [
- [
- [
- 0.07220408320426941
- ]
- ]
- ],
- [
- [
- [
- 0.07470788061618805
- ]
- ]
- ],
- [
- [
- [
- 0.0620674267411232
- ]
- ]
- ],
- [
- [
- [
- 0.07427623867988586
- ]
- ]
- ],
- [
- [
- [
- 0.08792776614427567
- ]
- ]
- ],
- [
- [
- [
- 0.04598432406783104
- ]
- ]
- ],
- [
- [
- [
- 0.06669151782989502
- ]
- ]
- ],
- [
- [
- [
- 0.07933466136455536
- ]
- ]
- ],
- [
- [
- [
- 0.08558259904384613
- ]
- ]
- ],
- [
- [
- [
- 0.08210068941116333
- ]
- ]
- ],
- [
- [
- [
- 0.03772334009408951
- ]
- ]
- ],
- [
- [
- [
- 0.09365830570459366
- ]
- ]
- ],
- [
- [
- [
- 0.07640885561704636
- ]
- ]
- ],
- [
- [
- [
- 0.09812533110380173
- ]
- ]
- ],
- [
- [
- [
- 0.09350292384624481
- ]
- ]
- ],
- [
- [
- [
- 0.07310803979635239
- ]
- ]
- ],
- [
- [
- [
- 0.07064316421747208
- ]
- ]
- ],
- [
- [
- [
- 0.1142919510602951
- ]
- ]
- ],
- [
- [
- [
- 0.07129829376935959
- ]
- ]
- ],
- [
- [
- [
- 0.05380614474415779
- ]
- ]
- ],
- [
- [
- [
- 0.10391110181808472
- ]
- ]
- ],
- [
- [
- [
- 0.09388258308172226
- ]
- ]
- ],
- [
- [
- [
- 0.0752771645784378
- ]
- ]
- ],
- [
- [
- [
- 0.06332244724035263
- ]
- ]
- ],
- [
- [
- [
- 0.08173949271440506
- ]
- ]
- ],
- [
- [
- [
- 0.05839203670620918
- ]
- ]
- ],
- [
- [
- [
- 0.06639210879802704
- ]
- ]
- ],
- [
- [
- [
- 0.09258720278739929
- ]
- ]
- ],
- [
- [
- [
- 0.07380016893148422
- ]
- ]
- ],
- [
- [
- [
- 0.12081968039274216
- ]
- ]
- ],
- [
- [
- [
- 0.06607155501842499
- ]
- ]
- ],
- [
- [
- [
- 0.07054609060287476
- ]
- ]
- ],
- [
- [
- [
- 0.06910192221403122
- ]
- ]
- ],
- [
- [
- [
- 0.09816881269216537
- ]
- ]
- ],
- [
- [
- [
- 0.09072636812925339
- ]
- ]
- ],
- [
- [
- [
- 0.10704080760478973
- ]
- ]
- ],
- [
- [
- [
- 0.09461311995983124
- ]
- ]
- ],
- [
- [
- [
- 0.09698992967605591
- ]
- ]
- ],
- [
- [
- [
- 0.09584659337997437
- ]
- ]
- ],
- [
- [
- [
- 0.0881393551826477
- ]
- ]
- ],
- [
- [
- [
- 0.09438586980104446
- ]
- ]
- ],
- [
- [
- [
- 0.05823419988155365
- ]
- ]
- ],
- [
- [
- [
- 0.07889480888843536
- ]
- ]
- ],
- [
- [
- [
- 0.061699140816926956
- ]
- ]
- ],
- [
- [
- [
- 0.06455875933170319
- ]
- ]
- ],
- [
- [
- [
- 0.09467510879039764
- ]
- ]
- ],
- [
- [
- [
- 0.08654667437076569
- ]
- ]
- ],
- [
- [
- [
- 0.10002695769071579
- ]
- ]
- ],
- [
- [
- [
- 0.09199295938014984
- ]
- ]
- ],
- [
- [
- [
- 0.06514525413513184
- ]
- ]
- ],
- [
- [
- [
- 0.08497554063796997
- ]
- ]
- ],
- [
- [
- [
- 0.047742415219545364
- ]
- ]
- ],
- [
- [
- [
- 0.055402256548404694
- ]
- ]
- ],
- [
- [
- [
- 0.11207106709480286
- ]
- ]
- ],
- [
- [
- [
- 0.06313778460025787
- ]
- ]
- ],
- [
- [
- [
- 0.07136573642492294
- ]
- ]
- ],
- [
- [
- [
- 0.08368609845638275
- ]
- ]
- ],
- [
- [
- [
- 0.07573843747377396
- ]
- ]
- ],
- [
- [
- [
- 0.10183040052652359
- ]
- ]
- ],
- [
- [
- [
- 0.07038111984729767
- ]
- ]
- ],
- [
- [
- [
- 0.08228520303964615
- ]
- ]
- ],
- [
- [
- [
- 0.11264616250991821
- ]
- ]
- ],
- [
- [
- [
- 0.09939232468605042
- ]
- ]
- ],
- [
- [
- [
- 0.08426352590322495
- ]
- ]
- ],
- [
- [
- [
- 0.09023299813270569
- ]
- ]
- ],
- [
- [
- [
- 0.09270405024290085
- ]
- ]
- ],
- [
- [
- [
- 0.07472552359104156
- ]
- ]
- ],
- [
- [
- [
- 0.10498982667922974
- ]
- ]
- ],
- [
- [
- [
- 0.08856912702322006
- ]
- ]
- ],
- [
- [
- [
- 0.11589186638593674
- ]
- ]
- ],
- [
- [
- [
- 0.07473103702068329
- ]
- ]
- ],
- [
- [
- [
- 0.07187560200691223
- ]
- ]
- ],
- [
- [
- [
- 0.1022312119603157
- ]
- ]
- ],
- [
- [
- [
- 0.07976190000772476
- ]
- ]
- ],
- [
- [
- [
- 0.04627872258424759
- ]
- ]
- ],
- [
- [
- [
- 0.0847841277718544
- ]
- ]
- ],
- [
- [
- [
- 0.08206462860107422
- ]
- ]
- ],
- [
- [
- [
- 0.062180060893297195
- ]
- ]
- ],
- [
- [
- [
- 0.08854856342077255
- ]
- ]
- ],
- [
- [
- [
- 0.08091577142477036
- ]
- ]
- ],
- [
- [
- [
- 0.04204418510198593
- ]
- ]
- ],
- [
- [
- [
- 0.08008252084255219
- ]
- ]
- ],
- [
- [
- [
- 0.08155986666679382
- ]
- ]
- ],
- [
- [
- [
- 0.09803514182567596
- ]
- ]
- ],
- [
- [
- [
- 0.04373312368988991
- ]
- ]
- ],
- [
- [
- [
- 0.07711176574230194
- ]
- ]
- ],
- [
- [
- [
- 0.06366907805204391
- ]
- ]
- ],
- [
- [
- [
- 0.0883634090423584
- ]
- ]
- ],
- [
- [
- [
- 0.10297742486000061
- ]
- ]
- ],
- [
- [
- [
- 0.0816849023103714
- ]
- ]
- ],
- [
- [
- [
- 0.11690335720777512
- ]
- ]
- ],
- [
- [
- [
- 0.0785883441567421
- ]
- ]
- ],
- [
- [
- [
- 0.03911576792597771
- ]
- ]
- ],
- [
- [
- [
- 0.07280317693948746
- ]
- ]
- ],
- [
- [
- [
- 0.10225744545459747
- ]
- ]
- ],
- [
- [
- [
- 0.09952295571565628
- ]
- ]
- ],
- [
- [
- [
- 0.0732448622584343
- ]
- ]
- ],
- [
- [
- [
- 0.10555241256952286
- ]
- ]
- ],
- [
- [
- [
- 0.07029056549072266
- ]
- ]
- ],
- [
- [
- [
- 0.08478783071041107
- ]
- ]
- ],
- [
- [
- [
- 0.08725158870220184
- ]
- ]
- ],
- [
- [
- [
- 0.07289407402276993
- ]
- ]
- ],
- [
- [
- [
- 0.08817575871944427
- ]
- ]
- ],
- [
- [
- [
- 0.07154295593500137
- ]
- ]
- ],
- [
- [
- [
- 0.07975222915410995
- ]
- ]
- ],
- [
- [
- [
- 0.05968209728598595
- ]
- ]
- ],
- [
- [
- [
- 0.06454551964998245
- ]
- ]
- ],
- [
- [
- [
- 0.06266672909259796
- ]
- ]
- ],
- [
- [
- [
- 0.08545352518558502
- ]
- ]
- ],
- [
- [
- [
- 0.0918397456407547
- ]
- ]
- ],
- [
- [
- [
- 0.054640140384435654
- ]
- ]
- ],
- [
- [
- [
- 0.10734404623508453
- ]
- ]
- ],
- [
- [
- [
- 0.10849961638450623
- ]
- ]
- ],
- [
- [
- [
- 0.10824594646692276
- ]
- ]
- ],
- [
- [
- [
- 0.1079808846116066
- ]
- ]
- ],
- [
- [
- [
- 0.07557680457830429
- ]
- ]
- ],
- [
- [
- [
- 0.053232885897159576
- ]
- ]
- ],
- [
- [
- [
- 0.08438645303249359
- ]
- ]
- ],
- [
- [
- [
- 0.06537612527608871
- ]
- ]
- ],
- [
- [
- [
- 0.056556422263383865
- ]
- ]
- ],
- [
- [
- [
- 0.08867942541837692
- ]
- ]
- ],
- [
- [
- [
- 0.11264696717262268
- ]
- ]
- ],
- [
- [
- [
- 0.06738556921482086
- ]
- ]
- ],
- [
- [
- [
- 0.09851531684398651
- ]
- ]
- ],
- [
- [
- [
- 0.0782991424202919
- ]
- ]
- ],
- [
- [
- [
- 0.0656714141368866
- ]
- ]
- ],
- [
- [
- [
- 0.075212262570858
- ]
- ]
- ],
- [
- [
- [
- 0.07360821962356567
- ]
- ]
- ],
- [
- [
- [
- 0.0937250629067421
- ]
- ]
- ],
- [
- [
- [
- 0.09428814053535461
- ]
- ]
- ],
- [
- [
- [
- 0.09257518500089645
- ]
- ]
- ],
- [
- [
- [
- 0.10180794447660446
- ]
- ]
- ],
- [
- [
- [
- 0.08753816783428192
- ]
- ]
- ],
- [
- [
- [
- 0.08142414689064026
- ]
- ]
- ],
- [
- [
- [
- 0.07070966064929962
- ]
- ]
- ],
- [
- [
- [
- 0.058878082782030106
- ]
- ]
- ],
- [
- [
- [
- 0.07797295600175858
- ]
- ]
- ],
- [
- [
- [
- 0.09175701439380646
- ]
- ]
- ],
- [
- [
- [
- 0.058204930275678635
- ]
- ]
- ],
- [
- [
- [
- 0.10948582738637924
- ]
- ]
- ],
- [
- [
- [
- 0.08616431057453156
- ]
- ]
- ],
- [
- [
- [
- 0.09029332548379898
- ]
- ]
- ],
- [
- [
- [
- 0.08352357149124146
- ]
- ]
- ],
- [
- [
- [
- 0.05958261340856552
- ]
- ]
- ],
- [
- [
- [
- 0.09466705471277237
- ]
- ]
- ],
- [
- [
- [
- 0.07258259505033493
- ]
- ]
- ],
- [
- [
- [
- 0.04744154214859009
- ]
- ]
- ],
- [
- [
- [
- 0.0699552595615387
- ]
- ]
- ],
- [
- [
- [
- 0.10032375901937485
- ]
- ]
- ],
- [
- [
- [
- 0.050392817705869675
- ]
- ]
- ],
- [
- [
- [
- 0.0665903389453888
- ]
- ]
- ],
- [
- [
- [
- 0.056582026183605194
- ]
- ]
- ],
- [
- [
- [
- 0.11301292479038239
- ]
- ]
- ],
- [
- [
- [
- 0.07282225042581558
- ]
- ]
- ],
- [
- [
- [
- 0.08253932744264603
- ]
- ]
- ],
- [
- [
- [
- 0.07056485861539841
- ]
- ]
- ],
- [
- [
- [
- 0.08465635776519775
- ]
- ]
- ],
- [
- [
- [
- 0.08125829696655273
- ]
- ]
- ],
- [
- [
- [
- 0.08017205446958542
- ]
- ]
- ],
- [
- [
- [
- 0.05288570746779442
- ]
- ]
- ],
- [
- [
- [
- 0.08876357227563858
- ]
- ]
- ],
- [
- [
- [
- 0.06703150272369385
- ]
- ]
- ],
- [
- [
- [
- 0.07813320308923721
- ]
- ]
- ],
- [
- [
- [
- 0.06687869131565094
- ]
- ]
- ],
- [
- [
- [
- 0.06325667351484299
- ]
- ]
- ],
- [
- [
- [
- 0.09541445225477219
- ]
- ]
- ],
- [
- [
- [
- 0.08690016716718674
- ]
- ]
- ],
- [
- [
- [
- 0.08979479223489761
- ]
- ]
- ],
- [
- [
- [
- 0.04826977476477623
- ]
- ]
- ],
- [
- [
- [
- 0.07010262459516525
- ]
- ]
- ],
- [
- [
- [
- 0.04866395145654678
- ]
- ]
- ],
- [
- [
- [
- 0.08788633346557617
- ]
- ]
- ],
- [
- [
- [
- 0.1175958439707756
- ]
- ]
- ],
- [
- [
- [
- 0.08649478107690811
- ]
- ]
- ],
- [
- [
- [
- 0.0749683827161789
- ]
- ]
- ],
- [
- [
- [
- 0.05845803767442703
- ]
- ]
- ],
- [
- [
- [
- 0.09801016002893448
- ]
- ]
- ],
- [
- [
- [
- 0.06879256665706635
- ]
- ]
- ],
- [
- [
- [
- 0.07820084691047668
- ]
- ]
- ],
- [
- [
- [
- 0.10106252133846283
- ]
- ]
- ],
- [
- [
- [
- 0.0389900878071785
- ]
- ]
- ],
- [
- [
- [
- 0.07603240758180618
- ]
- ]
- ],
- [
- [
- [
- 0.08147808164358139
- ]
- ]
- ],
- [
- [
- [
- 0.10170036554336548
- ]
- ]
- ],
- [
- [
- [
- 0.07083087414503098
- ]
- ]
- ],
- [
- [
- [
- 0.09272570163011551
- ]
- ]
- ],
- [
- [
- [
- 0.06662170588970184
- ]
- ]
- ],
- [
- [
- [
- 0.06983763724565506
- ]
- ]
- ],
- [
- [
- [
- 0.09116936475038528
- ]
- ]
- ],
- [
- [
- [
- 0.10190749913454056
- ]
- ]
- ],
- [
- [
- [
- 0.08057215809822083
- ]
- ]
- ],
- [
- [
- [
- 0.12368305027484894
- ]
- ]
- ],
- [
- [
- [
- 0.05933622270822525
- ]
- ]
- ],
- [
- [
- [
- 0.05659732222557068
- ]
- ]
- ],
- [
- [
- [
- 0.0698203444480896
- ]
- ]
- ],
- [
- [
- [
- 0.06823895126581192
- ]
- ]
- ],
- [
- [
- [
- 0.0858592689037323
- ]
- ]
- ],
- [
- [
- [
- 0.07350180298089981
- ]
- ]
- ],
- [
- [
- [
- 0.06860005110502243
- ]
- ]
- ],
- [
- [
- [
- 0.050324905663728714
- ]
- ]
- ],
- [
- [
- [
- 0.07189030200242996
- ]
- ]
- ],
- [
- [
- [
- 0.08609016239643097
- ]
- ]
- ],
- [
- [
- [
- 0.10099496692419052
- ]
- ]
- ],
- [
- [
- [
- 0.08254224807024002
- ]
- ]
- ],
- [
- [
- [
- 0.07932084053754807
- ]
- ]
- ],
- [
- [
- [
- 0.09889435023069382
- ]
- ]
- ],
- [
- [
- [
- 0.07703230530023575
- ]
- ]
- ],
- [
- [
- [
- 0.09348131716251373
- ]
- ]
- ],
- [
- [
- [
- 0.07371295243501663
- ]
- ]
- ],
- [
- [
- [
- 0.0697341039776802
- ]
- ]
- ],
- [
- [
- [
- 0.08877726644277573
- ]
- ]
- ],
- [
- [
- [
- 0.08811005204916
- ]
- ]
- ],
- [
- [
- [
- 0.09618402272462845
- ]
- ]
- ],
- [
- [
- [
- 0.07690417021512985
- ]
- ]
- ],
- [
- [
- [
- 0.05107318237423897
- ]
- ]
- ],
- [
- [
- [
- 0.14495573937892914
- ]
- ]
- ],
- [
- [
- [
- 0.10577777028083801
- ]
- ]
- ],
- [
- [
- [
- 0.07263974100351334
- ]
- ]
- ],
- [
- [
- [
- 0.10268343240022659
- ]
- ]
- ],
- [
- [
- [
- 0.060619913041591644
- ]
- ]
- ],
- [
- [
- [
- 0.06874103844165802
- ]
- ]
- ],
- [
- [
- [
- 0.07998576015233994
- ]
- ]
- ],
- [
- [
- [
- 0.06425560265779495
- ]
- ]
- ],
- [
- [
- [
- 0.12438056617975235
- ]
- ]
- ],
- [
- [
- [
- 0.06132021173834801
- ]
- ]
- ],
- [
- [
- [
- 0.07990734279155731
- ]
- ]
- ],
- [
- [
- [
- 0.06922955811023712
- ]
- ]
- ],
- [
- [
- [
- 0.05405823886394501
- ]
- ]
- ],
- [
- [
- [
- 0.07134158909320831
- ]
- ]
- ],
- [
- [
- [
- 0.08228940516710281
- ]
- ]
- ],
- [
- [
- [
- 0.07209205627441406
- ]
- ]
- ],
- [
- [
- [
- 0.07395186275243759
- ]
- ]
- ],
- [
- [
- [
- 0.04049632325768471
- ]
- ]
- ],
- [
- [
- [
- 0.06080811098217964
- ]
- ]
- ],
- [
- [
- [
- 0.0661211609840393
- ]
- ]
- ],
- [
- [
- [
- 0.09525733441114426
- ]
- ]
- ],
- [
- [
- [
- 0.08097393065690994
- ]
- ]
- ],
- [
- [
- [
- 0.1116902157664299
- ]
- ]
- ],
- [
- [
- [
- 0.047268226742744446
- ]
- ]
- ],
- [
- [
- [
- 0.08791053295135498
- ]
- ]
- ],
- [
- [
- [
- 0.08504649996757507
- ]
- ]
- ],
- [
- [
- [
- 0.12071584910154343
- ]
- ]
- ],
- [
- [
- [
- 0.06961110234260559
- ]
- ]
- ],
- [
- [
- [
- 0.08359209448099136
- ]
- ]
- ],
- [
- [
- [
- 0.05157646909356117
- ]
- ]
- ],
- [
- [
- [
- 0.08283037692308426
- ]
- ]
- ],
- [
- [
- [
- 0.07668830454349518
- ]
- ]
- ],
- [
- [
- [
- 0.05593942478299141
- ]
- ]
- ],
- [
- [
- [
- 0.08263685554265976
- ]
- ]
- ],
- [
- [
- [
- 0.08099956065416336
- ]
- ]
- ],
- [
- [
- [
- 0.057596489787101746
- ]
- ]
- ],
- [
- [
- [
- 0.06627891212701797
- ]
- ]
- ],
- [
- [
- [
- 0.05994277447462082
- ]
- ]
- ],
- [
- [
- [
- 0.10571780800819397
- ]
- ]
- ],
- [
- [
- [
- 0.052054766565561295
- ]
- ]
- ],
- [
- [
- [
- 0.09044913202524185
- ]
- ]
- ],
- [
- [
- [
- 0.09348784387111664
- ]
- ]
- ],
- [
- [
- [
- 0.04625977203249931
- ]
- ]
- ],
- [
- [
- [
- 0.07062697410583496
- ]
- ]
- ],
- [
- [
- [
- 0.08242160826921463
- ]
- ]
- ],
- [
- [
- [
- 0.11613553017377853
- ]
- ]
- ],
- [
- [
- [
- 0.07673363387584686
- ]
- ]
- ],
- [
- [
- [
- 0.05518975481390953
- ]
- ]
- ],
- [
- [
- [
- 0.09465054422616959
- ]
- ]
- ],
- [
- [
- [
- 0.06729406863451004
- ]
- ]
- ],
- [
- [
- [
- 0.05551871657371521
- ]
- ]
- ],
- [
- [
- [
- 0.07817549258470535
- ]
- ]
- ],
- [
- [
- [
- 0.06399229913949966
- ]
- ]
- ],
- [
- [
- [
- 0.05107778310775757
- ]
- ]
- ],
- [
- [
- [
- 0.06149657443165779
- ]
- ]
- ],
- [
- [
- [
- 0.07468979805707932
- ]
- ]
- ],
- [
- [
- [
- 0.06120368465781212
- ]
- ]
- ],
- [
- [
- [
- 0.05948040634393692
- ]
- ]
- ],
- [
- [
- [
- 0.064889095723629
- ]
- ]
- ],
- [
- [
- [
- 0.07499144971370697
- ]
- ]
- ],
- [
- [
- [
- 0.07804940640926361
- ]
- ]
- ],
- [
- [
- [
- 0.08943097293376923
- ]
- ]
- ],
- [
- [
- [
- 0.08910474181175232
- ]
- ]
- ],
- [
- [
- [
- 0.09501776844263077
- ]
- ]
- ],
- [
- [
- [
- 0.10549020022153854
- ]
- ]
- ],
- [
- [
- [
- 0.08772651851177216
- ]
- ]
- ],
- [
- [
- [
- 0.09480185806751251
- ]
- ]
- ],
- [
- [
- [
- 0.039753612130880356
- ]
- ]
- ],
- [
- [
- [
- 0.061523739248514175
- ]
- ]
- ],
- [
- [
- [
- 0.09368418902158737
- ]
- ]
- ],
- [
- [
- [
- 0.07691100239753723
- ]
- ]
- ],
- [
- [
- [
- 0.073822021484375
- ]
- ]
- ],
- [
- [
- [
- 0.05471666157245636
- ]
- ]
- ],
- [
- [
- [
- 0.09052624553442001
- ]
- ]
- ],
- [
- [
- [
- 0.08911649137735367
- ]
- ]
- ],
- [
- [
- [
- 0.043947428464889526
- ]
- ]
- ],
- [
- [
- [
- 0.03806280344724655
- ]
- ]
- ],
- [
- [
- [
- 0.08651432394981384
- ]
- ]
- ],
- [
- [
- [
- 0.08740046620368958
- ]
- ]
- ],
- [
- [
- [
- 0.09589625149965286
- ]
- ]
- ],
- [
- [
- [
- 0.0635964497923851
- ]
- ]
- ],
- [
- [
- [
- 0.07670340687036514
- ]
- ]
- ],
- [
- [
- [
- 0.10258164256811142
- ]
- ]
- ],
- [
- [
- [
- 0.05519557371735573
- ]
- ]
- ],
- [
- [
- [
- 0.058486368507146835
- ]
- ]
- ],
- [
- [
- [
- 0.1136150062084198
- ]
- ]
- ],
- [
- [
- [
- 0.057602450251579285
- ]
- ]
- ],
- [
- [
- [
- 0.09003745019435883
- ]
- ]
- ],
- [
- [
- [
- 0.09422420710325241
- ]
- ]
- ],
- [
- [
- [
- 0.08816602826118469
- ]
- ]
- ],
- [
- [
- [
- 0.06102027744054794
- ]
- ]
- ],
- [
- [
- [
- 0.057667434215545654
- ]
- ]
- ],
- [
- [
- [
- 0.052378516644239426
- ]
- ]
- ],
- [
- [
- [
- 0.0915367603302002
- ]
- ]
- ],
- [
- [
- [
- 0.11141592264175415
- ]
- ]
- ],
- [
- [
- [
- 0.07275049388408661
- ]
- ]
- ],
- [
- [
- [
- 0.09853202849626541
- ]
- ]
- ],
- [
- [
- [
- 0.05745477229356766
- ]
- ]
- ],
- [
- [
- [
- 0.1042008325457573
- ]
- ]
- ],
- [
- [
- [
- 0.084428571164608
- ]
- ]
- ],
- [
- [
- [
- 0.03213006630539894
- ]
- ]
- ],
- [
- [
- [
- 0.053230106830596924
- ]
- ]
- ],
- [
- [
- [
- 0.056356336921453476
- ]
- ]
- ],
- [
- [
- [
- 0.029592957347631454
- ]
- ]
- ],
- [
- [
- [
- 0.03155312314629555
- ]
- ]
- ],
- [
- [
- [
- 0.10173670202493668
- ]
- ]
- ],
- [
- [
- [
- 0.002138224197551608
- ]
- ]
- ],
- [
- [
- [
- 0.06684163212776184
- ]
- ]
- ],
- [
- [
- [
- 0.05585940182209015
- ]
- ]
- ],
- [
- [
- [
- 0.14228609204292297
- ]
- ]
- ],
- [
- [
- [
- 0.10057239234447479
- ]
- ]
- ],
- [
- [
- [
- 0.11406401544809341
- ]
- ]
- ],
- [
- [
- [
- 0.07664996385574341
- ]
- ]
- ],
- [
- [
- [
- 0.08341754972934723
- ]
- ]
- ],
- [
- [
- [
- 0.09490326046943665
- ]
- ]
- ],
- [
- [
- [
- 0.07314691692590714
- ]
- ]
- ],
- [
- [
- [
- 0.07535300403833389
- ]
- ]
- ],
- [
- [
- [
- 0.07943447679281235
- ]
- ]
- ],
- [
- [
- [
- 0.05892981216311455
- ]
- ]
- ],
- [
- [
- [
- 0.058823566883802414
- ]
- ]
- ],
- [
- [
- [
- 0.09280380606651306
- ]
- ]
- ],
- [
- [
- [
- 0.08679395169019699
- ]
- ]
- ],
- [
- [
- [
- 0.10126554220914841
- ]
- ]
- ],
- [
- [
- [
- 0.08906863629817963
- ]
- ]
- ],
- [
- [
- [
- 0.054329100996255875
- ]
- ]
- ],
- [
- [
- [
- 0.12931326031684875
- ]
- ]
- ],
- [
- [
- [
- 0.13117115199565887
- ]
- ]
- ],
- [
- [
- [
- 0.07586194574832916
- ]
- ]
- ],
- [
- [
- [
- 0.07552564144134521
- ]
- ]
- ],
- [
- [
- [
- 0.08194880187511444
- ]
- ]
- ],
- [
- [
- [
- 0.08497414737939835
- ]
- ]
- ],
- [
- [
- [
- 0.11016431450843811
- ]
- ]
- ],
- [
- [
- [
- 0.0916135236620903
- ]
- ]
- ],
- [
- [
- [
- 0.09609591215848923
- ]
- ]
- ],
- [
- [
- [
- 0.08644851297140121
- ]
- ]
- ],
- [
- [
- [
- 0.061881810426712036
- ]
- ]
- ],
- [
- [
- [
- 0.052320774644613266
- ]
- ]
- ],
- [
- [
- [
- 0.09620192646980286
- ]
- ]
- ],
- [
- [
- [
- 0.0960218533873558
- ]
- ]
- ],
- [
- [
- [
- 0.09636559337377548
- ]
- ]
- ],
- [
- [
- [
- 0.09018382430076599
- ]
- ]
- ],
- [
- [
- [
- 0.0757909044623375
- ]
- ]
- ],
- [
- [
- [
- 0.1937423050403595
- ]
- ]
- ],
- [
- [
- [
- 0.06648385524749756
- ]
- ]
- ],
- [
- [
- [
- 0.06308578699827194
- ]
- ]
- ],
- [
- [
- [
- 0.0810537114739418
- ]
- ]
- ],
- [
- [
- [
- 0.09674353897571564
- ]
- ]
- ],
- [
- [
- [
- 0.0951564684510231
- ]
- ]
- ],
- [
- [
- [
- 0.05451652780175209
- ]
- ]
- ],
- [
- [
- [
- 0.153913214802742
- ]
- ]
- ],
- [
- [
- [
- 0.08305449038743973
- ]
- ]
- ],
- [
- [
- [
- 0.08001574128866196
- ]
- ]
- ],
- [
- [
- [
- 0.08307718485593796
- ]
- ]
- ],
- [
- [
- [
- 0.09296419471502304
- ]
- ]
- ],
- [
- [
- [
- 0.10116496682167053
- ]
- ]
- ],
- [
- [
- [
- 0.11452315002679825
- ]
- ]
- ],
- [
- [
- [
- 0.059926025569438934
- ]
- ]
- ],
- [
- [
- [
- 0.14107368886470795
- ]
- ]
- ],
- [
- [
- [
- 0.09363594651222229
- ]
- ]
- ],
- [
- [
- [
- 0.05010456219315529
- ]
- ]
- ],
- [
- [
- [
- 0.03640623018145561
- ]
- ]
- ],
- [
- [
- [
- 0.09134142100811005
- ]
- ]
- ],
- [
- [
- [
- 0.07697655260562897
- ]
- ]
- ],
- [
- [
- [
- 0.10864877700805664
- ]
- ]
- ],
- [
- [
- [
- 0.10198307782411575
- ]
- ]
- ],
- [
- [
- [
- 0.1042611300945282
- ]
- ]
- ],
- [
- [
- [
- 0.03458947688341141
- ]
- ]
- ],
- [
- [
- [
- 0.08694835007190704
- ]
- ]
- ],
- [
- [
- [
- 0.053618576377630234
- ]
- ]
- ],
- [
- [
- [
- 0.06671763211488724
- ]
- ]
- ],
- [
- [
- [
- 0.09233434498310089
- ]
- ]
- ],
- [
- [
- [
- 0.06116355210542679
- ]
- ]
- ],
- [
- [
- [
- 0.07294467836618423
- ]
- ]
- ],
- [
- [
- [
- 0.05872868373990059
- ]
- ]
- ],
- [
- [
- [
- 0.08115499466657639
- ]
- ]
- ],
- [
- [
- [
- 0.1184283196926117
- ]
- ]
- ],
- [
- [
- [
- 0.09759453684091568
- ]
- ]
- ],
- [
- [
- [
- 0.13155603408813477
- ]
- ]
- ],
- [
- [
- [
- 0.0788569226861
- ]
- ]
- ],
- [
- [
- [
- 0.06619301438331604
- ]
- ]
- ],
- [
- [
- [
- 0.07956621050834656
- ]
- ]
- ],
- [
- [
- [
- 0.09835013747215271
- ]
- ]
- ],
- [
- [
- [
- 0.07436123490333557
- ]
- ]
- ],
- [
- [
- [
- 0.05061725899577141
- ]
- ]
- ],
- [
- [
- [
- 0.04629236459732056
- ]
- ]
- ],
- [
- [
- [
- 0.09435953944921494
- ]
- ]
- ],
- [
- [
- [
- 0.0668959841132164
- ]
- ]
- ],
- [
- [
- [
- 0.08068779110908508
- ]
- ]
- ],
- [
- [
- [
- 0.08070873469114304
- ]
- ]
- ],
- [
- [
- [
- 0.07939345389604568
- ]
- ]
- ],
- [
- [
- [
- 0.15484188497066498
- ]
- ]
- ],
- [
- [
- [
- 0.0919148251414299
- ]
- ]
- ],
- [
- [
- [
- 0.07471802830696106
- ]
- ]
- ],
- [
- [
- [
- 0.08610639721155167
- ]
- ]
- ],
- [
- [
- [
- 0.07699315994977951
- ]
- ]
- ],
- [
- [
- [
- 0.08712373673915863
- ]
- ]
- ],
- [
- [
- [
- 0.04791928455233574
- ]
- ]
- ],
- [
- [
- [
- 0.08226808160543442
- ]
- ]
- ],
- [
- [
- [
- 0.0632556900382042
- ]
- ]
- ],
- [
- [
- [
- 0.1262573003768921
- ]
- ]
- ],
- [
- [
- [
- 0.10595264285802841
- ]
- ]
- ],
- [
- [
- [
- 0.07297582179307938
- ]
- ]
- ],
- [
- [
- [
- 0.09953981637954712
- ]
- ]
- ],
- [
- [
- [
- 0.08194190263748169
- ]
- ]
- ],
- [
- [
- [
- 0.07714556902647018
- ]
- ]
- ],
- [
- [
- [
- 0.12346109747886658
- ]
- ]
- ],
- [
- [
- [
- 0.06130913645029068
- ]
- ]
- ],
- [
- [
- [
- 0.09535396099090576
- ]
- ]
- ],
- [
- [
- [
- 0.1122744008898735
- ]
- ]
- ],
- [
- [
- [
- 0.1003168523311615
- ]
- ]
- ],
- [
- [
- [
- 0.08037327975034714
- ]
- ]
- ],
- [
- [
- [
- 0.06776654720306396
- ]
- ]
- ],
- [
- [
- [
- 0.0879741758108139
- ]
- ]
- ],
- [
- [
- [
- 0.06921051442623138
- ]
- ]
- ],
- [
- [
- [
- 0.06913849711418152
- ]
- ]
- ],
- [
- [
- [
- 0.07223470509052277
- ]
- ]
- ],
- [
- [
- [
- 0.07350557297468185
- ]
- ]
- ],
- [
- [
- [
- 0.07994816452264786
- ]
- ]
- ],
- [
- [
- [
- 0.07081999629735947
- ]
- ]
- ],
- [
- [
- [
- 0.08315808326005936
- ]
- ]
- ],
- [
- [
- [
- 0.09268578141927719
- ]
- ]
- ],
- [
- [
- [
- 0.12025230377912521
- ]
- ]
- ],
- [
- [
- [
- 0.06363484263420105
- ]
- ]
- ],
- [
- [
- [
- 0.0522334985435009
- ]
- ]
- ],
- [
- [
- [
- 0.04518759995698929
- ]
- ]
- ],
- [
- [
- [
- 0.10059089213609695
- ]
- ]
- ],
- [
- [
- [
- 0.1013714149594307
- ]
- ]
- ],
- [
- [
- [
- 0.06423552334308624
- ]
- ]
- ],
- [
- [
- [
- 0.09093166142702103
- ]
- ]
- ],
- [
- [
- [
- 0.08673609793186188
- ]
- ]
- ],
- [
- [
- [
- 0.07875305414199829
- ]
- ]
- ],
- [
- [
- [
- 0.03263058885931969
- ]
- ]
- ],
- [
- [
- [
- 0.11134500801563263
- ]
- ]
- ],
- [
- [
- [
- 0.05054020136594772
- ]
- ]
- ],
- [
- [
- [
- 0.07523494213819504
- ]
- ]
- ],
- [
- [
- [
- 0.07799956947565079
- ]
- ]
- ],
- [
- [
- [
- 0.12234081327915192
- ]
- ]
- ],
- [
- [
- [
- 0.06707817316055298
- ]
- ]
- ],
- [
- [
- [
- 0.09497781097888947
- ]
- ]
- ],
- [
- [
- [
- 0.0788748487830162
- ]
- ]
- ],
- [
- [
- [
- 0.07790723443031311
- ]
- ]
- ],
- [
- [
- [
- 0.07760436832904816
- ]
- ]
- ],
- [
- [
- [
- 0.0807025209069252
- ]
- ]
- ],
- [
- [
- [
- 0.0785837173461914
- ]
- ]
- ],
- [
- [
- [
- 0.089628204703331
- ]
- ]
- ],
- [
- [
- [
- 0.0907866582274437
- ]
- ]
- ],
- [
- [
- [
- 0.08295813947916031
- ]
- ]
- ],
- [
- [
- [
- 0.06879930198192596
- ]
- ]
- ],
- [
- [
- [
- 0.08176907151937485
- ]
- ]
- ],
- [
- [
- [
- 0.05675710365176201
- ]
- ]
- ],
- [
- [
- [
- 0.08753447979688644
- ]
- ]
- ],
- [
- [
- [
- 0.07372986525297165
- ]
- ]
- ]
- ]
- },
- "/features/features.15/Add/fq_output_0": {
- "input_low": -13.495004653930664,
- "input_high": 15.422863006591797,
- "output_low": -13.495004653930664,
- "output_high": 15.422863006591797
- },
- "/features/features.15/conv/conv.2/Conv/fq_output_0": {
- "input_low": -6.464322090148926,
- "input_high": 8.941305160522461,
- "output_low": -6.464322090148926,
- "output_high": 8.941305160522461
- },
- "/features/features.15/conv/conv.2/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.26894694566726685
- ]
- ]
- ],
- [
- [
- [
- -0.22431610524654388
- ]
- ]
- ],
- [
- [
- [
- -0.21599145233631134
- ]
- ]
- ],
- [
- [
- [
- -0.22975090146064758
- ]
- ]
- ],
- [
- [
- [
- -0.17378602921962738
- ]
- ]
- ],
- [
- [
- [
- -0.20014448463916779
- ]
- ]
- ],
- [
- [
- [
- -0.17330369353294373
- ]
- ]
- ],
- [
- [
- [
- -0.28834882378578186
- ]
- ]
- ],
- [
- [
- [
- -0.21001791954040527
- ]
- ]
- ],
- [
- [
- [
- -0.15846234560012817
- ]
- ]
- ],
- [
- [
- [
- -0.22704671323299408
- ]
- ]
- ],
- [
- [
- [
- -0.23082587122917175
- ]
- ]
- ],
- [
- [
- [
- -0.19112375378608704
- ]
- ]
- ],
- [
- [
- [
- -0.20636604726314545
- ]
- ]
- ],
- [
- [
- [
- -0.2087719887495041
- ]
- ]
- ],
- [
- [
- [
- -0.1569245159626007
- ]
- ]
- ],
- [
- [
- [
- -0.22470349073410034
- ]
- ]
- ],
- [
- [
- [
- -0.18139466643333435
- ]
- ]
- ],
- [
- [
- [
- -0.21851088106632233
- ]
- ]
- ],
- [
- [
- [
- -0.21737180650234222
- ]
- ]
- ],
- [
- [
- [
- -0.21208682656288147
- ]
- ]
- ],
- [
- [
- [
- -0.29876700043678284
- ]
- ]
- ],
- [
- [
- [
- -0.19564755260944366
- ]
- ]
- ],
- [
- [
- [
- -0.2676432728767395
- ]
- ]
- ],
- [
- [
- [
- -0.23455168306827545
- ]
- ]
- ],
- [
- [
- [
- -0.23158280551433563
- ]
- ]
- ],
- [
- [
- [
- -0.21085023880004883
- ]
- ]
- ],
- [
- [
- [
- -0.17497819662094116
- ]
- ]
- ],
- [
- [
- [
- -0.19968391954898834
- ]
- ]
- ],
- [
- [
- [
- -0.2531997859477997
- ]
- ]
- ],
- [
- [
- [
- -0.2145652323961258
- ]
- ]
- ],
- [
- [
- [
- -0.21820999681949615
- ]
- ]
- ],
- [
- [
- [
- -0.1771082580089569
- ]
- ]
- ],
- [
- [
- [
- -0.2192886620759964
- ]
- ]
- ],
- [
- [
- [
- -0.1845196634531021
- ]
- ]
- ],
- [
- [
- [
- -0.19787615537643433
- ]
- ]
- ],
- [
- [
- [
- -0.1914428025484085
- ]
- ]
- ],
- [
- [
- [
- -0.18495972454547882
- ]
- ]
- ],
- [
- [
- [
- -0.2095395177602768
- ]
- ]
- ],
- [
- [
- [
- -0.17454247176647186
- ]
- ]
- ],
- [
- [
- [
- -0.1990477442741394
- ]
- ]
- ],
- [
- [
- [
- -0.19265879690647125
- ]
- ]
- ],
- [
- [
- [
- -0.2515732944011688
- ]
- ]
- ],
- [
- [
- [
- -0.17888806760311127
- ]
- ]
- ],
- [
- [
- [
- -0.18753384053707123
- ]
- ]
- ],
- [
- [
- [
- -0.19606561958789825
- ]
- ]
- ],
- [
- [
- [
- -0.18074506521224976
- ]
- ]
- ],
- [
- [
- [
- -0.19022755324840546
- ]
- ]
- ],
- [
- [
- [
- -0.24179697036743164
- ]
- ]
- ],
- [
- [
- [
- -0.2184751033782959
- ]
- ]
- ],
- [
- [
- [
- -0.2432471364736557
- ]
- ]
- ],
- [
- [
- [
- -0.23684841394424438
- ]
- ]
- ],
- [
- [
- [
- -0.2611694037914276
- ]
- ]
- ],
- [
- [
- [
- -0.18371932208538055
- ]
- ]
- ],
- [
- [
- [
- -0.19837959110736847
- ]
- ]
- ],
- [
- [
- [
- -0.26112815737724304
- ]
- ]
- ],
- [
- [
- [
- -0.22573944926261902
- ]
- ]
- ],
- [
- [
- [
- -0.19981533288955688
- ]
- ]
- ],
- [
- [
- [
- -0.20258300006389618
- ]
- ]
- ],
- [
- [
- [
- -0.24848903715610504
- ]
- ]
- ],
- [
- [
- [
- -0.2002248764038086
- ]
- ]
- ],
- [
- [
- [
- -0.1763160228729248
- ]
- ]
- ],
- [
- [
- [
- -0.17444320023059845
- ]
- ]
- ],
- [
- [
- [
- -0.19489426910877228
- ]
- ]
- ],
- [
- [
- [
- -0.19359351694583893
- ]
- ]
- ],
- [
- [
- [
- -0.19568629562854767
- ]
- ]
- ],
- [
- [
- [
- -0.22565871477127075
- ]
- ]
- ],
- [
- [
- [
- -0.22727687656879425
- ]
- ]
- ],
- [
- [
- [
- -0.30907854437828064
- ]
- ]
- ],
- [
- [
- [
- -0.21209830045700073
- ]
- ]
- ],
- [
- [
- [
- -0.22526293992996216
- ]
- ]
- ],
- [
- [
- [
- -0.19378051161766052
- ]
- ]
- ],
- [
- [
- [
- -0.18817834556102753
- ]
- ]
- ],
- [
- [
- [
- -0.19146518409252167
- ]
- ]
- ],
- [
- [
- [
- -0.24762378633022308
- ]
- ]
- ],
- [
- [
- [
- -0.18384848535060883
- ]
- ]
- ],
- [
- [
- [
- -0.2200237512588501
- ]
- ]
- ],
- [
- [
- [
- -0.2966024577617645
- ]
- ]
- ],
- [
- [
- [
- -0.26573944091796875
- ]
- ]
- ],
- [
- [
- [
- -0.23135095834732056
- ]
- ]
- ],
- [
- [
- [
- -0.2221256047487259
- ]
- ]
- ],
- [
- [
- [
- -0.18400050699710846
- ]
- ]
- ],
- [
- [
- [
- -0.24393455684185028
- ]
- ]
- ],
- [
- [
- [
- -0.18729402124881744
- ]
- ]
- ],
- [
- [
- [
- -0.20936505496501923
- ]
- ]
- ],
- [
- [
- [
- -0.22172094881534576
- ]
- ]
- ],
- [
- [
- [
- -0.13880294561386108
- ]
- ]
- ],
- [
- [
- [
- -0.22695708274841309
- ]
- ]
- ],
- [
- [
- [
- -0.22270408272743225
- ]
- ]
- ],
- [
- [
- [
- -0.21608571708202362
- ]
- ]
- ],
- [
- [
- [
- -0.2502720057964325
- ]
- ]
- ],
- [
- [
- [
- -0.20919917523860931
- ]
- ]
- ],
- [
- [
- [
- -0.17111042141914368
- ]
- ]
- ],
- [
- [
- [
- -0.2475133240222931
- ]
- ]
- ],
- [
- [
- [
- -0.2750038206577301
- ]
- ]
- ],
- [
- [
- [
- -0.1820511370897293
- ]
- ]
- ],
- [
- [
- [
- -0.1825033277273178
- ]
- ]
- ],
- [
- [
- [
- -0.19493836164474487
- ]
- ]
- ],
- [
- [
- [
- -0.25166189670562744
- ]
- ]
- ],
- [
- [
- [
- -0.2031511664390564
- ]
- ]
- ],
- [
- [
- [
- -0.19303488731384277
- ]
- ]
- ],
- [
- [
- [
- -0.17958486080169678
- ]
- ]
- ],
- [
- [
- [
- -0.18742996454238892
- ]
- ]
- ],
- [
- [
- [
- -0.2095913141965866
- ]
- ]
- ],
- [
- [
- [
- -0.2197379618883133
- ]
- ]
- ],
- [
- [
- [
- -0.25731024146080017
- ]
- ]
- ],
- [
- [
- [
- -0.18461874127388
- ]
- ]
- ],
- [
- [
- [
- -0.19373518228530884
- ]
- ]
- ],
- [
- [
- [
- -0.19810396432876587
- ]
- ]
- ],
- [
- [
- [
- -0.24454858899116516
- ]
- ]
- ],
- [
- [
- [
- -0.15973490476608276
- ]
- ]
- ],
- [
- [
- [
- -0.3080699145793915
- ]
- ]
- ],
- [
- [
- [
- -0.2631000578403473
- ]
- ]
- ],
- [
- [
- [
- -0.19559736549854279
- ]
- ]
- ],
- [
- [
- [
- -0.20713144540786743
- ]
- ]
- ],
- [
- [
- [
- -0.20004059374332428
- ]
- ]
- ],
- [
- [
- [
- -0.17699550092220306
- ]
- ]
- ],
- [
- [
- [
- -0.1805584579706192
- ]
- ]
- ],
- [
- [
- [
- -0.27478647232055664
- ]
- ]
- ],
- [
- [
- [
- -0.2053779661655426
- ]
- ]
- ],
- [
- [
- [
- -0.16364648938179016
- ]
- ]
- ],
- [
- [
- [
- -0.1723320037126541
- ]
- ]
- ],
- [
- [
- [
- -0.19884051382541656
- ]
- ]
- ],
- [
- [
- [
- -0.20889589190483093
- ]
- ]
- ],
- [
- [
- [
- -0.2759813070297241
- ]
- ]
- ],
- [
- [
- [
- -0.2674335241317749
- ]
- ]
- ],
- [
- [
- [
- -0.23774978518486023
- ]
- ]
- ],
- [
- [
- [
- -0.18863724172115326
- ]
- ]
- ],
- [
- [
- [
- -0.16541315615177155
- ]
- ]
- ],
- [
- [
- [
- -0.19270719587802887
- ]
- ]
- ],
- [
- [
- [
- -0.21903260052204132
- ]
- ]
- ],
- [
- [
- [
- -0.2107946127653122
- ]
- ]
- ],
- [
- [
- [
- -0.18624751269817352
- ]
- ]
- ],
- [
- [
- [
- -0.16595236957073212
- ]
- ]
- ],
- [
- [
- [
- -0.18000708520412445
- ]
- ]
- ],
- [
- [
- [
- -0.23410151898860931
- ]
- ]
- ],
- [
- [
- [
- -0.1666702926158905
- ]
- ]
- ],
- [
- [
- [
- -0.2029309868812561
- ]
- ]
- ],
- [
- [
- [
- -0.18647678196430206
- ]
- ]
- ],
- [
- [
- [
- -0.20264014601707458
- ]
- ]
- ],
- [
- [
- [
- -0.21181143820285797
- ]
- ]
- ],
- [
- [
- [
- -0.18451803922653198
- ]
- ]
- ],
- [
- [
- [
- -0.1946115642786026
- ]
- ]
- ],
- [
- [
- [
- -0.20825126767158508
- ]
- ]
- ],
- [
- [
- [
- -0.23451000452041626
- ]
- ]
- ],
- [
- [
- [
- -0.20898711681365967
- ]
- ]
- ],
- [
- [
- [
- -0.24683904647827148
- ]
- ]
- ],
- [
- [
- [
- -0.1926376223564148
- ]
- ]
- ],
- [
- [
- [
- -0.21006067097187042
- ]
- ]
- ],
- [
- [
- [
- -0.22443760931491852
- ]
- ]
- ],
- [
- [
- [
- -0.1884240061044693
- ]
- ]
- ],
- [
- [
- [
- -0.23755092918872833
- ]
- ]
- ],
- [
- [
- [
- -0.20905692875385284
- ]
- ]
- ],
- [
- [
- [
- -0.2127387523651123
- ]
- ]
- ],
- [
- [
- [
- -0.28653469681739807
- ]
- ]
- ],
- [
- [
- [
- -0.3269575536251068
- ]
- ]
- ],
- [
- [
- [
- -0.2289617657661438
- ]
- ]
- ],
- [
- [
- [
- -0.22106687724590302
- ]
- ]
- ],
- [
- [
- [
- -0.19060908257961273
- ]
- ]
- ],
- [
- [
- [
- -0.18493016064167023
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.26894694566726685
- ]
- ]
- ],
- [
- [
- [
- 0.22431610524654388
- ]
- ]
- ],
- [
- [
- [
- 0.21599145233631134
- ]
- ]
- ],
- [
- [
- [
- 0.22975090146064758
- ]
- ]
- ],
- [
- [
- [
- 0.17378602921962738
- ]
- ]
- ],
- [
- [
- [
- 0.20014448463916779
- ]
- ]
- ],
- [
- [
- [
- 0.17330369353294373
- ]
- ]
- ],
- [
- [
- [
- 0.28834882378578186
- ]
- ]
- ],
- [
- [
- [
- 0.21001791954040527
- ]
- ]
- ],
- [
- [
- [
- 0.15846234560012817
- ]
- ]
- ],
- [
- [
- [
- 0.22704671323299408
- ]
- ]
- ],
- [
- [
- [
- 0.23082587122917175
- ]
- ]
- ],
- [
- [
- [
- 0.19112375378608704
- ]
- ]
- ],
- [
- [
- [
- 0.20636604726314545
- ]
- ]
- ],
- [
- [
- [
- 0.2087719887495041
- ]
- ]
- ],
- [
- [
- [
- 0.1569245159626007
- ]
- ]
- ],
- [
- [
- [
- 0.22470349073410034
- ]
- ]
- ],
- [
- [
- [
- 0.18139466643333435
- ]
- ]
- ],
- [
- [
- [
- 0.21851088106632233
- ]
- ]
- ],
- [
- [
- [
- 0.21737180650234222
- ]
- ]
- ],
- [
- [
- [
- 0.21208682656288147
- ]
- ]
- ],
- [
- [
- [
- 0.29876700043678284
- ]
- ]
- ],
- [
- [
- [
- 0.19564755260944366
- ]
- ]
- ],
- [
- [
- [
- 0.2676432728767395
- ]
- ]
- ],
- [
- [
- [
- 0.23455168306827545
- ]
- ]
- ],
- [
- [
- [
- 0.23158280551433563
- ]
- ]
- ],
- [
- [
- [
- 0.21085023880004883
- ]
- ]
- ],
- [
- [
- [
- 0.17497819662094116
- ]
- ]
- ],
- [
- [
- [
- 0.19968391954898834
- ]
- ]
- ],
- [
- [
- [
- 0.2531997859477997
- ]
- ]
- ],
- [
- [
- [
- 0.2145652323961258
- ]
- ]
- ],
- [
- [
- [
- 0.21820999681949615
- ]
- ]
- ],
- [
- [
- [
- 0.1771082580089569
- ]
- ]
- ],
- [
- [
- [
- 0.2192886620759964
- ]
- ]
- ],
- [
- [
- [
- 0.1845196634531021
- ]
- ]
- ],
- [
- [
- [
- 0.19787615537643433
- ]
- ]
- ],
- [
- [
- [
- 0.1914428025484085
- ]
- ]
- ],
- [
- [
- [
- 0.18495972454547882
- ]
- ]
- ],
- [
- [
- [
- 0.2095395177602768
- ]
- ]
- ],
- [
- [
- [
- 0.17454247176647186
- ]
- ]
- ],
- [
- [
- [
- 0.1990477442741394
- ]
- ]
- ],
- [
- [
- [
- 0.19265879690647125
- ]
- ]
- ],
- [
- [
- [
- 0.2515732944011688
- ]
- ]
- ],
- [
- [
- [
- 0.17888806760311127
- ]
- ]
- ],
- [
- [
- [
- 0.18753384053707123
- ]
- ]
- ],
- [
- [
- [
- 0.19606561958789825
- ]
- ]
- ],
- [
- [
- [
- 0.18074506521224976
- ]
- ]
- ],
- [
- [
- [
- 0.19022755324840546
- ]
- ]
- ],
- [
- [
- [
- 0.24179697036743164
- ]
- ]
- ],
- [
- [
- [
- 0.2184751033782959
- ]
- ]
- ],
- [
- [
- [
- 0.2432471364736557
- ]
- ]
- ],
- [
- [
- [
- 0.23684841394424438
- ]
- ]
- ],
- [
- [
- [
- 0.2611694037914276
- ]
- ]
- ],
- [
- [
- [
- 0.18371932208538055
- ]
- ]
- ],
- [
- [
- [
- 0.19837959110736847
- ]
- ]
- ],
- [
- [
- [
- 0.26112815737724304
- ]
- ]
- ],
- [
- [
- [
- 0.22573944926261902
- ]
- ]
- ],
- [
- [
- [
- 0.19981533288955688
- ]
- ]
- ],
- [
- [
- [
- 0.20258300006389618
- ]
- ]
- ],
- [
- [
- [
- 0.24848903715610504
- ]
- ]
- ],
- [
- [
- [
- 0.2002248764038086
- ]
- ]
- ],
- [
- [
- [
- 0.1763160228729248
- ]
- ]
- ],
- [
- [
- [
- 0.17444320023059845
- ]
- ]
- ],
- [
- [
- [
- 0.19489426910877228
- ]
- ]
- ],
- [
- [
- [
- 0.19359351694583893
- ]
- ]
- ],
- [
- [
- [
- 0.19568629562854767
- ]
- ]
- ],
- [
- [
- [
- 0.22565871477127075
- ]
- ]
- ],
- [
- [
- [
- 0.22727687656879425
- ]
- ]
- ],
- [
- [
- [
- 0.30907854437828064
- ]
- ]
- ],
- [
- [
- [
- 0.21209830045700073
- ]
- ]
- ],
- [
- [
- [
- 0.22526293992996216
- ]
- ]
- ],
- [
- [
- [
- 0.19378051161766052
- ]
- ]
- ],
- [
- [
- [
- 0.18817834556102753
- ]
- ]
- ],
- [
- [
- [
- 0.19146518409252167
- ]
- ]
- ],
- [
- [
- [
- 0.24762378633022308
- ]
- ]
- ],
- [
- [
- [
- 0.18384848535060883
- ]
- ]
- ],
- [
- [
- [
- 0.2200237512588501
- ]
- ]
- ],
- [
- [
- [
- 0.2966024577617645
- ]
- ]
- ],
- [
- [
- [
- 0.26573944091796875
- ]
- ]
- ],
- [
- [
- [
- 0.23135095834732056
- ]
- ]
- ],
- [
- [
- [
- 0.2221256047487259
- ]
- ]
- ],
- [
- [
- [
- 0.18400050699710846
- ]
- ]
- ],
- [
- [
- [
- 0.24393455684185028
- ]
- ]
- ],
- [
- [
- [
- 0.18729402124881744
- ]
- ]
- ],
- [
- [
- [
- 0.20936505496501923
- ]
- ]
- ],
- [
- [
- [
- 0.22172094881534576
- ]
- ]
- ],
- [
- [
- [
- 0.13880294561386108
- ]
- ]
- ],
- [
- [
- [
- 0.22695708274841309
- ]
- ]
- ],
- [
- [
- [
- 0.22270408272743225
- ]
- ]
- ],
- [
- [
- [
- 0.21608571708202362
- ]
- ]
- ],
- [
- [
- [
- 0.2502720057964325
- ]
- ]
- ],
- [
- [
- [
- 0.20919917523860931
- ]
- ]
- ],
- [
- [
- [
- 0.17111042141914368
- ]
- ]
- ],
- [
- [
- [
- 0.2475133240222931
- ]
- ]
- ],
- [
- [
- [
- 0.2750038206577301
- ]
- ]
- ],
- [
- [
- [
- 0.1820511370897293
- ]
- ]
- ],
- [
- [
- [
- 0.1825033277273178
- ]
- ]
- ],
- [
- [
- [
- 0.19493836164474487
- ]
- ]
- ],
- [
- [
- [
- 0.25166189670562744
- ]
- ]
- ],
- [
- [
- [
- 0.2031511664390564
- ]
- ]
- ],
- [
- [
- [
- 0.19303488731384277
- ]
- ]
- ],
- [
- [
- [
- 0.17958486080169678
- ]
- ]
- ],
- [
- [
- [
- 0.18742996454238892
- ]
- ]
- ],
- [
- [
- [
- 0.2095913141965866
- ]
- ]
- ],
- [
- [
- [
- 0.2197379618883133
- ]
- ]
- ],
- [
- [
- [
- 0.25731024146080017
- ]
- ]
- ],
- [
- [
- [
- 0.18461874127388
- ]
- ]
- ],
- [
- [
- [
- 0.19373518228530884
- ]
- ]
- ],
- [
- [
- [
- 0.19810396432876587
- ]
- ]
- ],
- [
- [
- [
- 0.24454858899116516
- ]
- ]
- ],
- [
- [
- [
- 0.15973490476608276
- ]
- ]
- ],
- [
- [
- [
- 0.3080699145793915
- ]
- ]
- ],
- [
- [
- [
- 0.2631000578403473
- ]
- ]
- ],
- [
- [
- [
- 0.19559736549854279
- ]
- ]
- ],
- [
- [
- [
- 0.20713144540786743
- ]
- ]
- ],
- [
- [
- [
- 0.20004059374332428
- ]
- ]
- ],
- [
- [
- [
- 0.17699550092220306
- ]
- ]
- ],
- [
- [
- [
- 0.1805584579706192
- ]
- ]
- ],
- [
- [
- [
- 0.27478647232055664
- ]
- ]
- ],
- [
- [
- [
- 0.2053779661655426
- ]
- ]
- ],
- [
- [
- [
- 0.16364648938179016
- ]
- ]
- ],
- [
- [
- [
- 0.1723320037126541
- ]
- ]
- ],
- [
- [
- [
- 0.19884051382541656
- ]
- ]
- ],
- [
- [
- [
- 0.20889589190483093
- ]
- ]
- ],
- [
- [
- [
- 0.2759813070297241
- ]
- ]
- ],
- [
- [
- [
- 0.2674335241317749
- ]
- ]
- ],
- [
- [
- [
- 0.23774978518486023
- ]
- ]
- ],
- [
- [
- [
- 0.18863724172115326
- ]
- ]
- ],
- [
- [
- [
- 0.16541315615177155
- ]
- ]
- ],
- [
- [
- [
- 0.19270719587802887
- ]
- ]
- ],
- [
- [
- [
- 0.21903260052204132
- ]
- ]
- ],
- [
- [
- [
- 0.2107946127653122
- ]
- ]
- ],
- [
- [
- [
- 0.18624751269817352
- ]
- ]
- ],
- [
- [
- [
- 0.16595236957073212
- ]
- ]
- ],
- [
- [
- [
- 0.18000708520412445
- ]
- ]
- ],
- [
- [
- [
- 0.23410151898860931
- ]
- ]
- ],
- [
- [
- [
- 0.1666702926158905
- ]
- ]
- ],
- [
- [
- [
- 0.2029309868812561
- ]
- ]
- ],
- [
- [
- [
- 0.18647678196430206
- ]
- ]
- ],
- [
- [
- [
- 0.20264014601707458
- ]
- ]
- ],
- [
- [
- [
- 0.21181143820285797
- ]
- ]
- ],
- [
- [
- [
- 0.18451803922653198
- ]
- ]
- ],
- [
- [
- [
- 0.1946115642786026
- ]
- ]
- ],
- [
- [
- [
- 0.20825126767158508
- ]
- ]
- ],
- [
- [
- [
- 0.23451000452041626
- ]
- ]
- ],
- [
- [
- [
- 0.20898711681365967
- ]
- ]
- ],
- [
- [
- [
- 0.24683904647827148
- ]
- ]
- ],
- [
- [
- [
- 0.1926376223564148
- ]
- ]
- ],
- [
- [
- [
- 0.21006067097187042
- ]
- ]
- ],
- [
- [
- [
- 0.22443760931491852
- ]
- ]
- ],
- [
- [
- [
- 0.1884240061044693
- ]
- ]
- ],
- [
- [
- [
- 0.23755092918872833
- ]
- ]
- ],
- [
- [
- [
- 0.20905692875385284
- ]
- ]
- ],
- [
- [
- [
- 0.2127387523651123
- ]
- ]
- ],
- [
- [
- [
- 0.28653469681739807
- ]
- ]
- ],
- [
- [
- [
- 0.3269575536251068
- ]
- ]
- ],
- [
- [
- [
- 0.2289617657661438
- ]
- ]
- ],
- [
- [
- [
- 0.22106687724590302
- ]
- ]
- ],
- [
- [
- [
- 0.19060908257961273
- ]
- ]
- ],
- [
- [
- [
- 0.18493016064167023
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.26894694566726685
- ]
- ]
- ],
- [
- [
- [
- -0.22431610524654388
- ]
- ]
- ],
- [
- [
- [
- -0.21599145233631134
- ]
- ]
- ],
- [
- [
- [
- -0.22975090146064758
- ]
- ]
- ],
- [
- [
- [
- -0.17378602921962738
- ]
- ]
- ],
- [
- [
- [
- -0.20014448463916779
- ]
- ]
- ],
- [
- [
- [
- -0.17330369353294373
- ]
- ]
- ],
- [
- [
- [
- -0.28834882378578186
- ]
- ]
- ],
- [
- [
- [
- -0.21001791954040527
- ]
- ]
- ],
- [
- [
- [
- -0.15846234560012817
- ]
- ]
- ],
- [
- [
- [
- -0.22704671323299408
- ]
- ]
- ],
- [
- [
- [
- -0.23082587122917175
- ]
- ]
- ],
- [
- [
- [
- -0.19112375378608704
- ]
- ]
- ],
- [
- [
- [
- -0.20636604726314545
- ]
- ]
- ],
- [
- [
- [
- -0.2087719887495041
- ]
- ]
- ],
- [
- [
- [
- -0.1569245159626007
- ]
- ]
- ],
- [
- [
- [
- -0.22470349073410034
- ]
- ]
- ],
- [
- [
- [
- -0.18139466643333435
- ]
- ]
- ],
- [
- [
- [
- -0.21851088106632233
- ]
- ]
- ],
- [
- [
- [
- -0.21737180650234222
- ]
- ]
- ],
- [
- [
- [
- -0.21208682656288147
- ]
- ]
- ],
- [
- [
- [
- -0.29876700043678284
- ]
- ]
- ],
- [
- [
- [
- -0.19564755260944366
- ]
- ]
- ],
- [
- [
- [
- -0.2676432728767395
- ]
- ]
- ],
- [
- [
- [
- -0.23455168306827545
- ]
- ]
- ],
- [
- [
- [
- -0.23158280551433563
- ]
- ]
- ],
- [
- [
- [
- -0.21085023880004883
- ]
- ]
- ],
- [
- [
- [
- -0.17497819662094116
- ]
- ]
- ],
- [
- [
- [
- -0.19968391954898834
- ]
- ]
- ],
- [
- [
- [
- -0.2531997859477997
- ]
- ]
- ],
- [
- [
- [
- -0.2145652323961258
- ]
- ]
- ],
- [
- [
- [
- -0.21820999681949615
- ]
- ]
- ],
- [
- [
- [
- -0.1771082580089569
- ]
- ]
- ],
- [
- [
- [
- -0.2192886620759964
- ]
- ]
- ],
- [
- [
- [
- -0.1845196634531021
- ]
- ]
- ],
- [
- [
- [
- -0.19787615537643433
- ]
- ]
- ],
- [
- [
- [
- -0.1914428025484085
- ]
- ]
- ],
- [
- [
- [
- -0.18495972454547882
- ]
- ]
- ],
- [
- [
- [
- -0.2095395177602768
- ]
- ]
- ],
- [
- [
- [
- -0.17454247176647186
- ]
- ]
- ],
- [
- [
- [
- -0.1990477442741394
- ]
- ]
- ],
- [
- [
- [
- -0.19265879690647125
- ]
- ]
- ],
- [
- [
- [
- -0.2515732944011688
- ]
- ]
- ],
- [
- [
- [
- -0.17888806760311127
- ]
- ]
- ],
- [
- [
- [
- -0.18753384053707123
- ]
- ]
- ],
- [
- [
- [
- -0.19606561958789825
- ]
- ]
- ],
- [
- [
- [
- -0.18074506521224976
- ]
- ]
- ],
- [
- [
- [
- -0.19022755324840546
- ]
- ]
- ],
- [
- [
- [
- -0.24179697036743164
- ]
- ]
- ],
- [
- [
- [
- -0.2184751033782959
- ]
- ]
- ],
- [
- [
- [
- -0.2432471364736557
- ]
- ]
- ],
- [
- [
- [
- -0.23684841394424438
- ]
- ]
- ],
- [
- [
- [
- -0.2611694037914276
- ]
- ]
- ],
- [
- [
- [
- -0.18371932208538055
- ]
- ]
- ],
- [
- [
- [
- -0.19837959110736847
- ]
- ]
- ],
- [
- [
- [
- -0.26112815737724304
- ]
- ]
- ],
- [
- [
- [
- -0.22573944926261902
- ]
- ]
- ],
- [
- [
- [
- -0.19981533288955688
- ]
- ]
- ],
- [
- [
- [
- -0.20258300006389618
- ]
- ]
- ],
- [
- [
- [
- -0.24848903715610504
- ]
- ]
- ],
- [
- [
- [
- -0.2002248764038086
- ]
- ]
- ],
- [
- [
- [
- -0.1763160228729248
- ]
- ]
- ],
- [
- [
- [
- -0.17444320023059845
- ]
- ]
- ],
- [
- [
- [
- -0.19489426910877228
- ]
- ]
- ],
- [
- [
- [
- -0.19359351694583893
- ]
- ]
- ],
- [
- [
- [
- -0.19568629562854767
- ]
- ]
- ],
- [
- [
- [
- -0.22565871477127075
- ]
- ]
- ],
- [
- [
- [
- -0.22727687656879425
- ]
- ]
- ],
- [
- [
- [
- -0.30907854437828064
- ]
- ]
- ],
- [
- [
- [
- -0.21209830045700073
- ]
- ]
- ],
- [
- [
- [
- -0.22526293992996216
- ]
- ]
- ],
- [
- [
- [
- -0.19378051161766052
- ]
- ]
- ],
- [
- [
- [
- -0.18817834556102753
- ]
- ]
- ],
- [
- [
- [
- -0.19146518409252167
- ]
- ]
- ],
- [
- [
- [
- -0.24762378633022308
- ]
- ]
- ],
- [
- [
- [
- -0.18384848535060883
- ]
- ]
- ],
- [
- [
- [
- -0.2200237512588501
- ]
- ]
- ],
- [
- [
- [
- -0.2966024577617645
- ]
- ]
- ],
- [
- [
- [
- -0.26573944091796875
- ]
- ]
- ],
- [
- [
- [
- -0.23135095834732056
- ]
- ]
- ],
- [
- [
- [
- -0.2221256047487259
- ]
- ]
- ],
- [
- [
- [
- -0.18400050699710846
- ]
- ]
- ],
- [
- [
- [
- -0.24393455684185028
- ]
- ]
- ],
- [
- [
- [
- -0.18729402124881744
- ]
- ]
- ],
- [
- [
- [
- -0.20936505496501923
- ]
- ]
- ],
- [
- [
- [
- -0.22172094881534576
- ]
- ]
- ],
- [
- [
- [
- -0.13880294561386108
- ]
- ]
- ],
- [
- [
- [
- -0.22695708274841309
- ]
- ]
- ],
- [
- [
- [
- -0.22270408272743225
- ]
- ]
- ],
- [
- [
- [
- -0.21608571708202362
- ]
- ]
- ],
- [
- [
- [
- -0.2502720057964325
- ]
- ]
- ],
- [
- [
- [
- -0.20919917523860931
- ]
- ]
- ],
- [
- [
- [
- -0.17111042141914368
- ]
- ]
- ],
- [
- [
- [
- -0.2475133240222931
- ]
- ]
- ],
- [
- [
- [
- -0.2750038206577301
- ]
- ]
- ],
- [
- [
- [
- -0.1820511370897293
- ]
- ]
- ],
- [
- [
- [
- -0.1825033277273178
- ]
- ]
- ],
- [
- [
- [
- -0.19493836164474487
- ]
- ]
- ],
- [
- [
- [
- -0.25166189670562744
- ]
- ]
- ],
- [
- [
- [
- -0.2031511664390564
- ]
- ]
- ],
- [
- [
- [
- -0.19303488731384277
- ]
- ]
- ],
- [
- [
- [
- -0.17958486080169678
- ]
- ]
- ],
- [
- [
- [
- -0.18742996454238892
- ]
- ]
- ],
- [
- [
- [
- -0.2095913141965866
- ]
- ]
- ],
- [
- [
- [
- -0.2197379618883133
- ]
- ]
- ],
- [
- [
- [
- -0.25731024146080017
- ]
- ]
- ],
- [
- [
- [
- -0.18461874127388
- ]
- ]
- ],
- [
- [
- [
- -0.19373518228530884
- ]
- ]
- ],
- [
- [
- [
- -0.19810396432876587
- ]
- ]
- ],
- [
- [
- [
- -0.24454858899116516
- ]
- ]
- ],
- [
- [
- [
- -0.15973490476608276
- ]
- ]
- ],
- [
- [
- [
- -0.3080699145793915
- ]
- ]
- ],
- [
- [
- [
- -0.2631000578403473
- ]
- ]
- ],
- [
- [
- [
- -0.19559736549854279
- ]
- ]
- ],
- [
- [
- [
- -0.20713144540786743
- ]
- ]
- ],
- [
- [
- [
- -0.20004059374332428
- ]
- ]
- ],
- [
- [
- [
- -0.17699550092220306
- ]
- ]
- ],
- [
- [
- [
- -0.1805584579706192
- ]
- ]
- ],
- [
- [
- [
- -0.27478647232055664
- ]
- ]
- ],
- [
- [
- [
- -0.2053779661655426
- ]
- ]
- ],
- [
- [
- [
- -0.16364648938179016
- ]
- ]
- ],
- [
- [
- [
- -0.1723320037126541
- ]
- ]
- ],
- [
- [
- [
- -0.19884051382541656
- ]
- ]
- ],
- [
- [
- [
- -0.20889589190483093
- ]
- ]
- ],
- [
- [
- [
- -0.2759813070297241
- ]
- ]
- ],
- [
- [
- [
- -0.2674335241317749
- ]
- ]
- ],
- [
- [
- [
- -0.23774978518486023
- ]
- ]
- ],
- [
- [
- [
- -0.18863724172115326
- ]
- ]
- ],
- [
- [
- [
- -0.16541315615177155
- ]
- ]
- ],
- [
- [
- [
- -0.19270719587802887
- ]
- ]
- ],
- [
- [
- [
- -0.21903260052204132
- ]
- ]
- ],
- [
- [
- [
- -0.2107946127653122
- ]
- ]
- ],
- [
- [
- [
- -0.18624751269817352
- ]
- ]
- ],
- [
- [
- [
- -0.16595236957073212
- ]
- ]
- ],
- [
- [
- [
- -0.18000708520412445
- ]
- ]
- ],
- [
- [
- [
- -0.23410151898860931
- ]
- ]
- ],
- [
- [
- [
- -0.1666702926158905
- ]
- ]
- ],
- [
- [
- [
- -0.2029309868812561
- ]
- ]
- ],
- [
- [
- [
- -0.18647678196430206
- ]
- ]
- ],
- [
- [
- [
- -0.20264014601707458
- ]
- ]
- ],
- [
- [
- [
- -0.21181143820285797
- ]
- ]
- ],
- [
- [
- [
- -0.18451803922653198
- ]
- ]
- ],
- [
- [
- [
- -0.1946115642786026
- ]
- ]
- ],
- [
- [
- [
- -0.20825126767158508
- ]
- ]
- ],
- [
- [
- [
- -0.23451000452041626
- ]
- ]
- ],
- [
- [
- [
- -0.20898711681365967
- ]
- ]
- ],
- [
- [
- [
- -0.24683904647827148
- ]
- ]
- ],
- [
- [
- [
- -0.1926376223564148
- ]
- ]
- ],
- [
- [
- [
- -0.21006067097187042
- ]
- ]
- ],
- [
- [
- [
- -0.22443760931491852
- ]
- ]
- ],
- [
- [
- [
- -0.1884240061044693
- ]
- ]
- ],
- [
- [
- [
- -0.23755092918872833
- ]
- ]
- ],
- [
- [
- [
- -0.20905692875385284
- ]
- ]
- ],
- [
- [
- [
- -0.2127387523651123
- ]
- ]
- ],
- [
- [
- [
- -0.28653469681739807
- ]
- ]
- ],
- [
- [
- [
- -0.3269575536251068
- ]
- ]
- ],
- [
- [
- [
- -0.2289617657661438
- ]
- ]
- ],
- [
- [
- [
- -0.22106687724590302
- ]
- ]
- ],
- [
- [
- [
- -0.19060908257961273
- ]
- ]
- ],
- [
- [
- [
- -0.18493016064167023
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.26894694566726685
- ]
- ]
- ],
- [
- [
- [
- 0.22431610524654388
- ]
- ]
- ],
- [
- [
- [
- 0.21599145233631134
- ]
- ]
- ],
- [
- [
- [
- 0.22975090146064758
- ]
- ]
- ],
- [
- [
- [
- 0.17378602921962738
- ]
- ]
- ],
- [
- [
- [
- 0.20014448463916779
- ]
- ]
- ],
- [
- [
- [
- 0.17330369353294373
- ]
- ]
- ],
- [
- [
- [
- 0.28834882378578186
- ]
- ]
- ],
- [
- [
- [
- 0.21001791954040527
- ]
- ]
- ],
- [
- [
- [
- 0.15846234560012817
- ]
- ]
- ],
- [
- [
- [
- 0.22704671323299408
- ]
- ]
- ],
- [
- [
- [
- 0.23082587122917175
- ]
- ]
- ],
- [
- [
- [
- 0.19112375378608704
- ]
- ]
- ],
- [
- [
- [
- 0.20636604726314545
- ]
- ]
- ],
- [
- [
- [
- 0.2087719887495041
- ]
- ]
- ],
- [
- [
- [
- 0.1569245159626007
- ]
- ]
- ],
- [
- [
- [
- 0.22470349073410034
- ]
- ]
- ],
- [
- [
- [
- 0.18139466643333435
- ]
- ]
- ],
- [
- [
- [
- 0.21851088106632233
- ]
- ]
- ],
- [
- [
- [
- 0.21737180650234222
- ]
- ]
- ],
- [
- [
- [
- 0.21208682656288147
- ]
- ]
- ],
- [
- [
- [
- 0.29876700043678284
- ]
- ]
- ],
- [
- [
- [
- 0.19564755260944366
- ]
- ]
- ],
- [
- [
- [
- 0.2676432728767395
- ]
- ]
- ],
- [
- [
- [
- 0.23455168306827545
- ]
- ]
- ],
- [
- [
- [
- 0.23158280551433563
- ]
- ]
- ],
- [
- [
- [
- 0.21085023880004883
- ]
- ]
- ],
- [
- [
- [
- 0.17497819662094116
- ]
- ]
- ],
- [
- [
- [
- 0.19968391954898834
- ]
- ]
- ],
- [
- [
- [
- 0.2531997859477997
- ]
- ]
- ],
- [
- [
- [
- 0.2145652323961258
- ]
- ]
- ],
- [
- [
- [
- 0.21820999681949615
- ]
- ]
- ],
- [
- [
- [
- 0.1771082580089569
- ]
- ]
- ],
- [
- [
- [
- 0.2192886620759964
- ]
- ]
- ],
- [
- [
- [
- 0.1845196634531021
- ]
- ]
- ],
- [
- [
- [
- 0.19787615537643433
- ]
- ]
- ],
- [
- [
- [
- 0.1914428025484085
- ]
- ]
- ],
- [
- [
- [
- 0.18495972454547882
- ]
- ]
- ],
- [
- [
- [
- 0.2095395177602768
- ]
- ]
- ],
- [
- [
- [
- 0.17454247176647186
- ]
- ]
- ],
- [
- [
- [
- 0.1990477442741394
- ]
- ]
- ],
- [
- [
- [
- 0.19265879690647125
- ]
- ]
- ],
- [
- [
- [
- 0.2515732944011688
- ]
- ]
- ],
- [
- [
- [
- 0.17888806760311127
- ]
- ]
- ],
- [
- [
- [
- 0.18753384053707123
- ]
- ]
- ],
- [
- [
- [
- 0.19606561958789825
- ]
- ]
- ],
- [
- [
- [
- 0.18074506521224976
- ]
- ]
- ],
- [
- [
- [
- 0.19022755324840546
- ]
- ]
- ],
- [
- [
- [
- 0.24179697036743164
- ]
- ]
- ],
- [
- [
- [
- 0.2184751033782959
- ]
- ]
- ],
- [
- [
- [
- 0.2432471364736557
- ]
- ]
- ],
- [
- [
- [
- 0.23684841394424438
- ]
- ]
- ],
- [
- [
- [
- 0.2611694037914276
- ]
- ]
- ],
- [
- [
- [
- 0.18371932208538055
- ]
- ]
- ],
- [
- [
- [
- 0.19837959110736847
- ]
- ]
- ],
- [
- [
- [
- 0.26112815737724304
- ]
- ]
- ],
- [
- [
- [
- 0.22573944926261902
- ]
- ]
- ],
- [
- [
- [
- 0.19981533288955688
- ]
- ]
- ],
- [
- [
- [
- 0.20258300006389618
- ]
- ]
- ],
- [
- [
- [
- 0.24848903715610504
- ]
- ]
- ],
- [
- [
- [
- 0.2002248764038086
- ]
- ]
- ],
- [
- [
- [
- 0.1763160228729248
- ]
- ]
- ],
- [
- [
- [
- 0.17444320023059845
- ]
- ]
- ],
- [
- [
- [
- 0.19489426910877228
- ]
- ]
- ],
- [
- [
- [
- 0.19359351694583893
- ]
- ]
- ],
- [
- [
- [
- 0.19568629562854767
- ]
- ]
- ],
- [
- [
- [
- 0.22565871477127075
- ]
- ]
- ],
- [
- [
- [
- 0.22727687656879425
- ]
- ]
- ],
- [
- [
- [
- 0.30907854437828064
- ]
- ]
- ],
- [
- [
- [
- 0.21209830045700073
- ]
- ]
- ],
- [
- [
- [
- 0.22526293992996216
- ]
- ]
- ],
- [
- [
- [
- 0.19378051161766052
- ]
- ]
- ],
- [
- [
- [
- 0.18817834556102753
- ]
- ]
- ],
- [
- [
- [
- 0.19146518409252167
- ]
- ]
- ],
- [
- [
- [
- 0.24762378633022308
- ]
- ]
- ],
- [
- [
- [
- 0.18384848535060883
- ]
- ]
- ],
- [
- [
- [
- 0.2200237512588501
- ]
- ]
- ],
- [
- [
- [
- 0.2966024577617645
- ]
- ]
- ],
- [
- [
- [
- 0.26573944091796875
- ]
- ]
- ],
- [
- [
- [
- 0.23135095834732056
- ]
- ]
- ],
- [
- [
- [
- 0.2221256047487259
- ]
- ]
- ],
- [
- [
- [
- 0.18400050699710846
- ]
- ]
- ],
- [
- [
- [
- 0.24393455684185028
- ]
- ]
- ],
- [
- [
- [
- 0.18729402124881744
- ]
- ]
- ],
- [
- [
- [
- 0.20936505496501923
- ]
- ]
- ],
- [
- [
- [
- 0.22172094881534576
- ]
- ]
- ],
- [
- [
- [
- 0.13880294561386108
- ]
- ]
- ],
- [
- [
- [
- 0.22695708274841309
- ]
- ]
- ],
- [
- [
- [
- 0.22270408272743225
- ]
- ]
- ],
- [
- [
- [
- 0.21608571708202362
- ]
- ]
- ],
- [
- [
- [
- 0.2502720057964325
- ]
- ]
- ],
- [
- [
- [
- 0.20919917523860931
- ]
- ]
- ],
- [
- [
- [
- 0.17111042141914368
- ]
- ]
- ],
- [
- [
- [
- 0.2475133240222931
- ]
- ]
- ],
- [
- [
- [
- 0.2750038206577301
- ]
- ]
- ],
- [
- [
- [
- 0.1820511370897293
- ]
- ]
- ],
- [
- [
- [
- 0.1825033277273178
- ]
- ]
- ],
- [
- [
- [
- 0.19493836164474487
- ]
- ]
- ],
- [
- [
- [
- 0.25166189670562744
- ]
- ]
- ],
- [
- [
- [
- 0.2031511664390564
- ]
- ]
- ],
- [
- [
- [
- 0.19303488731384277
- ]
- ]
- ],
- [
- [
- [
- 0.17958486080169678
- ]
- ]
- ],
- [
- [
- [
- 0.18742996454238892
- ]
- ]
- ],
- [
- [
- [
- 0.2095913141965866
- ]
- ]
- ],
- [
- [
- [
- 0.2197379618883133
- ]
- ]
- ],
- [
- [
- [
- 0.25731024146080017
- ]
- ]
- ],
- [
- [
- [
- 0.18461874127388
- ]
- ]
- ],
- [
- [
- [
- 0.19373518228530884
- ]
- ]
- ],
- [
- [
- [
- 0.19810396432876587
- ]
- ]
- ],
- [
- [
- [
- 0.24454858899116516
- ]
- ]
- ],
- [
- [
- [
- 0.15973490476608276
- ]
- ]
- ],
- [
- [
- [
- 0.3080699145793915
- ]
- ]
- ],
- [
- [
- [
- 0.2631000578403473
- ]
- ]
- ],
- [
- [
- [
- 0.19559736549854279
- ]
- ]
- ],
- [
- [
- [
- 0.20713144540786743
- ]
- ]
- ],
- [
- [
- [
- 0.20004059374332428
- ]
- ]
- ],
- [
- [
- [
- 0.17699550092220306
- ]
- ]
- ],
- [
- [
- [
- 0.1805584579706192
- ]
- ]
- ],
- [
- [
- [
- 0.27478647232055664
- ]
- ]
- ],
- [
- [
- [
- 0.2053779661655426
- ]
- ]
- ],
- [
- [
- [
- 0.16364648938179016
- ]
- ]
- ],
- [
- [
- [
- 0.1723320037126541
- ]
- ]
- ],
- [
- [
- [
- 0.19884051382541656
- ]
- ]
- ],
- [
- [
- [
- 0.20889589190483093
- ]
- ]
- ],
- [
- [
- [
- 0.2759813070297241
- ]
- ]
- ],
- [
- [
- [
- 0.2674335241317749
- ]
- ]
- ],
- [
- [
- [
- 0.23774978518486023
- ]
- ]
- ],
- [
- [
- [
- 0.18863724172115326
- ]
- ]
- ],
- [
- [
- [
- 0.16541315615177155
- ]
- ]
- ],
- [
- [
- [
- 0.19270719587802887
- ]
- ]
- ],
- [
- [
- [
- 0.21903260052204132
- ]
- ]
- ],
- [
- [
- [
- 0.2107946127653122
- ]
- ]
- ],
- [
- [
- [
- 0.18624751269817352
- ]
- ]
- ],
- [
- [
- [
- 0.16595236957073212
- ]
- ]
- ],
- [
- [
- [
- 0.18000708520412445
- ]
- ]
- ],
- [
- [
- [
- 0.23410151898860931
- ]
- ]
- ],
- [
- [
- [
- 0.1666702926158905
- ]
- ]
- ],
- [
- [
- [
- 0.2029309868812561
- ]
- ]
- ],
- [
- [
- [
- 0.18647678196430206
- ]
- ]
- ],
- [
- [
- [
- 0.20264014601707458
- ]
- ]
- ],
- [
- [
- [
- 0.21181143820285797
- ]
- ]
- ],
- [
- [
- [
- 0.18451803922653198
- ]
- ]
- ],
- [
- [
- [
- 0.1946115642786026
- ]
- ]
- ],
- [
- [
- [
- 0.20825126767158508
- ]
- ]
- ],
- [
- [
- [
- 0.23451000452041626
- ]
- ]
- ],
- [
- [
- [
- 0.20898711681365967
- ]
- ]
- ],
- [
- [
- [
- 0.24683904647827148
- ]
- ]
- ],
- [
- [
- [
- 0.1926376223564148
- ]
- ]
- ],
- [
- [
- [
- 0.21006067097187042
- ]
- ]
- ],
- [
- [
- [
- 0.22443760931491852
- ]
- ]
- ],
- [
- [
- [
- 0.1884240061044693
- ]
- ]
- ],
- [
- [
- [
- 0.23755092918872833
- ]
- ]
- ],
- [
- [
- [
- 0.20905692875385284
- ]
- ]
- ],
- [
- [
- [
- 0.2127387523651123
- ]
- ]
- ],
- [
- [
- [
- 0.28653469681739807
- ]
- ]
- ],
- [
- [
- [
- 0.3269575536251068
- ]
- ]
- ],
- [
- [
- [
- 0.2289617657661438
- ]
- ]
- ],
- [
- [
- [
- 0.22106687724590302
- ]
- ]
- ],
- [
- [
- [
- 0.19060908257961273
- ]
- ]
- ],
- [
- [
- [
- 0.18493016064167023
- ]
- ]
- ]
- ]
- },
- "/features/features.15/conv/conv.1/conv.1.2/Clip/fq_output_0": {
- "input_low": 0.0,
- "input_high": 5.485366344451904,
- "output_low": 0.0,
- "output_high": 5.485366344451904
- },
- "/features/features.15/conv/conv.1/conv.1.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- [
- -2.16007399559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.930039167404175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.306061029434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3955128788948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806841135025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48569175601005554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5837053060531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0643727779388428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4436972141265869
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4284093379974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7019650936126709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6008570194244385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7350431680679321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46066004037857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1716415882110596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9633837342262268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37467846274375916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5527351498603821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.219895601272583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46988046169281006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.501659870147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4803513288497925
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38021519780158997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.25630784034729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4406163692474365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2024641036987305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.530339241027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.705380916595459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6245996952056885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.113292932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1245700120925903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.385380506515503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5392565727233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.521558940410614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37261679768562317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4626591205596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2577123641967773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6024081110954285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4541652202606201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.154443621635437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4215065836906433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.630239725112915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9231188893318176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5678168535232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2695415019989014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5394976735115051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8654284477233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.79264235496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2449681758880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5659968852996826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3819116950035095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4366619288921356
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8708444833755493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.133700966835022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2611267566680908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4397681951522827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8265469074249268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4340649843215942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4065818786621094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.53775954246521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.812939465045929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4338917136192322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1464693546295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0315545797348022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47040119767189026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0708394050598145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3865941762924194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43699586391448975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5217200517654419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3616198301315308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5087178945541382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4124908447265625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5537946224212646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0416386127471924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2359375953674316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1080338954925537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5157449841499329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0841386318206787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3184555768966675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.62712824344635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2685922384262085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38754841685295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6019614934921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49195048213005066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40508008003234863
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1866357326507568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3685028553009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1403998136520386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7226322889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3167805671691895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37234562635421753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3949894905090332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.537459850311279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0466128587722778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2025476694107056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5880241394042969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9780825972557068
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.386584997177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7440907955169678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8672959804534912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0273951292037964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5180411338806152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.80599308013916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3460946083068848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.711815595626831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.518663763999939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9596835374832153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3001067638397217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.841129183769226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4124369621276855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3782382607460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5600355267524719
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6232542991638184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.468580722808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5657289028167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41925305128097534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.472835898399353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3978731632232666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5949878692626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6214846968650818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3366759121417999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2896697521209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5543473958969116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40668928623199463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.537855625152588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6334726810455322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5891145467758179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5611310601234436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0132253170013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.207651138305664
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0203216075897217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4250588417053223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.457979679107666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9587960243225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5478990077972412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4497261047363281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.603310465812683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5471583604812622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.429905503988266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0916661024093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3417209386825562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671591997146606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4402207136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9027118682861328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2689802646636963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0849899053573608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6145987510681152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40174585580825806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48133307695388794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.864188313484192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9913368225097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9192324876785278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.000520706176758
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3177739381790161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40931594371795654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4465697109699249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3209476470947266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6446141004562378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.014589548110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5205961465835571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4353702068328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9585978388786316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.013911485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3934032917022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4063403010368347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4230972230434418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4449200928211212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4853806793689728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.249159574508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.04890513420105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.289801836013794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.284477710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3145188093185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2068308591842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9765151739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.201439380645752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2967926263809204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.303922414779663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5871545672416687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43071508407592773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4037774801254272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6305681467056274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4968942701816559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3283950090408325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0692391395568848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.615735411643982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2974646091461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.719998836517334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5966129302978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5321964025497437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9686777591705322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.491804599761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.631810188293457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34156179428100586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5376139283180237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.10468590259552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5025951266288757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0094540119171143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5831878185272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3066380023956299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6637101173400879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.864530563354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46150273084640503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.526075005531311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3896300792694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0466949939727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5965279340744019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.384817600250244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.568798542022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.871809184551239
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9722861051559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7116607427597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.020209789276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.7622530460357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962099075317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0016732215881348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9848154783248901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0542232990264893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0705302953720093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5588246583938599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6935890913009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3930765390396118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3791089355945587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40493011474609375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.278391718864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4858715534210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.490908145904541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5862460136413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0708410739898682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0377256870269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7876696586608887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4859922528266907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5623997449874878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.201519250869751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6285215616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.230694532394409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.08878231048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.535498023033142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5835106372833252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4286396503448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5663191080093384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4818379878997803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5371078848838806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3638031482696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9000084400177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8324909210205078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1450281143188477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.13276743888855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3712955713272095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6085536479949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8670426607131958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3438338041305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5401357412338257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9398268461227417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.188124656677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6433699131011963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37384751439094543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0734583139419556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.195556402206421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9706900119781494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5714293718338013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3192989826202393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.515310525894165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8727537989616394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9995666742324829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.487701177597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4101450443267822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4429313838481903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5666011571884155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7319967150688171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.446169912815094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4381444752216339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8589893579483032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6822706460952759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2844605445861816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.37652587890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4624817371368408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.712863564491272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.365025520324707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9607908725738525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1017909049987793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5225839614868164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4027361869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7837202548980713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2986063957214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0709068775177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8562712669372559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.284652829170227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3988698720932007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4430328905582428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4768235981464386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7675235271453857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1754348278045654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5448545813560486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2140172719955444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2166754007339478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6128965616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4420146346092224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.655472457408905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1326305866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4858834445476532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.421478509902954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6674457788467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6395519971847534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1778515577316284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.439146637916565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38280022144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.047461748123169
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38363784551620483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.161635637283325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8171314001083374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2251029014587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.406125545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3294459581375122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5508613586425781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5507063269615173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7353569269180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8015810251235962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4081134796142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2070941925048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6989437341690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9739975929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.688232183456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.09800386428833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3979523181915283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3533265590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5867820978164673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.937707543373108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.210211992263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5184441804885864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9138715267181396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4089280366897583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4202395677566528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1813812255859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5376914739608765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.505082905292511
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1108059883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.099186897277832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5028794407844543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43555623292922974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6227869987487793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3188560009002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2952743768692017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4211101531982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2572050094604492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4752941429615021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.510817289352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7879456281661987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4280335903167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5236932039260864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5055478811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5000127553939819
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7192453145980835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5351924896240234
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.249182105064392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6706122159957886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.669154167175293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9414475560188293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.246558666229248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.513264536857605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4072243571281433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.875153124332428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.997344434261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9561402201652527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9517925381660461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.763049840927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8129258155822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5187087655067444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2178499698638916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.092841148376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8020403385162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8276025652885437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6278483867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -6.076836109161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2138822078704834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8488686084747314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7050031423568726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0724754333496094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49724072217941284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1544287204742432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2923215627670288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3798468112945557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.758574366569519
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47856056690216064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2494913339614868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4952715635299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.236782073974609
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5193190574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3978407680988312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3809545040130615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665154218673706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5083401203155518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.117333173751831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.2200982570648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8785455822944641
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3475573062896729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8814846277236938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.524417519569397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.843165636062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4200814962387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1550986766815186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.245432138442993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.328402042388916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3707669973373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9126743078231812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.778074026107788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4218120872974396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5419697761535645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4807621240615845
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2572449445724487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4387616813182831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4141998589038849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.298374056816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1167014837265015
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3598586320877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0322675704956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3113049268722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.999836802482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4693384170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1345536708831787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.211911678314209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6046815514564514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36541303992271423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2553926706314087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44051459431648254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5179662704467773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5223152041435242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5579363107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1218113899230957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.068913459777832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5103520154953003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.620048999786377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0487298965454102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2978239059448242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5247291922569275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46166470646858215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5513139367103577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5089203715324402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4341820478439331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5397809743881226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.401784062385559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.58988618850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5707298517227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4663045406341553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -8.787264823913574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49691975116729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.067347764968872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5821878910064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5240150690078735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.4790351390838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3140023946762085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6338055729866028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8245062828063965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.097915530204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1877950429916382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4697527885437012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4238739013671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7631343603134155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4652973413467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4063520133495331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4482323229312897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.536245584487915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8872695565223694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0264896154403687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8322834372520447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3234726190567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2457029819488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.606459140777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46867161989212036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3458384275436401
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2742879390716553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9071269035339355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4098550081253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.443984031677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.381771206855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2124156951904297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.461577832698822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7414162158966064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6251552104949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.56717848777771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1839722394943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2264783382415771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.454958438873291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5797057151794434
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.685218572616577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1206352710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.036478042602539
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9107489585876465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4482760429382324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9397424459457397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1090205907821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4289599061012268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.092133641242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1581032276153564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0605182647705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4208792448043823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3594571352005005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8312269449234009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4092592000961304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4279162585735321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5642940402030945
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6940395832061768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4140385389328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.669742226600647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7649292349815369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6028075218200684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5300441384315491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3720625340938568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.385087728500366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8002849817276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9954957365989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1876301765441895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6490944623947144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9438294172286987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1372499465942383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3713304996490479
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.701617956161499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6699119806289673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.458821177482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1098685264587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8846089839935303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47643721103668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6168649792671204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4448084831237793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3064093589782715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.615921974182129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2135422229766846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5106407403945923
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0898830890655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0235841274261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4270954132080078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5129798650741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4952530860900879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6188410520553589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1976304054260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4627654254436493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6164802312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36436083912849426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.934234619140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.142503261566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45631277561187744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.256847620010376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39159655570983887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.415475994348526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41450634598731995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6204020977020264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.869140148162842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1173696517944336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3429534435272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.236921787261963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40822434425354004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1612820625305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4957042932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2181379795074463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.018950939178467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.358581781387329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4750347137451172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2546145915985107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5896540880203247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6457843780517578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5778690576553345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45141729712486267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1046998500823975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.294922113418579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.683871865272522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240510106086731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.342499256134033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5398601293563843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7298415899276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3240126371383667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7095680236816406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0091744661331177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4257672429084778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34077805280685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7648420333862305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3585793972015381
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1242612600326538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45700907707214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8175007104873657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6578420400619507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.977353811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4937822818756104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.436824768781662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7847814559936523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4015633761882782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4268731474876404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7240031957626343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1226248741149902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4756358563899994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.613590717315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5542963147163391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4677684009075165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49537208676338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2353190183639526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.584766149520874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38446858525276184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41760602593421936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7439382076263428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3968510627746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9044419527053833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7665218114852905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6367720365524292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5145774483680725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.051353931427002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1307802200317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5359489917755127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47711676359176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2300689220428467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9844423532485962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4034811854362488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5472466945648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8412792086601257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.277477741241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2388710975646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1795257329940796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46712663769721985
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.05548095703125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6188480854034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3652421832084656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.217421531677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3299872875213623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8206440210342407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40278884768486023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4929273724555969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4194705486297607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4114699363708496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5956542491912842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.50754714012146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.102254867553711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3406713902950287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.12729549407959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.455946922302246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45816487073898315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0036134719848633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0986740589141846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.576755404472351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2099727392196655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4491533041000366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.335897207260132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3229204416275024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.129994511604309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9663823246955872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4167200028896332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3733625113964081
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.860374927520752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40975138545036316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4017059803009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8757072687149048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.250165343284607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6572495102882385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4588932991027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7233918905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47664859890937805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.214115858078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.179860234260559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4091229438781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3620377779006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3865065574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3341621160507202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3992950916290283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6459827423095703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0726243257522583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.67343270778656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.314380407333374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3027616739273071
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8074018955230713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3974382281303406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.192212462425232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.854528546333313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8404158353805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3159122467041016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.345033645629883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.002395510673523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6827539205551147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4568977355957031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.210631847381592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4351617991924286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5433340072631836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4612109661102295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5703070163726807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7509045004844666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2720065116882324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6937603950500488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1709188222885132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7258377075195312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6806210279464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7817358374595642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45848891139030457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.167105793952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5837944746017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5077000856399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8550872802734375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4836357831954956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9568087458610535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5984014868736267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3806509971618652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1946362257003784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6967337131500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.15468168258667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6392201781272888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2508885860443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.016776442527771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4390650689601898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6513800621032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.353224277496338
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0221951007843018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4500831961631775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.250260591506958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9719525575637817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4584918022155762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8998398780822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5239211916923523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2754926681518555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6530101299285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5343884825706482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.321056604385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.616748332977295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4378374814987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.38263738155365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5407376289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5649811625480652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.479156494140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2249928712844849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9033110737800598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4529038965702057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41962969303131104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4023650884628296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3568493127822876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2719948291778564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45285624265670776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9935699105262756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.85287606716156
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1380687952041626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4959082305431366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0396482944488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1271793842315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4108756482601166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6220360398292542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8730205297470093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3328797817230225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7840901613235474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.156285047531128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42607271671295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1282780170440674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3627731800079346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5482617616653442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2397500276565552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43808498978614807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5135178565979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2835749387741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.253556489944458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0788335800170898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.104193925857544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.118027687072754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0884612798690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5704213380813599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6170730590820312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.597482919692993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.451293408870697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.465201735496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5983315706253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1649197340011597
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3415943384170532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7213356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.61233389377594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0250369310379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2283539772033691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2153990268707275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.581916093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2434189319610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3051458597183228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.306800365447998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3464579582214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4096079468727112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2123275995254517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5531877875328064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0525405406951904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.437375545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5412683486938477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.367919683456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3663270473480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48355600237846375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.105441093444824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4488224685192108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7297810316085815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4204678535461426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6233150959014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.311386227607727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5014835596084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.100845217704773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4325060248374939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4850332736968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7516000270843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42902669310569763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5226167440414429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.2878212928771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5500639081001282
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6588790416717529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.65933096408844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.263746738433838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8831653594970703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6611312627792358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4226993322372437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.283147931098938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.321697950363159
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8866236209869385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8305375576019287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1027188301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7316064238548279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1460049152374268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8428848385810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0507375001907349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4315845966339111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3617223501205444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1459747552871704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6822729706764221
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6750226020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4693320691585541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0002505779266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5317813158035278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.872911810874939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6925958395004272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3532116711139679
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2806789875030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4751565754413605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5711826682090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4820771217346191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4154914617538452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3948397636413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4454857409000397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7322864532470703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3484545946121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0826165676116943
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4511845111846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1314163208007812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5997835397720337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.779860258102417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5757259726524353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42787232995033264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5332416892051697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8722294569015503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5658293962478638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1767679452896118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4341745674610138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8268512487411499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6858980655670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9087715148925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3802928030490875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0373382568359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3094139099121094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.593553066253662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0201795101165771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.555022656917572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4357282817363739
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6444628238677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9593550562858582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3667648434638977
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3670146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3374744653701782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40698546171188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4647373557090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2368242740631104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.04620099067688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.478319525718689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.526094675064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5725388526916504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.48239004611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3369568586349487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5680673122406006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5269630551338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.728787660598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3463635444641113
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.549804925918579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.417360305786133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46645089983940125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.293250560760498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2562415599823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.080472707748413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4469758868217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -9.969771385192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4757169187068939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5477948188781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4427658319473267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3919521570205688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1875410079956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962502002716064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46391353011131287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3308457136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.483492136001587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5087605714797974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5537488460540771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3377985954284668
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7858390808105469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4729266166687012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.027830719947815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4101666212081909
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0492308139801025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4928109645843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4455633759498596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45572593808174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2297892570495605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5481687784194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9447790384292603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4963946044445038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.825758695602417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.622404932975769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1923198699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4674836993217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.627540647983551
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45302334427833557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.933095932006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5917606353759766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6070351600646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0783395767211914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4267152547836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3577767610549927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2228772640228271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.654480457305908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7554866075515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5225261449813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.676052451133728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48019421100616455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2581994533538818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4061945378780365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962792873382568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.528104543685913
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8346753716468811
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4550622701644897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6836953163146973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4985521733760834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5561290979385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4398868978023529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1356608867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2061214447021484
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1489561796188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39944973587989807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4279460906982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.982775866985321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8909363746643066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5331312417984009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5171066522598267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.094020128250122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.124638080596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.65777987241745
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1796188354492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0536248683929443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.82529878616333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5534764528274536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3659361004829407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.333631157875061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6110179424285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6765069961547852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5339159965515137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5399007797241211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1266968250274658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5575485229492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0174809694290161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6358512043952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.935999631881714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5574467182159424
- ]
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- [
- 2.16007399559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.930039167404175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.306061029434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3955128788948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806841135025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48569175601005554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5837053060531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0643727779388428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4436972141265869
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4284093379974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7019650936126709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6008570194244385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7350431680679321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46066004037857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1716415882110596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9633837342262268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37467846274375916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5527351498603821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.219895601272583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46988046169281006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.501659870147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4803513288497925
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38021519780158997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.25630784034729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4406163692474365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2024641036987305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.530339241027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.705380916595459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6245996952056885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.113292932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1245700120925903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.385380506515503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5392565727233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.521558940410614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37261679768562317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4626591205596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2577123641967773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6024081110954285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4541652202606201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.154443621635437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4215065836906433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.630239725112915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9231188893318176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5678168535232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2695415019989014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5394976735115051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8654284477233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.79264235496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2449681758880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5659968852996826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3819116950035095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4366619288921356
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8708444833755493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.133700966835022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2611267566680908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4397681951522827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8265469074249268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4340649843215942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4065818786621094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.53775954246521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.812939465045929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4338917136192322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1464693546295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0315545797348022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47040119767189026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0708394050598145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3865941762924194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43699586391448975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5217200517654419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3616198301315308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5087178945541382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4124908447265625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5537946224212646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0416386127471924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2359375953674316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1080338954925537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5157449841499329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0841386318206787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3184555768966675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.62712824344635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2685922384262085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38754841685295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6019614934921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49195048213005066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40508008003234863
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1866357326507568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3685028553009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1403998136520386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7226322889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3167805671691895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37234562635421753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3949894905090332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.537459850311279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0466128587722778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2025476694107056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5880241394042969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9780825972557068
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.386584997177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7440907955169678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8672959804534912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0273951292037964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5180411338806152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.80599308013916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3460946083068848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.711815595626831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.518663763999939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9596835374832153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3001067638397217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.841129183769226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4124369621276855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3782382607460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5600355267524719
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6232542991638184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.468580722808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5657289028167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41925305128097534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.472835898399353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3978731632232666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5949878692626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6214846968650818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3366759121417999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2896697521209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5543473958969116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40668928623199463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.537855625152588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6334726810455322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5891145467758179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5611310601234436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0132253170013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.207651138305664
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0203216075897217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4250588417053223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.457979679107666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9587960243225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5478990077972412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4497261047363281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.603310465812683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5471583604812622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.429905503988266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0916661024093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3417209386825562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671591997146606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4402207136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9027118682861328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2689802646636963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0849899053573608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6145987510681152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40174585580825806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48133307695388794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.864188313484192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9913368225097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9192324876785278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.000520706176758
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3177739381790161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40931594371795654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4465697109699249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3209476470947266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6446141004562378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.014589548110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5205961465835571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4353702068328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9585978388786316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.013911485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3934032917022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4063403010368347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4230972230434418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4449200928211212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4853806793689728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.249159574508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.04890513420105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.289801836013794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.284477710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3145188093185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2068308591842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9765151739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.201439380645752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2967926263809204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.303922414779663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5871545672416687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43071508407592773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4037774801254272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6305681467056274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4968942701816559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3283950090408325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0692391395568848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.615735411643982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2974646091461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.719998836517334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5966129302978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5321964025497437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9686777591705322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.491804599761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.631810188293457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34156179428100586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5376139283180237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.10468590259552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5025951266288757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0094540119171143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5831878185272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3066380023956299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6637101173400879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.864530563354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46150273084640503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.526075005531311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3896300792694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0466949939727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5965279340744019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.384817600250244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.568798542022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.871809184551239
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9722861051559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7116607427597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.020209789276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.7622530460357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962099075317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0016732215881348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9848154783248901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0542232990264893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0705302953720093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5588246583938599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6935890913009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3930765390396118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3791089355945587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40493011474609375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.278391718864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4858715534210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.490908145904541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5862460136413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0708410739898682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0377256870269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7876696586608887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4859922528266907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5623997449874878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.201519250869751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6285215616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.230694532394409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.08878231048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.535498023033142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5835106372833252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4286396503448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5663191080093384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4818379878997803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5371078848838806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3638031482696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9000084400177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8324909210205078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1450281143188477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.13276743888855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3712955713272095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6085536479949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8670426607131958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3438338041305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5401357412338257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9398268461227417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.188124656677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6433699131011963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37384751439094543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0734583139419556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.195556402206421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9706900119781494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5714293718338013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3192989826202393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.515310525894165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8727537989616394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9995666742324829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.487701177597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4101450443267822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4429313838481903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5666011571884155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7319967150688171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.446169912815094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4381444752216339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8589893579483032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6822706460952759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2844605445861816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.37652587890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4624817371368408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.712863564491272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.365025520324707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9607908725738525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1017909049987793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5225839614868164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4027361869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7837202548980713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2986063957214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0709068775177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8562712669372559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.284652829170227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3988698720932007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4430328905582428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4768235981464386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7675235271453857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1754348278045654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5448545813560486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2140172719955444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2166754007339478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6128965616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4420146346092224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.655472457408905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1326305866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4858834445476532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.421478509902954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6674457788467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6395519971847534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1778515577316284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.439146637916565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38280022144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.047461748123169
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38363784551620483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.161635637283325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8171314001083374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2251029014587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.406125545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3294459581375122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5508613586425781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5507063269615173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7353569269180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8015810251235962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4081134796142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2070941925048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6989437341690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9739975929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.688232183456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.09800386428833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3979523181915283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3533265590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5867820978164673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.937707543373108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.210211992263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5184441804885864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9138715267181396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4089280366897583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4202395677566528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1813812255859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5376914739608765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.505082905292511
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1108059883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.099186897277832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5028794407844543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43555623292922974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6227869987487793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3188560009002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2952743768692017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4211101531982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2572050094604492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4752941429615021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.510817289352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7879456281661987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4280335903167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5236932039260864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5055478811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5000127553939819
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7192453145980835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5351924896240234
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.249182105064392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6706122159957886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.669154167175293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9414475560188293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.246558666229248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.513264536857605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4072243571281433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.875153124332428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.997344434261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9561402201652527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9517925381660461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.763049840927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8129258155822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5187087655067444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2178499698638916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.092841148376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8020403385162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8276025652885437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6278483867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 6.076836109161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2138822078704834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8488686084747314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7050031423568726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0724754333496094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49724072217941284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1544287204742432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2923215627670288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3798468112945557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.758574366569519
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47856056690216064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2494913339614868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4952715635299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.236782073974609
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5193190574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3978407680988312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3809545040130615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665154218673706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5083401203155518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.117333173751831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.2200982570648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8785455822944641
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3475573062896729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8814846277236938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.524417519569397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.843165636062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4200814962387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1550986766815186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.245432138442993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.328402042388916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3707669973373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9126743078231812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.778074026107788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4218120872974396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5419697761535645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4807621240615845
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2572449445724487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4387616813182831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4141998589038849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.298374056816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1167014837265015
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3598586320877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0322675704956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3113049268722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.999836802482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4693384170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1345536708831787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.211911678314209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6046815514564514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36541303992271423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2553926706314087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44051459431648254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5179662704467773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5223152041435242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5579363107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1218113899230957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.068913459777832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5103520154953003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.620048999786377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0487298965454102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2978239059448242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5247291922569275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46166470646858215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5513139367103577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5089203715324402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4341820478439331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5397809743881226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.401784062385559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.58988618850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5707298517227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4663045406341553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 8.787264823913574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49691975116729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.067347764968872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5821878910064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5240150690078735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.4790351390838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3140023946762085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6338055729866028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8245062828063965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.097915530204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1877950429916382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4697527885437012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4238739013671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7631343603134155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4652973413467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4063520133495331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4482323229312897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.536245584487915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8872695565223694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0264896154403687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8322834372520447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3234726190567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2457029819488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.606459140777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46867161989212036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3458384275436401
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2742879390716553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9071269035339355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4098550081253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.443984031677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.381771206855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2124156951904297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.461577832698822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7414162158966064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6251552104949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.56717848777771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1839722394943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2264783382415771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.454958438873291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5797057151794434
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.685218572616577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1206352710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.036478042602539
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9107489585876465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4482760429382324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9397424459457397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1090205907821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4289599061012268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.092133641242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1581032276153564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0605182647705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4208792448043823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3594571352005005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8312269449234009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4092592000961304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4279162585735321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5642940402030945
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6940395832061768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4140385389328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.669742226600647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7649292349815369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6028075218200684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5300441384315491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3720625340938568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.385087728500366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8002849817276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9954957365989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1876301765441895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6490944623947144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9438294172286987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1372499465942383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3713304996490479
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.701617956161499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6699119806289673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.458821177482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1098685264587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8846089839935303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47643721103668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6168649792671204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4448084831237793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3064093589782715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.615921974182129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2135422229766846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5106407403945923
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0898830890655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0235841274261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4270954132080078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5129798650741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4952530860900879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6188410520553589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1976304054260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4627654254436493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6164802312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36436083912849426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.934234619140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.142503261566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45631277561187744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.256847620010376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39159655570983887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.415475994348526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41450634598731995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6204020977020264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.869140148162842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1173696517944336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3429534435272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.236921787261963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40822434425354004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1612820625305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4957042932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2181379795074463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.018950939178467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.358581781387329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4750347137451172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2546145915985107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5896540880203247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6457843780517578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5778690576553345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45141729712486267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1046998500823975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.294922113418579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.683871865272522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240510106086731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.342499256134033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5398601293563843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7298415899276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3240126371383667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7095680236816406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0091744661331177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4257672429084778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34077805280685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7648420333862305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3585793972015381
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1242612600326538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45700907707214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8175007104873657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6578420400619507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.977353811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4937822818756104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.436824768781662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7847814559936523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4015633761882782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4268731474876404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7240031957626343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1226248741149902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4756358563899994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.613590717315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5542963147163391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4677684009075165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49537208676338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2353190183639526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.584766149520874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38446858525276184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41760602593421936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7439382076263428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3968510627746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9044419527053833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7665218114852905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6367720365524292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5145774483680725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.051353931427002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1307802200317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5359489917755127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47711676359176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2300689220428467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9844423532485962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4034811854362488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5472466945648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8412792086601257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.277477741241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2388710975646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1795257329940796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46712663769721985
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.05548095703125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6188480854034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3652421832084656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.217421531677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3299872875213623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8206440210342407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40278884768486023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4929273724555969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4194705486297607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4114699363708496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5956542491912842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.50754714012146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.102254867553711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3406713902950287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.12729549407959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.455946922302246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45816487073898315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0036134719848633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0986740589141846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.576755404472351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2099727392196655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4491533041000366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.335897207260132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3229204416275024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.129994511604309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9663823246955872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4167200028896332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3733625113964081
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.860374927520752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40975138545036316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4017059803009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8757072687149048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.250165343284607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6572495102882385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4588932991027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7233918905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47664859890937805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.214115858078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.179860234260559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4091229438781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3620377779006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3865065574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3341621160507202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3992950916290283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6459827423095703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0726243257522583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.67343270778656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.314380407333374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3027616739273071
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8074018955230713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3974382281303406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.192212462425232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.854528546333313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8404158353805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3159122467041016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.345033645629883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.002395510673523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6827539205551147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4568977355957031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.210631847381592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4351617991924286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5433340072631836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4612109661102295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5703070163726807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7509045004844666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2720065116882324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6937603950500488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1709188222885132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7258377075195312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6806210279464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7817358374595642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45848891139030457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.167105793952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5837944746017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5077000856399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8550872802734375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4836357831954956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9568087458610535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5984014868736267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3806509971618652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1946362257003784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6967337131500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.15468168258667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6392201781272888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2508885860443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.016776442527771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4390650689601898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6513800621032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.353224277496338
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0221951007843018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4500831961631775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.250260591506958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9719525575637817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4584918022155762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8998398780822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5239211916923523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2754926681518555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6530101299285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5343884825706482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.321056604385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.616748332977295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4378374814987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.38263738155365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5407376289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5649811625480652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.479156494140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2249928712844849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9033110737800598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4529038965702057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41962969303131104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4023650884628296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3568493127822876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2719948291778564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45285624265670776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9935699105262756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.85287606716156
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1380687952041626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4959082305431366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0396482944488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1271793842315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4108756482601166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6220360398292542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8730205297470093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3328797817230225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7840901613235474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.156285047531128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42607271671295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1282780170440674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3627731800079346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5482617616653442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2397500276565552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43808498978614807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5135178565979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2835749387741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.253556489944458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0788335800170898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.104193925857544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.118027687072754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0884612798690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5704213380813599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6170730590820312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.597482919692993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.451293408870697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.465201735496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5983315706253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1649197340011597
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3415943384170532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7213356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.61233389377594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0250369310379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2283539772033691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2153990268707275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.581916093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2434189319610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3051458597183228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.306800365447998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3464579582214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4096079468727112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2123275995254517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5531877875328064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0525405406951904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.437375545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5412683486938477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.367919683456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3663270473480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48355600237846375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.105441093444824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4488224685192108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7297810316085815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4204678535461426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6233150959014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.311386227607727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5014835596084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.100845217704773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4325060248374939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4850332736968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7516000270843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42902669310569763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5226167440414429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.2878212928771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5500639081001282
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6588790416717529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.65933096408844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.263746738433838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8831653594970703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6611312627792358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4226993322372437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.283147931098938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.321697950363159
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8866236209869385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8305375576019287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1027188301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7316064238548279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1460049152374268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8428848385810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0507375001907349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4315845966339111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3617223501205444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1459747552871704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6822729706764221
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6750226020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4693320691585541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0002505779266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5317813158035278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.872911810874939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6925958395004272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3532116711139679
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2806789875030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4751565754413605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5711826682090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4820771217346191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4154914617538452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3948397636413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4454857409000397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7322864532470703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3484545946121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0826165676116943
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4511845111846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1314163208007812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5997835397720337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.779860258102417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5757259726524353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42787232995033264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5332416892051697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8722294569015503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5658293962478638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1767679452896118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4341745674610138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8268512487411499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6858980655670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9087715148925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3802928030490875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0373382568359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3094139099121094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.593553066253662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0201795101165771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.555022656917572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4357282817363739
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6444628238677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9593550562858582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3667648434638977
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3670146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3374744653701782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40698546171188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4647373557090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2368242740631104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.04620099067688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.478319525718689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.526094675064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5725388526916504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.48239004611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3369568586349487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5680673122406006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5269630551338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.728787660598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3463635444641113
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.549804925918579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.417360305786133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46645089983940125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.293250560760498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2562415599823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.080472707748413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4469758868217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 9.969771385192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4757169187068939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5477948188781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4427658319473267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3919521570205688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1875410079956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962502002716064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46391353011131287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3308457136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.483492136001587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5087605714797974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5537488460540771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3377985954284668
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7858390808105469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4729266166687012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.027830719947815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4101666212081909
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0492308139801025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4928109645843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4455633759498596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45572593808174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2297892570495605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5481687784194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9447790384292603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4963946044445038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.825758695602417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.622404932975769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1923198699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4674836993217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.627540647983551
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45302334427833557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.933095932006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5917606353759766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6070351600646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0783395767211914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4267152547836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3577767610549927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2228772640228271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.654480457305908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7554866075515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5225261449813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.676052451133728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48019421100616455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2581994533538818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4061945378780365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962792873382568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.528104543685913
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8346753716468811
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4550622701644897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6836953163146973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4985521733760834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5561290979385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4398868978023529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1356608867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2061214447021484
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1489561796188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39944973587989807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4279460906982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.982775866985321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8909363746643066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5331312417984009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5171066522598267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.094020128250122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.124638080596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.65777987241745
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1796188354492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0536248683929443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.82529878616333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5534764528274536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3659361004829407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.333631157875061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6110179424285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6765069961547852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5339159965515137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5399007797241211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1266968250274658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5575485229492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0174809694290161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6358512043952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.935999631881714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5574467182159424
- ]
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- [
- -2.16007399559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.930039167404175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.306061029434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3955128788948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7806841135025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48569175601005554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5837053060531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0643727779388428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4436972141265869
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4284093379974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7019650936126709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6008570194244385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7350431680679321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46066004037857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1716415882110596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9633837342262268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37467846274375916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5527351498603821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.219895601272583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46988046169281006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.501659870147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4803513288497925
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38021519780158997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.25630784034729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4406163692474365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2024641036987305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.530339241027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.705380916595459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6245996952056885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.113292932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1245700120925903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.385380506515503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5392565727233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.521558940410614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37261679768562317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4626591205596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2577123641967773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6024081110954285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4541652202606201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.154443621635437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4215065836906433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.630239725112915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9231188893318176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5678168535232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2695415019989014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5394976735115051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8654284477233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.79264235496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2449681758880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5659968852996826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3819116950035095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4366619288921356
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8708444833755493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.133700966835022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2611267566680908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4397681951522827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8265469074249268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4340649843215942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4065818786621094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.53775954246521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.812939465045929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4338917136192322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1464693546295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0315545797348022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47040119767189026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0708394050598145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3865941762924194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43699586391448975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5217200517654419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3616198301315308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5087178945541382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4124908447265625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5537946224212646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0416386127471924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2359375953674316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1080338954925537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5157449841499329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0841386318206787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3184555768966675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.62712824344635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2685922384262085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38754841685295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6019614934921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49195048213005066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40508008003234863
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1866357326507568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3685028553009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1403998136520386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7226322889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3167805671691895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37234562635421753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3949894905090332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.537459850311279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0466128587722778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2025476694107056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5880241394042969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9780825972557068
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.386584997177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7440907955169678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8672959804534912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0273951292037964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5180411338806152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.80599308013916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3460946083068848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.711815595626831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.518663763999939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9596835374832153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3001067638397217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.841129183769226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4124369621276855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3782382607460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5600355267524719
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6232542991638184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.468580722808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5657289028167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41925305128097534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.472835898399353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3978731632232666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5949878692626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6214846968650818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3366759121417999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2896697521209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5543473958969116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40668928623199463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.537855625152588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6334726810455322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5891145467758179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5611310601234436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0132253170013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.207651138305664
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0203216075897217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4250588417053223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.457979679107666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9587960243225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5478990077972412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4497261047363281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.603310465812683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5471583604812622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.429905503988266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0916661024093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3417209386825562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1671591997146606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4402207136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9027118682861328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2689802646636963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0849899053573608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6145987510681152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40174585580825806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48133307695388794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.864188313484192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9913368225097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9192324876785278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.000520706176758
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3177739381790161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40931594371795654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4465697109699249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3209476470947266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6446141004562378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.014589548110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5205961465835571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4353702068328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9585978388786316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.013911485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3934032917022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4063403010368347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4230972230434418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4449200928211212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4853806793689728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.249159574508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.04890513420105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.289801836013794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.284477710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3145188093185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2068308591842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9765151739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.201439380645752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2967926263809204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.303922414779663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5871545672416687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43071508407592773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4037774801254272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6305681467056274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4968942701816559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3283950090408325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0692391395568848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.615735411643982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2974646091461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.719998836517334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5966129302978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5321964025497437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9686777591705322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.491804599761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.631810188293457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34156179428100586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5376139283180237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.10468590259552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5025951266288757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0094540119171143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5831878185272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3066380023956299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6637101173400879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.864530563354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46150273084640503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.526075005531311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3896300792694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0466949939727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5965279340744019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.384817600250244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.568798542022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.871809184551239
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9722861051559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7116607427597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.020209789276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.7622530460357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962099075317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0016732215881348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9848154783248901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0542232990264893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0705302953720093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5588246583938599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6935890913009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3930765390396118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3791089355945587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40493011474609375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.278391718864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4858715534210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.490908145904541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5862460136413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0708410739898682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0377256870269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7876696586608887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4859922528266907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5623997449874878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.201519250869751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6285215616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.230694532394409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.08878231048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.535498023033142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5835106372833252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4286396503448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5663191080093384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4818379878997803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5371078848838806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3638031482696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9000084400177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8324909210205078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1450281143188477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.13276743888855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3712955713272095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6085536479949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8670426607131958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3438338041305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5401357412338257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9398268461227417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.188124656677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6433699131011963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.37384751439094543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0734583139419556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.195556402206421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9706900119781494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5714293718338013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3192989826202393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.515310525894165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8727537989616394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9995666742324829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.487701177597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.4101450443267822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4429313838481903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5666011571884155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7319967150688171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.446169912815094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4381444752216339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8589893579483032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6822706460952759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2844605445861816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.37652587890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4624817371368408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.712863564491272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.365025520324707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9607908725738525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1017909049987793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5225839614868164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4027361869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7837202548980713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2986063957214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0709068775177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8562712669372559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.284652829170227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3988698720932007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4430328905582428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4768235981464386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7675235271453857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1754348278045654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5448545813560486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2140172719955444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2166754007339478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6128965616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4420146346092224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.655472457408905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1326305866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4858834445476532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.421478509902954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6674457788467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6395519971847534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1778515577316284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.439146637916565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38280022144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.047461748123169
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38363784551620483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.161635637283325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8171314001083374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2251029014587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.406125545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3294459581375122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5508613586425781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5507063269615173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7353569269180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8015810251235962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4081134796142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2070941925048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6989437341690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9739975929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.688232183456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.09800386428833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3979523181915283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3533265590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5867820978164673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.937707543373108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.210211992263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5184441804885864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9138715267181396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4089280366897583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4202395677566528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1813812255859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5376914739608765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.505082905292511
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1108059883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.099186897277832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5028794407844543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43555623292922974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6227869987487793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3188560009002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2952743768692017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4211101531982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2572050094604492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4752941429615021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.510817289352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7879456281661987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4280335903167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5236932039260864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5055478811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5000127553939819
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7192453145980835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5351924896240234
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.249182105064392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6706122159957886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.669154167175293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9414475560188293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.246558666229248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.513264536857605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4072243571281433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.875153124332428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.997344434261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9561402201652527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9517925381660461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.763049840927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8129258155822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5187087655067444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2178499698638916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.092841148376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8020403385162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8276025652885437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6278483867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -6.076836109161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2138822078704834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.8488686084747314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7050031423568726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0724754333496094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49724072217941284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1544287204742432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2923215627670288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3798468112945557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.758574366569519
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47856056690216064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2494913339614868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4952715635299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.236782073974609
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.5193190574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3978407680988312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3809545040130615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.665154218673706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5083401203155518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.117333173751831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.2200982570648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8785455822944641
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3475573062896729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8814846277236938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.524417519569397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.843165636062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4200814962387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1550986766815186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.245432138442993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.328402042388916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3707669973373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9126743078231812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.778074026107788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4218120872974396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5419697761535645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4807621240615845
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2572449445724487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4387616813182831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4141998589038849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.298374056816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1167014837265015
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3598586320877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0322675704956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3113049268722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.999836802482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4693384170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1345536708831787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.211911678314209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6046815514564514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36541303992271423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2553926706314087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.44051459431648254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5179662704467773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5223152041435242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5579363107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1218113899230957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.068913459777832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5103520154953003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.620048999786377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0487298965454102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2978239059448242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5247291922569275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46166470646858215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5513139367103577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5089203715324402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4341820478439331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5397809743881226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.401784062385559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.58988618850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5707298517227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4663045406341553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -8.787264823913574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49691975116729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.067347764968872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5821878910064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5240150690078735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.4790351390838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3140023946762085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6338055729866028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8245062828063965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.097915530204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1877950429916382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4697527885437012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4238739013671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7631343603134155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4652973413467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4063520133495331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4482323229312897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.536245584487915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8872695565223694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0264896154403687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8322834372520447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3234726190567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2457029819488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.606459140777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46867161989212036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3458384275436401
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2742879390716553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9071269035339355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4098550081253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.443984031677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.381771206855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2124156951904297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.461577832698822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7414162158966064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6251552104949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.56717848777771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1839722394943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2264783382415771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.454958438873291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5797057151794434
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.685218572616577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1206352710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.036478042602539
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.9107489585876465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4482760429382324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9397424459457397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1090205907821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4289599061012268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.092133641242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1581032276153564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0605182647705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4208792448043823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3594571352005005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8312269449234009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4092592000961304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4279162585735321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5642940402030945
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6940395832061768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4140385389328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.669742226600647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7649292349815369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6028075218200684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5300441384315491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3720625340938568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.385087728500366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8002849817276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9954957365989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1876301765441895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6490944623947144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9438294172286987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1372499465942383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3713304996490479
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.701617956161499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6699119806289673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.458821177482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1098685264587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8846089839935303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47643721103668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6168649792671204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4448084831237793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3064093589782715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.615921974182129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2135422229766846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5106407403945923
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0898830890655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0235841274261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4270954132080078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5129798650741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4952530860900879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6188410520553589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1976304054260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4627654254436493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6164802312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.36436083912849426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.934234619140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.142503261566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45631277561187744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.256847620010376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39159655570983887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.415475994348526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41450634598731995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6204020977020264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.869140148162842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1173696517944336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3429534435272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.236921787261963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40822434425354004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1612820625305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4957042932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2181379795074463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.018950939178467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.358581781387329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4750347137451172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2546145915985107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5896540880203247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6457843780517578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5778690576553345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45141729712486267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1046998500823975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.294922113418579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.683871865272522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.240510106086731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.342499256134033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5398601293563843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7298415899276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3240126371383667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7095680236816406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0091744661331177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4257672429084778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.34077805280685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7648420333862305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3585793972015381
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1242612600326538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45700907707214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8175007104873657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6578420400619507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.977353811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4937822818756104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.436824768781662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7847814559936523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4015633761882782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4268731474876404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7240031957626343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1226248741149902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4756358563899994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.613590717315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5542963147163391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4677684009075165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.49537208676338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2353190183639526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.584766149520874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.38446858525276184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41760602593421936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7439382076263428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3968510627746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9044419527053833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7665218114852905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6367720365524292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5145774483680725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.051353931427002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1307802200317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.5359489917755127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47711676359176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2300689220428467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.9844423532485962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4034811854362488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5472466945648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8412792086601257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.277477741241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2388710975646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1795257329940796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46712663769721985
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.05548095703125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6188480854034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3652421832084656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.217421531677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3299872875213623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8206440210342407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40278884768486023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4929273724555969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4194705486297607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4114699363708496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5956542491912842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.50754714012146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.102254867553711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3406713902950287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.12729549407959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.455946922302246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45816487073898315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0036134719848633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0986740589141846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.576755404472351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2099727392196655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4491533041000366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.335897207260132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3229204416275024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.129994511604309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9663823246955872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4167200028896332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3733625113964081
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.860374927520752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40975138545036316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4017059803009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8757072687149048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.250165343284607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6572495102882385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4588932991027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7233918905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.47664859890937805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.214115858078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.179860234260559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4091229438781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3620377779006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3865065574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3341621160507202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3992950916290283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.6459827423095703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0726243257522583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.67343270778656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.314380407333374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3027616739273071
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8074018955230713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3974382281303406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.192212462425232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.854528546333313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8404158353805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3159122467041016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.345033645629883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.002395510673523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6827539205551147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4568977355957031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.210631847381592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4351617991924286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5433340072631836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4612109661102295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5703070163726807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7509045004844666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2720065116882324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6937603950500488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1709188222885132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7258377075195312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6806210279464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7817358374595642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45848891139030457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.167105793952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5837944746017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5077000856399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8550872802734375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4836357831954956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9568087458610535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5984014868736267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3806509971618652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1946362257003784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6967337131500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.15468168258667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6392201781272888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2508885860443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.016776442527771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4390650689601898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6513800621032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -5.353224277496338
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0221951007843018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4500831961631775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.250260591506958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9719525575637817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4584918022155762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.8998398780822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5239211916923523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2754926681518555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6530101299285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5343884825706482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.321056604385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.616748332977295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4378374814987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.38263738155365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5407376289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5649811625480652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.479156494140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2249928712844849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9033110737800598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4529038965702057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.41962969303131104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4023650884628296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3568493127822876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2719948291778564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45285624265670776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9935699105262756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.85287606716156
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1380687952041626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4959082305431366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0396482944488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1271793842315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4108756482601166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6220360398292542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8730205297470093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3328797817230225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7840901613235474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.156285047531128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42607271671295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1282780170440674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3627731800079346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5482617616653442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2397500276565552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.43808498978614807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5135178565979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2835749387741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.253556489944458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0788335800170898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.104193925857544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.118027687072754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0884612798690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5704213380813599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6170730590820312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.597482919692993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.451293408870697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.465201735496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5983315706253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1649197340011597
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3415943384170532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7213356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.61233389377594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0250369310379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2283539772033691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2153990268707275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.581916093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2434189319610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3051458597183228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.306800365447998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3464579582214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4096079468727112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2123275995254517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5531877875328064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0525405406951904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.437375545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5412683486938477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.367919683456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3663270473480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48355600237846375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.105441093444824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4488224685192108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7297810316085815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4204678535461426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6233150959014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.311386227607727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5014835596084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.100845217704773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4325060248374939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4850332736968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7516000270843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42902669310569763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5226167440414429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.2878212928771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5500639081001282
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6588790416717529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.65933096408844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.263746738433838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8831653594970703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6611312627792358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4226993322372437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.283147931098938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.321697950363159
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8866236209869385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8305375576019287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1027188301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.7316064238548279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1460049152374268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8428848385810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0507375001907349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4315845966339111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3617223501205444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1459747552871704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6822729706764221
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6750226020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4693320691585541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0002505779266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5317813158035278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.872911810874939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6925958395004272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3532116711139679
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2806789875030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4751565754413605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5711826682090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4820771217346191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4154914617538452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3948397636413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4454857409000397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7322864532470703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3484545946121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0826165676116943
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4511845111846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1314163208007812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5997835397720337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.779860258102417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5757259726524353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.42787232995033264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5332416892051697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8722294569015503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5658293962478638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1767679452896118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4341745674610138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8268512487411499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6858980655670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9087715148925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3802928030490875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0373382568359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3094139099121094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.593553066253662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0201795101165771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.555022656917572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4357282817363739
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6444628238677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9593550562858582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3667648434638977
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3670146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3374744653701782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.40698546171188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4647373557090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2368242740631104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.04620099067688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.478319525718689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.526094675064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5725388526916504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.48239004611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3369568586349487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5680673122406006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5269630551338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.728787660598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.3463635444641113
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.549804925918579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.417360305786133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46645089983940125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.293250560760498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2562415599823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.080472707748413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4469758868217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -9.969771385192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4757169187068939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5477948188781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4427658319473267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3919521570205688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1875410079956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962502002716064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.46391353011131287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3308457136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.483492136001587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5087605714797974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5537488460540771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3377985954284668
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7858390808105469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4729266166687012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.027830719947815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4101666212081909
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0492308139801025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4928109645843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4455633759498596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45572593808174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2297892570495605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5481687784194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.9447790384292603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4963946044445038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.825758695602417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.622404932975769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1923198699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4674836993217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.627540647983551
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.45302334427833557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.933095932006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5917606353759766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.6070351600646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.0783395767211914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4267152547836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.3577767610549927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2228772640228271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.654480457305908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.7554866075515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5225261449813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.676052451133728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.48019421100616455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.2581994533538818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4061945378780365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1962792873382568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.528104543685913
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.8346753716468811
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.4550622701644897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6836953163146973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4985521733760834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5561290979385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4398868978023529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.1356608867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.2061214447021484
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1489561796188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.39944973587989807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.4279460906982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.982775866985321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.8909363746643066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5331312417984009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5171066522598267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.094020128250122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.124638080596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.65777987241745
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -3.1796188354492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0536248683929443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -4.82529878616333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5534764528274536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.3659361004829407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.333631157875061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6110179424285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.6765069961547852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5339159965515137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.5399007797241211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.1266968250274658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5575485229492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.0174809694290161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -0.6358512043952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -2.935999631881714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- -1.5574467182159424
- ]
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- [
- 2.16007399559021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.930039167404175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.306061029434204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3955128788948059
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7806841135025024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48569175601005554
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5837053060531616
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0643727779388428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4436972141265869
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4284093379974365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7019650936126709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6008570194244385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7350431680679321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46066004037857056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1716415882110596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9633837342262268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37467846274375916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5527351498603821
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.219895601272583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46988046169281006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.501659870147705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4803513288497925
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38021519780158997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.25630784034729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4406163692474365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2024641036987305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.530339241027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.705380916595459
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6245996952056885
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.113292932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1245700120925903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.385380506515503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5392565727233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.521558940410614
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37261679768562317
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4626591205596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2577123641967773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6024081110954285
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4541652202606201
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.154443621635437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4215065836906433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.630239725112915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9231188893318176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5678168535232544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2695415019989014
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5394976735115051
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8654284477233887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.79264235496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2449681758880615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5659968852996826
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3819116950035095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4366619288921356
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8708444833755493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.133700966835022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2611267566680908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4397681951522827
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8265469074249268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4340649843215942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4065818786621094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.53775954246521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.812939465045929
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4338917136192322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1464693546295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0315545797348022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47040119767189026
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0708394050598145
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3865941762924194
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43699586391448975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5217200517654419
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3616198301315308
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5087178945541382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4124908447265625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5537946224212646
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0416386127471924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2359375953674316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1080338954925537
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5157449841499329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0841386318206787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3184555768966675
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.62712824344635
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2685922384262085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38754841685295105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6019614934921265
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49195048213005066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40508008003234863
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1866357326507568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3685028553009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1403998136520386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7226322889328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3167805671691895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37234562635421753
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3949894905090332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.537459850311279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0466128587722778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2025476694107056
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5880241394042969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9780825972557068
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.386584997177124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7440907955169678
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8672959804534912
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0273951292037964
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5180411338806152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.80599308013916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3460946083068848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.711815595626831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.518663763999939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9596835374832153
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3001067638397217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.841129183769226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4124369621276855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3782382607460022
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5600355267524719
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6232542991638184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.468580722808838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5657289028167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41925305128097534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.472835898399353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3978731632232666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5949878692626953
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6214846968650818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3366759121417999
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2896697521209717
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5543473958969116
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40668928623199463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.537855625152588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6334726810455322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5891145467758179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5611310601234436
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0132253170013428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.207651138305664
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0203216075897217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4250588417053223
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.457979679107666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9587960243225098
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5478990077972412
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4497261047363281
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.603310465812683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5471583604812622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.429905503988266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0916661024093628
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3417209386825562
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1671591997146606
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4402207136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9027118682861328
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2689802646636963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0849899053573608
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6145987510681152
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40174585580825806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48133307695388794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.864188313484192
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9913368225097656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9192324876785278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.000520706176758
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3177739381790161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40931594371795654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4465697109699249
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3209476470947266
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6446141004562378
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.014589548110962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5205961465835571
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4353702068328857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9585978388786316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.013911485671997
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3934032917022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4063403010368347
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4230972230434418
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4449200928211212
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4853806793689728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.249159574508667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.04890513420105
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.289801836013794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.284477710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3145188093185425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2068308591842651
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9765151739120483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.201439380645752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2967926263809204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.303922414779663
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5871545672416687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43071508407592773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4037774801254272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6305681467056274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4968942701816559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3283950090408325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0692391395568848
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.615735411643982
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2974646091461182
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.719998836517334
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5966129302978516
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5321964025497437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9686777591705322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.491804599761963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.631810188293457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34156179428100586
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5376139283180237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.10468590259552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5025951266288757
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0094540119171143
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5831878185272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3066380023956299
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6637101173400879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.864530563354492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46150273084640503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.526075005531311
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3896300792694092
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0466949939727783
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5965279340744019
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.384817600250244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.568798542022705
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.871809184551239
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9722861051559448
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7116607427597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.020209789276123
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.7622530460357666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962099075317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0016732215881348
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9848154783248901
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0542232990264893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0705302953720093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5588246583938599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6935890913009644
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3930765390396118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3791089355945587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40493011474609375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.278391718864441
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4858715534210205
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.490908145904541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5862460136413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0708410739898682
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0377256870269775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7876696586608887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4859922528266907
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5623997449874878
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.201519250869751
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6285215616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.230694532394409
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.08878231048584
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.535498023033142
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5835106372833252
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4286396503448486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5663191080093384
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4818379878997803
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5371078848838806
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3638031482696533
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9000084400177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8324909210205078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1450281143188477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.13276743888855
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3712955713272095
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6085536479949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8670426607131958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3438338041305542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5401357412338257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9398268461227417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.188124656677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6433699131011963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.37384751439094543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0734583139419556
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.195556402206421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9706900119781494
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5714293718338013
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3192989826202393
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.515310525894165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8727537989616394
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9995666742324829
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.487701177597046
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.4101450443267822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4429313838481903
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5666011571884155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7319967150688171
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.446169912815094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4381444752216339
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8589893579483032
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6822706460952759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2844605445861816
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.37652587890625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4624817371368408
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.712863564491272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.365025520324707
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9607908725738525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1017909049987793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5225839614868164
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4027361869812012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7837202548980713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2986063957214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0709068775177002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8562712669372559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.284652829170227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3988698720932007
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4430328905582428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4768235981464386
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7675235271453857
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1754348278045654
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5448545813560486
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2140172719955444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2166754007339478
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6128965616226196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4420146346092224
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.655472457408905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1326305866241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4858834445476532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.421478509902954
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6674457788467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6395519971847534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1778515577316284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.439146637916565
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38280022144317627
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.047461748123169
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38363784551620483
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.161635637283325
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8171314001083374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2251029014587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.406125545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3294459581375122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5508613586425781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5507063269615173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7353569269180298
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8015810251235962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4081134796142578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2070941925048828
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6989437341690063
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9739975929260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.688232183456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.09800386428833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3979523181915283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3533265590667725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5867820978164673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.937707543373108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.210211992263794
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5184441804885864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9138715267181396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4089280366897583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4202395677566528
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1813812255859375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5376914739608765
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.505082905292511
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1108059883117676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.099186897277832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5028794407844543
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43555623292922974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6227869987487793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3188560009002686
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2952743768692017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4211101531982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2572050094604492
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4752941429615021
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.510817289352417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7879456281661987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4280335903167725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5236932039260864
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5055478811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5000127553939819
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7192453145980835
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5351924896240234
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.249182105064392
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6706122159957886
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.669154167175293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9414475560188293
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.246558666229248
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.513264536857605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4072243571281433
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.875153124332428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.997344434261322
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9561402201652527
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9517925381660461
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.763049840927124
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8129258155822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5187087655067444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2178499698638916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.092841148376465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8020403385162354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8276025652885437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6278483867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 6.076836109161377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2138822078704834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.8488686084747314
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7050031423568726
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0724754333496094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49724072217941284
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1544287204742432
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2923215627670288
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3798468112945557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.758574366569519
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47856056690216064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2494913339614868
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4952715635299683
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.236782073974609
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.5193190574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3978407680988312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3809545040130615
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.665154218673706
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5083401203155518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.117333173751831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.2200982570648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8785455822944641
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3475573062896729
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8814846277236938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.524417519569397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.843165636062622
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4200814962387085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1550986766815186
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.245432138442993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.328402042388916
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3707669973373413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9126743078231812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.778074026107788
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4218120872974396
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5419697761535645
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4807621240615845
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2572449445724487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4387616813182831
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4141998589038849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.298374056816101
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1167014837265015
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3598586320877075
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0322675704956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3113049268722534
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.999836802482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4693384170532227
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1345536708831787
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.211911678314209
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6046815514564514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36541303992271423
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2553926706314087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.44051459431648254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5179662704467773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5223152041435242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5579363107681274
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1218113899230957
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.068913459777832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5103520154953003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.620048999786377
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0487298965454102
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2978239059448242
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5247291922569275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46166470646858215
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5513139367103577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5089203715324402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4341820478439331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5397809743881226
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.401784062385559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.58988618850708
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5707298517227173
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4663045406341553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 8.787264823913574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49691975116729736
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.067347764968872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5821878910064697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5240150690078735
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.4790351390838623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3140023946762085
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6338055729866028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8245062828063965
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.097915530204773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1877950429916382
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4697527885437012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4238739013671875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7631343603134155
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4652973413467407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4063520133495331
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4482323229312897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.536245584487915
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8872695565223694
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0264896154403687
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8322834372520447
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3234726190567017
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2457029819488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.606459140777588
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46867161989212036
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3458384275436401
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2742879390716553
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9071269035339355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4098550081253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.443984031677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.381771206855774
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2124156951904297
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.461577832698822
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7414162158966064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6251552104949951
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.56717848777771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1839722394943237
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2264783382415771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.454958438873291
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5797057151794434
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.685218572616577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1206352710723877
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.036478042602539
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.9107489585876465
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4482760429382324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9397424459457397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1090205907821655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4289599061012268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.092133641242981
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1581032276153564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0605182647705078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4208792448043823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3594571352005005
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8312269449234009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4092592000961304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4279162585735321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5642940402030945
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6940395832061768
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4140385389328003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.669742226600647
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7649292349815369
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6028075218200684
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5300441384315491
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3720625340938568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.385087728500366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8002849817276
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9954957365989685
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1876301765441895
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6490944623947144
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9438294172286987
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1372499465942383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3713304996490479
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.701617956161499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6699119806289673
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.458821177482605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1098685264587402
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8846089839935303
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47643721103668213
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6168649792671204
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4448084831237793
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3064093589782715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.615921974182129
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2135422229766846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5106407403945923
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0898830890655518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0235841274261475
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4270954132080078
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5129798650741577
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4952530860900879
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6188410520553589
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1976304054260254
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4627654254436493
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6164802312850952
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.36436083912849426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.934234619140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.142503261566162
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45631277561187744
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.256847620010376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39159655570983887
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.415475994348526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41450634598731995
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6204020977020264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.869140148162842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1173696517944336
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3429534435272217
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.236921787261963
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40822434425354004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1612820625305176
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4957042932510376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2181379795074463
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.018950939178467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.358581781387329
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4750347137451172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2546145915985107
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5896540880203247
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6457843780517578
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5778690576553345
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45141729712486267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1046998500823975
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.294922113418579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.683871865272522
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.240510106086731
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.342499256134033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5398601293563843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7298415899276733
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3240126371383667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7095680236816406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0091744661331177
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4257672429084778
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.34077805280685425
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7648420333862305
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3585793972015381
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1242612600326538
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45700907707214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8175007104873657
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6578420400619507
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.977353811264038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4937822818756104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.436824768781662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7847814559936523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4015633761882782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4268731474876404
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7240031957626343
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1226248741149902
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4756358563899994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.613590717315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5542963147163391
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4677684009075165
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.49537208676338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2353190183639526
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.584766149520874
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.38446858525276184
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41760602593421936
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7439382076263428
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3968510627746582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9044419527053833
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7665218114852905
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6367720365524292
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5145774483680725
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.051353931427002
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1307802200317383
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.5359489917755127
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47711676359176636
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2300689220428467
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.9844423532485962
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4034811854362488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5472466945648193
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8412792086601257
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.277477741241455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2388710975646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1795257329940796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46712663769721985
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.05548095703125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6188480854034424
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3652421832084656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.217421531677246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3299872875213623
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8206440210342407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40278884768486023
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4929273724555969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4194705486297607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4114699363708496
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5956542491912842
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.50754714012146
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.102254867553711
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3406713902950287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.12729549407959
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.455946922302246
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45816487073898315
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0036134719848633
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0986740589141846
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.576755404472351
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2099727392196655
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4491533041000366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.335897207260132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3229204416275024
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.129994511604309
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9663823246955872
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4167200028896332
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3733625113964081
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.860374927520752
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40975138545036316
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4017059803009033
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8757072687149048
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.250165343284607
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6572495102882385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4588932991027832
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7233918905258179
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.47664859890937805
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.214115858078003
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.179860234260559
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4091229438781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3620377779006958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3865065574645996
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3341621160507202
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3992950916290283
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.6459827423095703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0726243257522583
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.67343270778656
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.314380407333374
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3027616739273071
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8074018955230713
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3974382281303406
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.192212462425232
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.854528546333313
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8404158353805542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3159122467041016
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.345033645629883
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.002395510673523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6827539205551147
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4568977355957031
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.210631847381592
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4351617991924286
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5433340072631836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4612109661102295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5703070163726807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7509045004844666
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2720065116882324
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6937603950500488
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1709188222885132
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7258377075195312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6806210279464722
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7817358374595642
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45848891139030457
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.167105793952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5837944746017456
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5077000856399536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8550872802734375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4836357831954956
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9568087458610535
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5984014868736267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3806509971618652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1946362257003784
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6967337131500244
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.15468168258667
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6392201781272888
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2508885860443115
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.016776442527771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4390650689601898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6513800621032715
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 5.353224277496338
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0221951007843018
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4500831961631775
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.250260591506958
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9719525575637817
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4584918022155762
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.8998398780822754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5239211916923523
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2754926681518555
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6530101299285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5343884825706482
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.321056604385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.616748332977295
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4378374814987183
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.38263738155365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5407376289367676
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5649811625480652
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.479156494140625
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2249928712844849
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9033110737800598
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4529038965702057
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.41962969303131104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4023650884628296
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3568493127822876
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2719948291778564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45285624265670776
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9935699105262756
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.85287606716156
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1380687952041626
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4959082305431366
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0396482944488525
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1271793842315674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4108756482601166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6220360398292542
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8730205297470093
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3328797817230225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7840901613235474
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.156285047531128
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42607271671295166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1282780170440674
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3627731800079346
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5482617616653442
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2397500276565552
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.43808498978614807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5135178565979004
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2835749387741089
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.253556489944458
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0788335800170898
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.104193925857544
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.118027687072754
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0884612798690796
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5704213380813599
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6170730590820312
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.597482919692993
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.451293408870697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.465201735496521
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5983315706253052
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1649197340011597
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3415943384170532
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7213356494903564
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.61233389377594
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0250369310379028
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2283539772033691
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2153990268707275
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.581916093826294
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2434189319610596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3051458597183228
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.306800365447998
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3464579582214355
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4096079468727112
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2123275995254517
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5531877875328064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0525405406951904
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.437375545501709
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5412683486938477
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.367919683456421
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3663270473480225
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48355600237846375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.105441093444824
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4488224685192108
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7297810316085815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4204678535461426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6233150959014893
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.311386227607727
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5014835596084595
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.100845217704773
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4325060248374939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4850332736968994
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7516000270843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42902669310569763
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5226167440414429
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.2878212928771973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5500639081001282
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6588790416717529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.65933096408844
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.263746738433838
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8831653594970703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6611312627792358
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4226993322372437
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.283147931098938
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.321697950363159
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8866236209869385
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8305375576019287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1027188301086426
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.7316064238548279
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1460049152374268
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8428848385810852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0507375001907349
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4315845966339111
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3617223501205444
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1459747552871704
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6822729706764221
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6750226020812988
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4693320691585541
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0002505779266357
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5317813158035278
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.872911810874939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6925958395004272
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3532116711139679
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2806789875030518
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4751565754413605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5711826682090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4820771217346191
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4154914617538452
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3948397636413574
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4454857409000397
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7322864532470703
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3484545946121216
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0826165676116943
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4511845111846924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1314163208007812
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5997835397720337
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.779860258102417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5757259726524353
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.42787232995033264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5332416892051697
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8722294569015503
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5658293962478638
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1767679452896118
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4341745674610138
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8268512487411499
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6858980655670166
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9087715148925781
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3802928030490875
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0373382568359375
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3094139099121094
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.593553066253662
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0201795101165771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.555022656917572
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4357282817363739
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6444628238677979
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9593550562858582
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3667648434638977
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3670146465301514
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3374744653701782
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.40698546171188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4647373557090759
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2368242740631104
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.04620099067688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.478319525718689
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.526094675064087
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5725388526916504
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.48239004611969
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3369568586349487
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5680673122406006
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5269630551338196
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.728787660598755
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.3463635444641113
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.549804925918579
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.417360305786133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46645089983940125
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.293250560760498
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2562415599823
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.080472707748413
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4469758868217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 9.969771385192871
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4757169187068939
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5477948188781738
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4427658319473267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3919521570205688
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1875410079956055
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962502002716064
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.46391353011131287
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3308457136154175
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.483492136001587
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5087605714797974
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5537488460540771
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3377985954284668
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7858390808105469
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4729266166687012
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.027830719947815
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4101666212081909
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0492308139801025
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4928109645843506
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4455633759498596
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45572593808174133
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2297892570495605
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5481687784194946
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.9447790384292603
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4963946044445038
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.825758695602417
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.622404932975769
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1923198699951172
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4674836993217468
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.627540647983551
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.45302334427833557
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.933095932006836
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5917606353759766
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.6070351600646973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.0783395767211914
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4267152547836304
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.3577767610549927
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2228772640228271
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.654480457305908
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.7554866075515747
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5225261449813843
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.676052451133728
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.48019421100616455
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.2581994533538818
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4061945378780365
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1962792873382568
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.528104543685913
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.8346753716468811
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.4550622701644897
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6836953163146973
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4985521733760834
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5561290979385376
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4398868978023529
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.1356608867645264
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.2061214447021484
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1489561796188354
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.39944973587989807
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.4279460906982422
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.982775866985321
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.8909363746643066
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5331312417984009
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5171066522598267
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.094020128250122
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.124638080596924
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.65777987241745
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 3.1796188354492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0536248683929443
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 4.82529878616333
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5534764528274536
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.3659361004829407
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.333631157875061
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6110179424285889
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.6765069961547852
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5339159965515137
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.5399007797241211
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.1266968250274658
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5575485229492188
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.0174809694290161
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 0.6358512043952942
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 2.935999631881714
- ]
- ]
- ]
- ],
- [
- [
- [
- [
- 1.5574467182159424
- ]
- ]
- ]
- ]
- ]
- },
- "/features/features.15/conv/conv.0/conv.0.2/Clip/fq_output_0": {
- "input_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 1.7994798421859741
- ]
- ],
- [
- [
- 0.3035694658756256
- ]
- ],
- [
- [
- 0.6143885254859924
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.8239181637763977
- ]
- ],
- [
- [
- 0.10600341111421585
- ]
- ],
- [
- [
- 0.2861042320728302
- ]
- ],
- [
- [
- 0.5212858319282532
- ]
- ],
- [
- [
- 0.09563253074884415
- ]
- ],
- [
- [
- 0.07007123529911041
- ]
- ],
- [
- [
- 0.38193488121032715
- ]
- ],
- [
- [
- 0.1592094451189041
- ]
- ],
- [
- [
- 1.3024524450302124
- ]
- ],
- [
- [
- 0.12212485074996948
- ]
- ],
- [
- [
- 1.0556665658950806
- ]
- ],
- [
- [
- 0.16012996435165405
- ]
- ],
- [
- [
- 0.28031301498413086
- ]
- ],
- [
- [
- 0.2156893014907837
- ]
- ],
- [
- [
- 0.0853792279958725
- ]
- ],
- [
- [
- 0.2523129880428314
- ]
- ],
- [
- [
- 0.10018447786569595
- ]
- ],
- [
- [
- 0.019789231941103935
- ]
- ],
- [
- [
- 0.49775853753089905
- ]
- ],
- [
- [
- 0.7520443201065063
- ]
- ],
- [
- [
- 1.555139183998108
- ]
- ],
- [
- [
- 0.9738794565200806
- ]
- ],
- [
- [
- 2.850891351699829
- ]
- ],
- [
- [
- 0.16019994020462036
- ]
- ],
- [
- [
- 0.3001266121864319
- ]
- ],
- [
- [
- 0.4700879752635956
- ]
- ],
- [
- [
- 0.11570100486278534
- ]
- ],
- [
- [
- 0.06643443554639816
- ]
- ],
- [
- [
- 0.06975045055150986
- ]
- ],
- [
- [
- 0.4252834916114807
- ]
- ],
- [
- [
- 0.32030558586120605
- ]
- ],
- [
- [
- 0.010377917438745499
- ]
- ],
- [
- [
- 1.0540422201156616
- ]
- ],
- [
- [
- 0.35643577575683594
- ]
- ],
- [
- [
- 1.490949273109436
- ]
- ],
- [
- [
- 0.0715961679816246
- ]
- ],
- [
- [
- 0.25352755188941956
- ]
- ],
- [
- [
- 0.6440162658691406
- ]
- ],
- [
- [
- 0.512607991695404
- ]
- ],
- [
- [
- 0.13790708780288696
- ]
- ],
- [
- [
- 1.428845763206482
- ]
- ],
- [
- [
- 0.7665776014328003
- ]
- ],
- [
- [
- 0.7105714082717896
- ]
- ],
- [
- [
- 0.7755852341651917
- ]
- ],
- [
- [
- 1.7686823606491089
- ]
- ],
- [
- [
- 0.2634192109107971
- ]
- ],
- [
- [
- 0.36411964893341064
- ]
- ],
- [
- [
- 0.6998905539512634
- ]
- ],
- [
- [
- 0.6980369091033936
- ]
- ],
- [
- [
- 0.008836846798658371
- ]
- ],
- [
- [
- 0.9824784994125366
- ]
- ],
- [
- [
- 0.11084015667438507
- ]
- ],
- [
- [
- 0.3191681504249573
- ]
- ],
- [
- [
- 0.6476951241493225
- ]
- ],
- [
- [
- 0.112803153693676
- ]
- ],
- [
- [
- 1.157572627067566
- ]
- ],
- [
- [
- 1.1138893365859985
- ]
- ],
- [
- [
- 0.3517724871635437
- ]
- ],
- [
- [
- 0.20353248715400696
- ]
- ],
- [
- [
- 0.7133340239524841
- ]
- ],
- [
- [
- 2.222640037536621
- ]
- ],
- [
- [
- 0.47142294049263
- ]
- ],
- [
- [
- 0.28099143505096436
- ]
- ],
- [
- [
- 0.21748463809490204
- ]
- ],
- [
- [
- 0.12581384181976318
- ]
- ],
- [
- [
- 1.873002290725708
- ]
- ],
- [
- [
- 1.3696948289871216
- ]
- ],
- [
- [
- 1.2191609144210815
- ]
- ],
- [
- [
- 0.18195044994354248
- ]
- ],
- [
- [
- 0.2514629364013672
- ]
- ],
- [
- [
- 0.24298112094402313
- ]
- ],
- [
- [
- 0.5142297148704529
- ]
- ],
- [
- [
- 1.7906087636947632
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09773656725883484
- ]
- ],
- [
- [
- 0.9674813747406006
- ]
- ],
- [
- [
- 0.30379050970077515
- ]
- ],
- [
- [
- 1.6307642459869385
- ]
- ],
- [
- [
- 1.2843302488327026
- ]
- ],
- [
- [
- 0.2747586667537689
- ]
- ],
- [
- [
- 0.6192562580108643
- ]
- ],
- [
- [
- 1.9845558404922485
- ]
- ],
- [
- [
- 1.6945178508758545
- ]
- ],
- [
- [
- 0.14020200073719025
- ]
- ],
- [
- [
- 2.2591371536254883
- ]
- ],
- [
- [
- 0.5742033123970032
- ]
- ],
- [
- [
- 1.807321548461914
- ]
- ],
- [
- [
- 1.8164548873901367
- ]
- ],
- [
- [
- 0.06905020028352737
- ]
- ],
- [
- [
- 0.08504386991262436
- ]
- ],
- [
- [
- 1.6801388263702393
- ]
- ],
- [
- [
- 0.6895384192466736
- ]
- ],
- [
- [
- 0.16937492787837982
- ]
- ],
- [
- [
- 2.194136381149292
- ]
- ],
- [
- [
- 0.07951782643795013
- ]
- ],
- [
- [
- 0.07276773452758789
- ]
- ],
- [
- [
- 0.33427348732948303
- ]
- ],
- [
- [
- 1.3142448663711548
- ]
- ],
- [
- [
- 0.3208943009376526
- ]
- ],
- [
- [
- 0.0697794184088707
- ]
- ],
- [
- [
- 1.1038038730621338
- ]
- ],
- [
- [
- 0.7453309297561646
- ]
- ],
- [
- [
- 0.12559202313423157
- ]
- ],
- [
- [
- 1.198648452758789
- ]
- ],
- [
- [
- 0.14792971312999725
- ]
- ],
- [
- [
- 0.12494213879108429
- ]
- ],
- [
- [
- 0.43254756927490234
- ]
- ],
- [
- [
- 1.4477695226669312
- ]
- ],
- [
- [
- 0.10696543753147125
- ]
- ],
- [
- [
- 0.0666474848985672
- ]
- ],
- [
- [
- 0.2806636095046997
- ]
- ],
- [
- [
- 0.2816017270088196
- ]
- ],
- [
- [
- 0.07185815274715424
- ]
- ],
- [
- [
- 0.2062959223985672
- ]
- ],
- [
- [
- 0.34868016839027405
- ]
- ],
- [
- [
- 2.474027156829834
- ]
- ],
- [
- [
- 0.1783621460199356
- ]
- ],
- [
- [
- 0.18335694074630737
- ]
- ],
- [
- [
- 0.62087082862854
- ]
- ],
- [
- [
- 0.9255132079124451
- ]
- ],
- [
- [
- 0.8462337255477905
- ]
- ],
- [
- [
- 1.0735540390014648
- ]
- ],
- [
- [
- 1.3797577619552612
- ]
- ],
- [
- [
- 0.0839504823088646
- ]
- ],
- [
- [
- 1.7198461294174194
- ]
- ],
- [
- [
- 0.25583022832870483
- ]
- ],
- [
- [
- 0.17709435522556305
- ]
- ],
- [
- [
- 0.11465634405612946
- ]
- ],
- [
- [
- 1.645253300666809
- ]
- ],
- [
- [
- 0.6472187638282776
- ]
- ],
- [
- [
- 0.2362632155418396
- ]
- ],
- [
- [
- 0.17606814205646515
- ]
- ],
- [
- [
- 0.4287264049053192
- ]
- ],
- [
- [
- 0.9208916425704956
- ]
- ],
- [
- [
- 0.6592022776603699
- ]
- ],
- [
- [
- 0.1322651207447052
- ]
- ],
- [
- [
- 1.8907957077026367
- ]
- ],
- [
- [
- 0.12017194926738739
- ]
- ],
- [
- [
- 1.537917137145996
- ]
- ],
- [
- [
- 1.215029239654541
- ]
- ],
- [
- [
- 0.06489577889442444
- ]
- ],
- [
- [
- 0.3489682972431183
- ]
- ],
- [
- [
- 0.1984502673149109
- ]
- ],
- [
- [
- 0.5703027844429016
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.483359456062317
- ]
- ],
- [
- [
- 0.6714504957199097
- ]
- ],
- [
- [
- 0.6193552613258362
- ]
- ],
- [
- [
- 1.3103922605514526
- ]
- ],
- [
- [
- 0.1407741904258728
- ]
- ],
- [
- [
- 0.27753227949142456
- ]
- ],
- [
- [
- 0.26462340354919434
- ]
- ],
- [
- [
- 0.0457460954785347
- ]
- ],
- [
- [
- 0.020440723747015
- ]
- ],
- [
- [
- 1.11348557472229
- ]
- ],
- [
- [
- 0.15970298647880554
- ]
- ],
- [
- [
- 0.32235458493232727
- ]
- ],
- [
- [
- 1.2628380060195923
- ]
- ],
- [
- [
- 0.02570287510752678
- ]
- ],
- [
- [
- 0.6455396413803101
- ]
- ],
- [
- [
- 0.04820819944143295
- ]
- ],
- [
- [
- 0.44471362233161926
- ]
- ],
- [
- [
- 0.021970462054014206
- ]
- ],
- [
- [
- 1.653502106666565
- ]
- ],
- [
- [
- 0.11147812008857727
- ]
- ],
- [
- [
- 0.5537562370300293
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11624374985694885
- ]
- ],
- [
- [
- 0.059943750500679016
- ]
- ],
- [
- [
- 0.20766416192054749
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14796613156795502
- ]
- ],
- [
- [
- 1.2808929681777954
- ]
- ],
- [
- [
- 0.19155532121658325
- ]
- ],
- [
- [
- 2.194138288497925
- ]
- ],
- [
- [
- 0.32579824328422546
- ]
- ],
- [
- [
- 1.3574016094207764
- ]
- ],
- [
- [
- 0.34289366006851196
- ]
- ],
- [
- [
- 3.1875905990600586
- ]
- ],
- [
- [
- 0.4732799530029297
- ]
- ],
- [
- [
- 1.0994069576263428
- ]
- ],
- [
- [
- 0.3828427791595459
- ]
- ],
- [
- [
- 0.6062192916870117
- ]
- ],
- [
- [
- 1.5403882265090942
- ]
- ],
- [
- [
- 0.2887178659439087
- ]
- ],
- [
- [
- 0.7011809349060059
- ]
- ],
- [
- [
- 1.5601133108139038
- ]
- ],
- [
- [
- 0.17681901156902313
- ]
- ],
- [
- [
- 0.30997589230537415
- ]
- ],
- [
- [
- 2.9471960067749023
- ]
- ],
- [
- [
- 2.3507275581359863
- ]
- ],
- [
- [
- 1.416545033454895
- ]
- ],
- [
- [
- 1.3693418502807617
- ]
- ],
- [
- [
- 0.8945351839065552
- ]
- ],
- [
- [
- 0.36087319254875183
- ]
- ],
- [
- [
- 0.08998262137174606
- ]
- ],
- [
- [
- 2.071683883666992
- ]
- ],
- [
- [
- 0.3159290850162506
- ]
- ],
- [
- [
- 0.46323665976524353
- ]
- ],
- [
- [
- 1.4625415802001953
- ]
- ],
- [
- [
- 0.21185056865215302
- ]
- ],
- [
- [
- 0.2420135736465454
- ]
- ],
- [
- [
- 0.6718655824661255
- ]
- ],
- [
- [
- 0.05989695340394974
- ]
- ],
- [
- [
- 0.1999865025281906
- ]
- ],
- [
- [
- 2.525557518005371
- ]
- ],
- [
- [
- 0.5823156833648682
- ]
- ],
- [
- [
- 0.2707390785217285
- ]
- ],
- [
- [
- 0.027327992022037506
- ]
- ],
- [
- [
- 1.4724910259246826
- ]
- ],
- [
- [
- 1.530744194984436
- ]
- ],
- [
- [
- 0.4450581669807434
- ]
- ],
- [
- [
- 0.9617024660110474
- ]
- ],
- [
- [
- 1.7359141111373901
- ]
- ],
- [
- [
- 0.0743817538022995
- ]
- ],
- [
- [
- 0.49719440937042236
- ]
- ],
- [
- [
- 3.0318455696105957
- ]
- ],
- [
- [
- 0.4780603051185608
- ]
- ],
- [
- [
- 0.7640471458435059
- ]
- ],
- [
- [
- 1.7229727506637573
- ]
- ],
- [
- [
- 0.21004053950309753
- ]
- ],
- [
- [
- 1.2863751649856567
- ]
- ],
- [
- [
- 2.0418643951416016
- ]
- ],
- [
- [
- 0.19208714365959167
- ]
- ],
- [
- [
- 0.3541069030761719
- ]
- ],
- [
- [
- 0.24688483774662018
- ]
- ],
- [
- [
- 0.13915866613388062
- ]
- ],
- [
- [
- 0.3385879695415497
- ]
- ],
- [
- [
- 0.17818620800971985
- ]
- ],
- [
- [
- 1.2081482410430908
- ]
- ],
- [
- [
- 1.9646538496017456
- ]
- ],
- [
- [
- 0.935590922832489
- ]
- ],
- [
- [
- 0.17554053664207458
- ]
- ],
- [
- [
- 2.102905035018921
- ]
- ],
- [
- [
- 0.8564662933349609
- ]
- ],
- [
- [
- 0.35107460618019104
- ]
- ],
- [
- [
- 1.543760895729065
- ]
- ],
- [
- [
- 2.129666566848755
- ]
- ],
- [
- [
- 0.3092176020145416
- ]
- ],
- [
- [
- 0.21217751502990723
- ]
- ],
- [
- [
- 3.0612118244171143
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4976041316986084
- ]
- ],
- [
- [
- 0.14592543244361877
- ]
- ],
- [
- [
- 0.0853651612997055
- ]
- ],
- [
- [
- 1.069905161857605
- ]
- ],
- [
- [
- 1.6556196212768555
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.254780650138855
- ]
- ],
- [
- [
- 1.713346004486084
- ]
- ],
- [
- [
- 0.23630115389823914
- ]
- ],
- [
- [
- 0.0868043452501297
- ]
- ],
- [
- [
- 0.3195277452468872
- ]
- ],
- [
- [
- 5.009836673736572
- ]
- ],
- [
- [
- 1.3575068712234497
- ]
- ],
- [
- [
- 0.16608749330043793
- ]
- ],
- [
- [
- 0.4464190602302551
- ]
- ],
- [
- [
- 0.07109091430902481
- ]
- ],
- [
- [
- 1.6186060905456543
- ]
- ],
- [
- [
- 0.7969021797180176
- ]
- ],
- [
- [
- 0.092486172914505
- ]
- ],
- [
- [
- 0.13002559542655945
- ]
- ],
- [
- [
- 0.21414926648139954
- ]
- ],
- [
- [
- 0.8628326654434204
- ]
- ],
- [
- [
- 0.4531368911266327
- ]
- ],
- [
- [
- 2.6138811111450195
- ]
- ],
- [
- [
- 2.758543014526367
- ]
- ],
- [
- [
- 0.3900551497936249
- ]
- ],
- [
- [
- 0.19735559821128845
- ]
- ],
- [
- [
- 0.24079757928848267
- ]
- ],
- [
- [
- 0.016058888286352158
- ]
- ],
- [
- [
- 0.3401319682598114
- ]
- ],
- [
- [
- 0.36841917037963867
- ]
- ],
- [
- [
- 2.886639356613159
- ]
- ],
- [
- [
- 0.07176503539085388
- ]
- ],
- [
- [
- 0.20902128517627716
- ]
- ],
- [
- [
- 0.11103008687496185
- ]
- ],
- [
- [
- 1.3627792596817017
- ]
- ],
- [
- [
- 0.10577543079853058
- ]
- ],
- [
- [
- 0.3167954683303833
- ]
- ],
- [
- [
- 0.08886968344449997
- ]
- ],
- [
- [
- 1.986669659614563
- ]
- ],
- [
- [
- 0.7247862815856934
- ]
- ],
- [
- [
- 0.3299286365509033
- ]
- ],
- [
- [
- 0.7316646575927734
- ]
- ],
- [
- [
- 0.4164857566356659
- ]
- ],
- [
- [
- 2.4557340145111084
- ]
- ],
- [
- [
- 0.5356250405311584
- ]
- ],
- [
- [
- 0.024020608514547348
- ]
- ],
- [
- [
- 1.4326623678207397
- ]
- ],
- [
- [
- 0.07649766653776169
- ]
- ],
- [
- [
- 1.542728066444397
- ]
- ],
- [
- [
- 0.10350125283002853
- ]
- ],
- [
- [
- 0.2000502347946167
- ]
- ],
- [
- [
- 3.13067889213562
- ]
- ],
- [
- [
- 0.4895341098308563
- ]
- ],
- [
- [
- 3.0001916885375977
- ]
- ],
- [
- [
- 0.4060172736644745
- ]
- ],
- [
- [
- 0.2072407752275467
- ]
- ],
- [
- [
- 1.7317965030670166
- ]
- ],
- [
- [
- 0.2090339958667755
- ]
- ],
- [
- [
- 0.057422250509262085
- ]
- ],
- [
- [
- 0.22275123000144958
- ]
- ],
- [
- [
- 1.4816659688949585
- ]
- ],
- [
- [
- 0.22199442982673645
- ]
- ],
- [
- [
- 0.5506131052970886
- ]
- ],
- [
- [
- 2.2679293155670166
- ]
- ],
- [
- [
- 0.04526631906628609
- ]
- ],
- [
- [
- 0.08301234990358353
- ]
- ],
- [
- [
- 1.5990328788757324
- ]
- ],
- [
- [
- 0.37370365858078003
- ]
- ],
- [
- [
- 0.31732112169265747
- ]
- ],
- [
- [
- 1.3535248041152954
- ]
- ],
- [
- [
- 0.13284818828105927
- ]
- ],
- [
- [
- 0.35701653361320496
- ]
- ],
- [
- [
- 1.8075554370880127
- ]
- ],
- [
- [
- 0.05899711698293686
- ]
- ],
- [
- [
- 1.4885022640228271
- ]
- ],
- [
- [
- 0.03709100931882858
- ]
- ],
- [
- [
- 0.29338565468788147
- ]
- ],
- [
- [
- 0.27053144574165344
- ]
- ],
- [
- [
- 0.2687520384788513
- ]
- ],
- [
- [
- 0.824195384979248
- ]
- ],
- [
- [
- 0.38355493545532227
- ]
- ],
- [
- [
- 0.1213226169347763
- ]
- ],
- [
- [
- 0.2760080397129059
- ]
- ],
- [
- [
- 0.29986533522605896
- ]
- ],
- [
- [
- 0.5676265954971313
- ]
- ],
- [
- [
- 0.3594823181629181
- ]
- ],
- [
- [
- 0.5581669807434082
- ]
- ],
- [
- [
- 0.30494630336761475
- ]
- ],
- [
- [
- 0.351928174495697
- ]
- ],
- [
- [
- 2.0883350372314453
- ]
- ],
- [
- [
- 2.044071674346924
- ]
- ],
- [
- [
- 1.489730954170227
- ]
- ],
- [
- [
- 1.9290165901184082
- ]
- ],
- [
- [
- 0.1769198179244995
- ]
- ],
- [
- [
- 0.10563486814498901
- ]
- ],
- [
- [
- 1.3276091814041138
- ]
- ],
- [
- [
- 1.3924410343170166
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5411568284034729
- ]
- ],
- [
- [
- 0.12386951595544815
- ]
- ],
- [
- [
- 0.833623468875885
- ]
- ],
- [
- [
- 0.18779942393302917
- ]
- ],
- [
- [
- 0.15430442988872528
- ]
- ],
- [
- [
- 0.19844470918178558
- ]
- ],
- [
- [
- 0.423301100730896
- ]
- ],
- [
- [
- 1.2729710340499878
- ]
- ],
- [
- [
- 0.13735808432102203
- ]
- ],
- [
- [
- 1.6938210725784302
- ]
- ],
- [
- [
- 0.18405230343341827
- ]
- ],
- [
- [
- 0.05795912817120552
- ]
- ],
- [
- [
- 1.5037022829055786
- ]
- ],
- [
- [
- 0.9522834420204163
- ]
- ],
- [
- [
- 0.296202152967453
- ]
- ],
- [
- [
- 0.29716017842292786
- ]
- ],
- [
- [
- 0.19691351056098938
- ]
- ],
- [
- [
- 1.4598686695098877
- ]
- ],
- [
- [
- 0.6973849534988403
- ]
- ],
- [
- [
- 0.21896222233772278
- ]
- ],
- [
- [
- 0.9280080199241638
- ]
- ],
- [
- [
- 0.9034790992736816
- ]
- ],
- [
- [
- 0.30135378241539
- ]
- ],
- [
- [
- 0.07181792706251144
- ]
- ],
- [
- [
- 0.5571975708007812
- ]
- ],
- [
- [
- 1.7741385698318481
- ]
- ],
- [
- [
- 0.08392082154750824
- ]
- ],
- [
- [
- 0.08914205431938171
- ]
- ],
- [
- [
- 0.058611780405044556
- ]
- ],
- [
- [
- 0.6191132068634033
- ]
- ],
- [
- [
- 0.14319771528244019
- ]
- ],
- [
- [
- 0.1246168315410614
- ]
- ],
- [
- [
- 0.6664812564849854
- ]
- ],
- [
- [
- 0.13933119177818298
- ]
- ],
- [
- [
- 1.582910418510437
- ]
- ],
- [
- [
- 0.12540112435817719
- ]
- ],
- [
- [
- 1.0343191623687744
- ]
- ],
- [
- [
- 0.051579397171735764
- ]
- ],
- [
- [
- 1.7459437847137451
- ]
- ],
- [
- [
- 2.8759779930114746
- ]
- ],
- [
- [
- 1.2316014766693115
- ]
- ],
- [
- [
- 0.11161988973617554
- ]
- ],
- [
- [
- 1.9607635736465454
- ]
- ],
- [
- [
- 1.1271884441375732
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7587171196937561
- ]
- ],
- [
- [
- 0.7504485845565796
- ]
- ],
- [
- [
- 0.22424684464931488
- ]
- ],
- [
- [
- 0.053012602031230927
- ]
- ],
- [
- [
- 2.2499208450317383
- ]
- ],
- [
- [
- 0.13155576586723328
- ]
- ],
- [
- [
- 0.19666537642478943
- ]
- ],
- [
- [
- 0.14468586444854736
- ]
- ],
- [
- [
- 0.6591532826423645
- ]
- ],
- [
- [
- 0.4909639060497284
- ]
- ],
- [
- [
- 1.4806489944458008
- ]
- ],
- [
- [
- 0.2336503118276596
- ]
- ],
- [
- [
- 1.3918877840042114
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1808314323425293
- ]
- ],
- [
- [
- 0.21506892144680023
- ]
- ],
- [
- [
- 0.19551561772823334
- ]
- ],
- [
- [
- 0.4933815598487854
- ]
- ],
- [
- [
- 0.32891878485679626
- ]
- ],
- [
- [
- 0.960154116153717
- ]
- ],
- [
- [
- 0.1242527961730957
- ]
- ],
- [
- [
- 0.16868427395820618
- ]
- ],
- [
- [
- 0.9086400270462036
- ]
- ],
- [
- [
- 0.3399033546447754
- ]
- ],
- [
- [
- 0.890563428401947
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1478737592697144
- ]
- ],
- [
- [
- 0.14981384575366974
- ]
- ],
- [
- [
- 0.05733659490942955
- ]
- ],
- [
- [
- 0.14890530705451965
- ]
- ],
- [
- [
- 0.03726917505264282
- ]
- ],
- [
- [
- 0.09453485906124115
- ]
- ],
- [
- [
- 0.798214852809906
- ]
- ],
- [
- [
- 1.127746343612671
- ]
- ],
- [
- [
- 0.14700642228126526
- ]
- ],
- [
- [
- 0.25973063707351685
- ]
- ],
- [
- [
- 2.1956253051757812
- ]
- ],
- [
- [
- 0.9385590553283691
- ]
- ],
- [
- [
- 1.0161073207855225
- ]
- ],
- [
- [
- 1.2304755449295044
- ]
- ],
- [
- [
- 0.41236111521720886
- ]
- ],
- [
- [
- 0.12602055072784424
- ]
- ],
- [
- [
- 0.10677817463874817
- ]
- ],
- [
- [
- 2.1546196937561035
- ]
- ],
- [
- [
- 0.6851147413253784
- ]
- ],
- [
- [
- 0.2915996015071869
- ]
- ],
- [
- [
- 0.16375048458576202
- ]
- ],
- [
- [
- 0.7047191262245178
- ]
- ],
- [
- [
- 0.2117166519165039
- ]
- ],
- [
- [
- 0.00948554277420044
- ]
- ],
- [
- [
- 0.11891289055347443
- ]
- ],
- [
- [
- 0.563387393951416
- ]
- ],
- [
- [
- 0.2230643481016159
- ]
- ],
- [
- [
- 0.40814146399497986
- ]
- ],
- [
- [
- 0.017434746026992798
- ]
- ],
- [
- [
- 2.375850200653076
- ]
- ],
- [
- [
- 0.19970057904720306
- ]
- ],
- [
- [
- 0.13738207519054413
- ]
- ],
- [
- [
- 1.356902003288269
- ]
- ],
- [
- [
- 0.061169691383838654
- ]
- ],
- [
- [
- 0.25980040431022644
- ]
- ],
- [
- [
- 1.6732678413391113
- ]
- ],
- [
- [
- 0.8310441374778748
- ]
- ],
- [
- [
- 0.12721997499465942
- ]
- ],
- [
- [
- 0.07189451158046722
- ]
- ],
- [
- [
- 0.19854815304279327
- ]
- ],
- [
- [
- 0.5798874497413635
- ]
- ],
- [
- [
- 0.17850764095783234
- ]
- ],
- [
- [
- 0.15618586540222168
- ]
- ],
- [
- [
- 0.02629561722278595
- ]
- ],
- [
- [
- 1.5730152130126953
- ]
- ],
- [
- [
- 0.18153023719787598
- ]
- ],
- [
- [
- 0.1330213099718094
- ]
- ],
- [
- [
- 0.022973384708166122
- ]
- ],
- [
- [
- 1.8445143699645996
- ]
- ],
- [
- [
- 0.19607168436050415
- ]
- ],
- [
- [
- 0.3220677375793457
- ]
- ],
- [
- [
- 0.3481725752353668
- ]
- ],
- [
- [
- 0.7761797308921814
- ]
- ],
- [
- [
- 0.22380445897579193
- ]
- ],
- [
- [
- 1.4639217853546143
- ]
- ],
- [
- [
- 0.2543796896934509
- ]
- ],
- [
- [
- 0.34451091289520264
- ]
- ],
- [
- [
- 0.6118456125259399
- ]
- ],
- [
- [
- 1.101017951965332
- ]
- ],
- [
- [
- 1.5551131963729858
- ]
- ],
- [
- [
- 0.3188707232475281
- ]
- ],
- [
- [
- 0.3532744348049164
- ]
- ],
- [
- [
- 0.16568496823310852
- ]
- ],
- [
- [
- 0.17914342880249023
- ]
- ],
- [
- [
- 0.23086246848106384
- ]
- ],
- [
- [
- 1.4507991075515747
- ]
- ],
- [
- [
- 0.3513825237751007
- ]
- ],
- [
- [
- 0.7703384757041931
- ]
- ],
- [
- [
- 0.06204233318567276
- ]
- ],
- [
- [
- 0.27032896876335144
- ]
- ],
- [
- [
- 0.96987384557724
- ]
- ],
- [
- [
- 0.22828161716461182
- ]
- ],
- [
- [
- 0.7167227268218994
- ]
- ],
- [
- [
- 0.357683002948761
- ]
- ],
- [
- [
- 0.5862022638320923
- ]
- ],
- [
- [
- 2.057554244995117
- ]
- ],
- [
- [
- 0.0764412060379982
- ]
- ],
- [
- [
- 0.1876797378063202
- ]
- ],
- [
- [
- 0.4331533908843994
- ]
- ],
- [
- [
- 0.6403228044509888
- ]
- ],
- [
- [
- 2.241065740585327
- ]
- ],
- [
- [
- 2.7522382736206055
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23436474800109863
- ]
- ],
- [
- [
- 0.5139488577842712
- ]
- ],
- [
- [
- 0.9470258355140686
- ]
- ],
- [
- [
- 2.41802716255188
- ]
- ],
- [
- [
- 1.43930184841156
- ]
- ],
- [
- [
- 0.020082101225852966
- ]
- ],
- [
- [
- 0.19601225852966309
- ]
- ],
- [
- [
- 0.043553322553634644
- ]
- ],
- [
- [
- 0.06408265978097916
- ]
- ],
- [
- [
- 1.0833159685134888
- ]
- ],
- [
- [
- 0.18881480395793915
- ]
- ],
- [
- [
- 0.12429459393024445
- ]
- ],
- [
- [
- 0.6506487727165222
- ]
- ],
- [
- [
- 1.4856951236724854
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7286641001701355
- ]
- ],
- [
- [
- 2.069939613342285
- ]
- ],
- [
- [
- 1.5320831537246704
- ]
- ],
- [
- [
- 0.08507426828145981
- ]
- ],
- [
- [
- 1.4008814096450806
- ]
- ],
- [
- [
- 0.045624859631061554
- ]
- ],
- [
- [
- 0.055402085185050964
- ]
- ],
- [
- [
- 0.27904772758483887
- ]
- ],
- [
- [
- 1.3869770765304565
- ]
- ],
- [
- [
- 1.7076711654663086
- ]
- ],
- [
- [
- 0.10176821798086166
- ]
- ],
- [
- [
- 1.061807632446289
- ]
- ],
- [
- [
- 1.2985591888427734
- ]
- ],
- [
- [
- 0.3084976077079773
- ]
- ],
- [
- [
- 0.2453746199607849
- ]
- ],
- [
- [
- 0.5224465727806091
- ]
- ],
- [
- [
- 0.03758847340941429
- ]
- ],
- [
- [
- 0.9600478410720825
- ]
- ],
- [
- [
- 1.6020961999893188
- ]
- ],
- [
- [
- 1.2818564176559448
- ]
- ],
- [
- [
- 0.3621954619884491
- ]
- ],
- [
- [
- 0.32391080260276794
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22349604964256287
- ]
- ],
- [
- [
- 0.41099658608436584
- ]
- ],
- [
- [
- 1.0304274559020996
- ]
- ],
- [
- [
- 2.080003023147583
- ]
- ],
- [
- [
- 0.11981449276208878
- ]
- ],
- [
- [
- 0.052023954689502716
- ]
- ],
- [
- [
- 1.7938952445983887
- ]
- ],
- [
- [
- 0.16428545117378235
- ]
- ],
- [
- [
- 0.7015822529792786
- ]
- ],
- [
- [
- 0.07625460624694824
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07494693994522095
- ]
- ],
- [
- [
- 0.6500649452209473
- ]
- ],
- [
- [
- 1.2489856481552124
- ]
- ],
- [
- [
- 0.10454617440700531
- ]
- ],
- [
- [
- 1.096338152885437
- ]
- ],
- [
- [
- 0.6162550449371338
- ]
- ],
- [
- [
- 0.08368479460477829
- ]
- ],
- [
- [
- 0.13287658989429474
- ]
- ],
- [
- [
- 0.15319834649562836
- ]
- ],
- [
- [
- 0.13029855489730835
- ]
- ],
- [
- [
- 1.8120478391647339
- ]
- ],
- [
- [
- 1.3529725074768066
- ]
- ],
- [
- [
- 0.15238356590270996
- ]
- ],
- [
- [
- 0.2750231921672821
- ]
- ],
- [
- [
- 0.41840559244155884
- ]
- ],
- [
- [
- 0.2756280303001404
- ]
- ],
- [
- [
- 1.3852847814559937
- ]
- ],
- [
- [
- 1.0041474103927612
- ]
- ],
- [
- [
- 0.16136883199214935
- ]
- ],
- [
- [
- 0.7559698820114136
- ]
- ],
- [
- [
- 0.13667446374893188
- ]
- ],
- [
- [
- 0.6787508130073547
- ]
- ],
- [
- [
- 0.3916734457015991
- ]
- ],
- [
- [
- 1.8385045528411865
- ]
- ],
- [
- [
- 0.3571780025959015
- ]
- ],
- [
- [
- 0.3773478865623474
- ]
- ],
- [
- [
- 1.267746925354004
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1678498983383179
- ]
- ],
- [
- [
- 1.4464927911758423
- ]
- ],
- [
- [
- 0.10330769419670105
- ]
- ],
- [
- [
- 0.9537649154663086
- ]
- ],
- [
- [
- 0.09564554691314697
- ]
- ],
- [
- [
- 0.028449781239032745
- ]
- ],
- [
- [
- 0.5050591230392456
- ]
- ],
- [
- [
- 0.9255319833755493
- ]
- ],
- [
- [
- 0.5541073679924011
- ]
- ],
- [
- [
- 0.6418242454528809
- ]
- ],
- [
- [
- 1.0337166786193848
- ]
- ],
- [
- [
- 0.503000020980835
- ]
- ],
- [
- [
- 1.3019276857376099
- ]
- ],
- [
- [
- 1.9326595067977905
- ]
- ],
- [
- [
- 0.09203249961137772
- ]
- ],
- [
- [
- 0.6526409983634949
- ]
- ],
- [
- [
- 1.2729476690292358
- ]
- ],
- [
- [
- 0.09578943252563477
- ]
- ],
- [
- [
- 1.411665916442871
- ]
- ],
- [
- [
- 1.9200834035873413
- ]
- ],
- [
- [
- 0.2607324719429016
- ]
- ],
- [
- [
- 0.6218791007995605
- ]
- ],
- [
- [
- 0.3735238015651703
- ]
- ],
- [
- [
- 0.33872532844543457
- ]
- ],
- [
- [
- 1.4783384799957275
- ]
- ],
- [
- [
- 0.28100499510765076
- ]
- ],
- [
- [
- 3.05935001373291
- ]
- ],
- [
- [
- 0.28113874793052673
- ]
- ],
- [
- [
- 0.6627438068389893
- ]
- ],
- [
- [
- 0.41907286643981934
- ]
- ],
- [
- [
- 0.4602971076965332
- ]
- ],
- [
- [
- 0.8598113656044006
- ]
- ],
- [
- [
- 1.5700523853302002
- ]
- ],
- [
- [
- 0.16183976829051971
- ]
- ],
- [
- [
- 0.11829409748315811
- ]
- ],
- [
- [
- 0.45299065113067627
- ]
- ],
- [
- [
- 0.03872666880488396
- ]
- ],
- [
- [
- 0.43234819173812866
- ]
- ],
- [
- [
- 0.9644150137901306
- ]
- ],
- [
- [
- 1.2200535535812378
- ]
- ],
- [
- [
- 0.22779101133346558
- ]
- ],
- [
- [
- 0.0663662999868393
- ]
- ],
- [
- [
- 0.37576013803482056
- ]
- ],
- [
- [
- 0.6228192448616028
- ]
- ],
- [
- [
- 0.31806686520576477
- ]
- ],
- [
- [
- 1.544082760810852
- ]
- ],
- [
- [
- 0.40634292364120483
- ]
- ],
- [
- [
- 0.15646064281463623
- ]
- ],
- [
- [
- 0.22464661300182343
- ]
- ],
- [
- [
- 0.4290127456188202
- ]
- ],
- [
- [
- 0.24760371446609497
- ]
- ],
- [
- [
- 0.35158902406692505
- ]
- ],
- [
- [
- 0.016952067613601685
- ]
- ],
- [
- [
- 0.23415809869766235
- ]
- ],
- [
- [
- 0.20506998896598816
- ]
- ],
- [
- [
- 0.05930846184492111
- ]
- ],
- [
- [
- 0.3096519410610199
- ]
- ],
- [
- [
- 1.138925313949585
- ]
- ],
- [
- [
- 0.19956442713737488
- ]
- ],
- [
- [
- 0.15883491933345795
- ]
- ],
- [
- [
- 0.956652820110321
- ]
- ],
- [
- [
- 0.05222325772047043
- ]
- ],
- [
- [
- 0.21183867752552032
- ]
- ],
- [
- [
- 0.0733618289232254
- ]
- ],
- [
- [
- 0.04278109595179558
- ]
- ],
- [
- [
- 0.3535197377204895
- ]
- ],
- [
- [
- 0.015952933579683304
- ]
- ],
- [
- [
- 0.4263390004634857
- ]
- ],
- [
- [
- 0.08478417992591858
- ]
- ],
- [
- [
- 1.4014041423797607
- ]
- ],
- [
- [
- 0.2121032029390335
- ]
- ],
- [
- [
- 1.308372974395752
- ]
- ],
- [
- [
- 0.1308174580335617
- ]
- ],
- [
- [
- 0.3753962218761444
- ]
- ],
- [
- [
- 3.05127215385437
- ]
- ],
- [
- [
- 0.009812243282794952
- ]
- ],
- [
- [
- 0.13035047054290771
- ]
- ],
- [
- [
- 0.7490164041519165
- ]
- ],
- [
- [
- 0.14572903513908386
- ]
- ],
- [
- [
- 0.6200140118598938
- ]
- ],
- [
- [
- 0.6079244613647461
- ]
- ],
- [
- [
- 0.10995987802743912
- ]
- ],
- [
- [
- 0.18057158589363098
- ]
- ],
- [
- [
- 0.2606818377971649
- ]
- ],
- [
- [
- 1.6127680540084839
- ]
- ],
- [
- [
- 0.09311303496360779
- ]
- ],
- [
- [
- 0.33434009552001953
- ]
- ],
- [
- [
- 0.0738675519824028
- ]
- ],
- [
- [
- 0.09924594312906265
- ]
- ],
- [
- [
- 2.8193578720092773
- ]
- ],
- [
- [
- 0.353459894657135
- ]
- ],
- [
- [
- 0.23253118991851807
- ]
- ],
- [
- [
- 0.7131125926971436
- ]
- ],
- [
- [
- 0.4123593270778656
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.24450019001960754
- ]
- ],
- [
- [
- 1.7119380235671997
- ]
- ],
- [
- [
- 0.8108257055282593
- ]
- ],
- [
- [
- 0.059635572135448456
- ]
- ],
- [
- [
- 0.06284566968679428
- ]
- ],
- [
- [
- 0.25135958194732666
- ]
- ],
- [
- [
- 0.4194510579109192
- ]
- ],
- [
- [
- 0.5789514780044556
- ]
- ],
- [
- [
- 1.5364311933517456
- ]
- ],
- [
- [
- 0.33210206031799316
- ]
- ],
- [
- [
- 0.3264879584312439
- ]
- ],
- [
- [
- 1.5614633560180664
- ]
- ],
- [
- [
- 0.13461503386497498
- ]
- ],
- [
- [
- 1.4029462337493896
- ]
- ],
- [
- [
- 0.21948230266571045
- ]
- ],
- [
- [
- 2.2156822681427
- ]
- ],
- [
- [
- 0.16225117444992065
- ]
- ],
- [
- [
- 0.06470146030187607
- ]
- ],
- [
- [
- 1.3173468112945557
- ]
- ],
- [
- [
- 3.1556026935577393
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23499873280525208
- ]
- ],
- [
- [
- 0.6725684404373169
- ]
- ],
- [
- [
- 1.2747098207473755
- ]
- ],
- [
- [
- 0.6658645272254944
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.090362548828125
- ]
- ],
- [
- [
- 0.2576884627342224
- ]
- ],
- [
- [
- 0.13563776016235352
- ]
- ],
- [
- [
- 0.24600547552108765
- ]
- ],
- [
- [
- 1.4303405284881592
- ]
- ],
- [
- [
- 0.8053527474403381
- ]
- ],
- [
- [
- 0.48751920461654663
- ]
- ],
- [
- [
- 0.11832091212272644
- ]
- ],
- [
- [
- 1.1778318881988525
- ]
- ],
- [
- [
- 0.26360198855400085
- ]
- ],
- [
- [
- 0.2750210762023926
- ]
- ],
- [
- [
- 0.440743625164032
- ]
- ],
- [
- [
- 2.1846418380737305
- ]
- ],
- [
- [
- 0.2769230902194977
- ]
- ],
- [
- [
- 2.4765841960906982
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0356438048183918
- ]
- ],
- [
- [
- 2.10862135887146
- ]
- ],
- [
- [
- 0.17321398854255676
- ]
- ],
- [
- [
- 0.31923341751098633
- ]
- ],
- [
- [
- 0.3481988310813904
- ]
- ],
- [
- [
- 0.23927763104438782
- ]
- ],
- [
- [
- 0.25891751050949097
- ]
- ],
- [
- [
- 1.7446080446243286
- ]
- ],
- [
- [
- 0.22856809198856354
- ]
- ],
- [
- [
- 3.2644097805023193
- ]
- ],
- [
- [
- 1.693770170211792
- ]
- ],
- [
- [
- 0.06206096336245537
- ]
- ],
- [
- [
- 0.421327143907547
- ]
- ],
- [
- [
- 1.7491410970687866
- ]
- ],
- [
- [
- 0.12904487550258636
- ]
- ],
- [
- [
- 0.7911637425422668
- ]
- ],
- [
- [
- 0.09795957058668137
- ]
- ],
- [
- [
- 1.2693432569503784
- ]
- ],
- [
- [
- 0.6838445067405701
- ]
- ],
- [
- [
- 0.15578526258468628
- ]
- ],
- [
- [
- 2.2978146076202393
- ]
- ],
- [
- [
- 1.680954933166504
- ]
- ],
- [
- [
- 0.4702944755554199
- ]
- ],
- [
- [
- 1.2930375337600708
- ]
- ],
- [
- [
- 0.2339732050895691
- ]
- ],
- [
- [
- 0.357724130153656
- ]
- ],
- [
- [
- 0.5328126549720764
- ]
- ],
- [
- [
- 0.15159015357494354
- ]
- ],
- [
- [
- 0.19282564520835876
- ]
- ],
- [
- [
- 1.0531865358352661
- ]
- ],
- [
- [
- 0.7557507753372192
- ]
- ],
- [
- [
- 0.2686452865600586
- ]
- ],
- [
- [
- 2.420388698577881
- ]
- ],
- [
- [
- 1.2229063510894775
- ]
- ],
- [
- [
- 1.6917593479156494
- ]
- ],
- [
- [
- 0.2578822076320648
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0447192192077637
- ]
- ],
- [
- [
- 0.24343031644821167
- ]
- ],
- [
- [
- 0.2852083444595337
- ]
- ],
- [
- [
- 0.4269509017467499
- ]
- ],
- [
- [
- 0.26153725385665894
- ]
- ],
- [
- [
- 3.289673328399658
- ]
- ],
- [
- [
- 0.13614118099212646
- ]
- ],
- [
- [
- 0.2199837565422058
- ]
- ],
- [
- [
- 0.3113464415073395
- ]
- ],
- [
- [
- 0.9499484300613403
- ]
- ],
- [
- [
- 0.1396247148513794
- ]
- ],
- [
- [
- 0.4266088604927063
- ]
- ],
- [
- [
- 0.6729026436805725
- ]
- ],
- [
- [
- 1.5188227891921997
- ]
- ],
- [
- [
- 0.10293160378932953
- ]
- ],
- [
- [
- 0.36661961674690247
- ]
- ],
- [
- [
- 3.682851791381836
- ]
- ],
- [
- [
- 0.1741040050983429
- ]
- ],
- [
- [
- 0.25975608825683594
- ]
- ],
- [
- [
- 0.28535977005958557
- ]
- ],
- [
- [
- 0.20796385407447815
- ]
- ],
- [
- [
- 0.3139301538467407
- ]
- ],
- [
- [
- 1.3914506435394287
- ]
- ],
- [
- [
- 0.21077153086662292
- ]
- ],
- [
- [
- 0.23945680260658264
- ]
- ],
- [
- [
- 0.011384531855583191
- ]
- ],
- [
- [
- 0.35365405678749084
- ]
- ],
- [
- [
- 0.19225452840328217
- ]
- ],
- [
- [
- 0.054847944527864456
- ]
- ],
- [
- [
- 0.4230521321296692
- ]
- ],
- [
- [
- 0.7319796085357666
- ]
- ],
- [
- [
- 0.15386393666267395
- ]
- ],
- [
- [
- 0.03799276053905487
- ]
- ],
- [
- [
- 0.06887584179639816
- ]
- ],
- [
- [
- 0.5836449861526489
- ]
- ],
- [
- [
- 0.2802751362323761
- ]
- ],
- [
- [
- 0.2584143280982971
- ]
- ],
- [
- [
- 0.15254473686218262
- ]
- ],
- [
- [
- 0.43793612718582153
- ]
- ],
- [
- [
- 0.35745692253112793
- ]
- ],
- [
- [
- 0.1981258988380432
- ]
- ],
- [
- [
- 1.8173056840896606
- ]
- ],
- [
- [
- 0.9959860444068909
- ]
- ],
- [
- [
- 0.6372546553611755
- ]
- ],
- [
- [
- 0.10526829957962036
- ]
- ],
- [
- [
- 0.23041795194149017
- ]
- ],
- [
- [
- 0.22598040103912354
- ]
- ],
- [
- [
- 0.2153630256652832
- ]
- ],
- [
- [
- 0.8632667660713196
- ]
- ],
- [
- [
- 0.023553544655442238
- ]
- ],
- [
- [
- 0.24501274526119232
- ]
- ],
- [
- [
- 0.7613914608955383
- ]
- ],
- [
- [
- 0.024350129067897797
- ]
- ],
- [
- [
- 0.9583755731582642
- ]
- ],
- [
- [
- 1.2599116563796997
- ]
- ],
- [
- [
- 0.33346816897392273
- ]
- ],
- [
- [
- 0.17955544590950012
- ]
- ],
- [
- [
- 0.2663589119911194
- ]
- ],
- [
- [
- 1.801690697669983
- ]
- ],
- [
- [
- 0.20854046940803528
- ]
- ],
- [
- [
- 0.17354699969291687
- ]
- ],
- [
- [
- 0.20155364274978638
- ]
- ],
- [
- [
- 0.6574788093566895
- ]
- ],
- [
- [
- 0.16792446374893188
- ]
- ],
- [
- [
- 0.2395111620426178
- ]
- ],
- [
- [
- 0.10622024536132812
- ]
- ],
- [
- [
- 0.3005228042602539
- ]
- ],
- [
- [
- 0.9433520436286926
- ]
- ],
- [
- [
- 1.9775326251983643
- ]
- ],
- [
- [
- 2.684288501739502
- ]
- ],
- [
- [
- 0.5023676753044128
- ]
- ],
- [
- [
- 0.7344871759414673
- ]
- ],
- [
- [
- 0.5504701137542725
- ]
- ],
- [
- [
- 0.7282639741897583
- ]
- ],
- [
- [
- 0.265209823846817
- ]
- ],
- [
- [
- 1.8776050806045532
- ]
- ],
- [
- [
- 0.239293172955513
- ]
- ],
- [
- [
- 0.3503606915473938
- ]
- ],
- [
- [
- 0.1013544350862503
- ]
- ],
- [
- [
- 0.22560974955558777
- ]
- ],
- [
- [
- 1.1193623542785645
- ]
- ],
- [
- [
- 0.17709511518478394
- ]
- ],
- [
- [
- 0.242536723613739
- ]
- ],
- [
- [
- 0.3775540590286255
- ]
- ],
- [
- [
- 0.8218222856521606
- ]
- ],
- [
- [
- 0.6818026900291443
- ]
- ],
- [
- [
- 1.0901256799697876
- ]
- ],
- [
- [
- 0.1710975170135498
- ]
- ],
- [
- [
- 0.3567202091217041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2687849998474121
- ]
- ],
- [
- [
- 0.1334092915058136
- ]
- ],
- [
- [
- 0.007840916514396667
- ]
- ],
- [
- [
- 1.2087318897247314
- ]
- ],
- [
- [
- 0.29320308566093445
- ]
- ],
- [
- [
- 1.29587984085083
- ]
- ],
- [
- [
- 0.2226525843143463
- ]
- ],
- [
- [
- 0.47817686200141907
- ]
- ],
- [
- [
- 1.4766713380813599
- ]
- ],
- [
- [
- 2.425774574279785
- ]
- ],
- [
- [
- 1.3178666830062866
- ]
- ],
- [
- [
- 0.06878609955310822
- ]
- ],
- [
- [
- 0.23895908892154694
- ]
- ],
- [
- [
- 0.26317304372787476
- ]
- ],
- [
- [
- 0.02926407940685749
- ]
- ],
- [
- [
- 0.33901941776275635
- ]
- ],
- [
- [
- 0.8154442310333252
- ]
- ],
- [
- [
- 0.17397424578666687
- ]
- ],
- [
- [
- 0.14105363190174103
- ]
- ],
- [
- [
- 0.25996920466423035
- ]
- ],
- [
- [
- 0.023876259103417397
- ]
- ],
- [
- [
- 0.15769214928150177
- ]
- ],
- [
- [
- 0.9538644552230835
- ]
- ],
- [
- [
- 0.3435669541358948
- ]
- ],
- [
- [
- 0.8633925318717957
- ]
- ],
- [
- [
- 0.8857290744781494
- ]
- ],
- [
- [
- 1.3669465780258179
- ]
- ],
- [
- [
- 0.49948611855506897
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.010177891701459885
- ]
- ],
- [
- [
- 0.1854819357395172
- ]
- ],
- [
- [
- 0.1552048623561859
- ]
- ],
- [
- [
- 0.0995122641324997
- ]
- ],
- [
- [
- 0.14796309173107147
- ]
- ],
- [
- [
- 0.6544198989868164
- ]
- ],
- [
- [
- 0.9055176973342896
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.207655906677246
- ]
- ],
- [
- [
- 0.2506996691226959
- ]
- ],
- [
- [
- 0.058690525591373444
- ]
- ],
- [
- [
- 0.3002372682094574
- ]
- ],
- [
- [
- 0.22949957847595215
- ]
- ],
- [
- [
- 0.17696613073349
- ]
- ],
- [
- [
- 0.19616100192070007
- ]
- ],
- [
- [
- 0.9860163331031799
- ]
- ],
- [
- [
- 0.3674675226211548
- ]
- ],
- [
- [
- 0.4743616580963135
- ]
- ],
- [
- [
- 0.12238746881484985
- ]
- ],
- [
- [
- 0.35176655650138855
- ]
- ],
- [
- [
- 1.1259992122650146
- ]
- ],
- [
- [
- 1.5546212196350098
- ]
- ],
- [
- [
- 1.4725687503814697
- ]
- ],
- [
- [
- 0.06957946717739105
- ]
- ],
- [
- [
- 0.7570919394493103
- ]
- ],
- [
- [
- 0.31193602085113525
- ]
- ],
- [
- [
- 1.80949068069458
- ]
- ],
- [
- [
- 0.39208298921585083
- ]
- ],
- [
- [
- 0.4229605197906494
- ]
- ],
- [
- [
- 0.3802146017551422
- ]
- ],
- [
- [
- 1.2302273511886597
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11367816478013992
- ]
- ],
- [
- [
- 0.3087758421897888
- ]
- ],
- [
- [
- 0.2700614929199219
- ]
- ],
- [
- [
- 0.33305129408836365
- ]
- ],
- [
- [
- 0.11333055049180984
- ]
- ],
- [
- [
- 0.0065615917555987835
- ]
- ],
- [
- [
- 0.35194969177246094
- ]
- ],
- [
- [
- 1.5689265727996826
- ]
- ],
- [
- [
- 1.5475448369979858
- ]
- ],
- [
- [
- 0.08915680646896362
- ]
- ],
- [
- [
- 0.14344248175621033
- ]
- ],
- [
- [
- 0.9142073392868042
- ]
- ],
- [
- [
- 0.1635550558567047
- ]
- ],
- [
- [
- 1.9063082933425903
- ]
- ],
- [
- [
- 1.2558708190917969
- ]
- ],
- [
- [
- 2.4940953254699707
- ]
- ],
- [
- [
- 0.11499832570552826
- ]
- ],
- [
- [
- 1.5634838342666626
- ]
- ],
- [
- [
- 0.1766829490661621
- ]
- ],
- [
- [
- 0.35927122831344604
- ]
- ],
- [
- [
- 1.095963478088379
- ]
- ],
- [
- [
- 0.39958274364471436
- ]
- ],
- [
- [
- 0.343924343585968
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21257542073726654
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.375520944595337
- ]
- ],
- [
- [
- 1.3119572401046753
- ]
- ],
- [
- [
- 0.3306201994419098
- ]
- ],
- [
- [
- 1.2485096454620361
- ]
- ],
- [
- [
- 0.960999608039856
- ]
- ],
- [
- [
- 1.291947603225708
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.3099791705608368
- ]
- ],
- [
- [
- 0.5578465461730957
- ]
- ],
- [
- [
- 2.077660083770752
- ]
- ],
- [
- [
- 0.15683333575725555
- ]
- ],
- [
- [
- 0.24106794595718384
- ]
- ],
- [
- [
- 0.008111894130706787
- ]
- ],
- [
- [
- 1.2014604806900024
- ]
- ],
- [
- [
- 0.6909114718437195
- ]
- ],
- [
- [
- 0.22560809552669525
- ]
- ],
- [
- [
- 0.2887478172779083
- ]
- ],
- [
- [
- 0.32313817739486694
- ]
- ],
- [
- [
- 2.7349133491516113
- ]
- ],
- [
- [
- 0.1252346783876419
- ]
- ],
- [
- [
- 0.2036381959915161
- ]
- ],
- [
- [
- 2.3500750064849854
- ]
- ],
- [
- [
- 1.5867477655410767
- ]
- ],
- [
- [
- 0.5716887712478638
- ]
- ],
- [
- [
- 0.2690170407295227
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.2295875549316406
- ]
- ],
- [
- [
- 0.03169985115528107
- ]
- ],
- [
- [
- 0.059354256838560104
- ]
- ],
- [
- [
- 1.3628817796707153
- ]
- ],
- [
- [
- 0.5518419146537781
- ]
- ],
- [
- [
- 0.16231653094291687
- ]
- ],
- [
- [
- 0.3115463852882385
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- -0.0008062992128543556
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ],
- [
- [
- 0.0
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 1.7994798421859741
- ]
- ],
- [
- [
- 0.3035694658756256
- ]
- ],
- [
- [
- 0.6143885254859924
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.8239181637763977
- ]
- ],
- [
- [
- 0.10600341111421585
- ]
- ],
- [
- [
- 0.2861042320728302
- ]
- ],
- [
- [
- 0.5212858319282532
- ]
- ],
- [
- [
- 0.09563253074884415
- ]
- ],
- [
- [
- 0.07007123529911041
- ]
- ],
- [
- [
- 0.38193488121032715
- ]
- ],
- [
- [
- 0.1592094451189041
- ]
- ],
- [
- [
- 1.3024524450302124
- ]
- ],
- [
- [
- 0.12212485074996948
- ]
- ],
- [
- [
- 1.0556665658950806
- ]
- ],
- [
- [
- 0.16012996435165405
- ]
- ],
- [
- [
- 0.28031301498413086
- ]
- ],
- [
- [
- 0.2156893014907837
- ]
- ],
- [
- [
- 0.0853792279958725
- ]
- ],
- [
- [
- 0.2523129880428314
- ]
- ],
- [
- [
- 0.10018447786569595
- ]
- ],
- [
- [
- 0.019789231941103935
- ]
- ],
- [
- [
- 0.49775853753089905
- ]
- ],
- [
- [
- 0.7520443201065063
- ]
- ],
- [
- [
- 1.555139183998108
- ]
- ],
- [
- [
- 0.9738794565200806
- ]
- ],
- [
- [
- 2.850891351699829
- ]
- ],
- [
- [
- 0.16019994020462036
- ]
- ],
- [
- [
- 0.3001266121864319
- ]
- ],
- [
- [
- 0.4700879752635956
- ]
- ],
- [
- [
- 0.11570100486278534
- ]
- ],
- [
- [
- 0.06643443554639816
- ]
- ],
- [
- [
- 0.06975045055150986
- ]
- ],
- [
- [
- 0.4252834916114807
- ]
- ],
- [
- [
- 0.32030558586120605
- ]
- ],
- [
- [
- 0.010377917438745499
- ]
- ],
- [
- [
- 1.0540422201156616
- ]
- ],
- [
- [
- 0.35643577575683594
- ]
- ],
- [
- [
- 1.490949273109436
- ]
- ],
- [
- [
- 0.0715961679816246
- ]
- ],
- [
- [
- 0.25352755188941956
- ]
- ],
- [
- [
- 0.6440162658691406
- ]
- ],
- [
- [
- 0.512607991695404
- ]
- ],
- [
- [
- 0.13790708780288696
- ]
- ],
- [
- [
- 1.428845763206482
- ]
- ],
- [
- [
- 0.7665776014328003
- ]
- ],
- [
- [
- 0.7105714082717896
- ]
- ],
- [
- [
- 0.7755852341651917
- ]
- ],
- [
- [
- 1.7686823606491089
- ]
- ],
- [
- [
- 0.2634192109107971
- ]
- ],
- [
- [
- 0.36411964893341064
- ]
- ],
- [
- [
- 0.6998905539512634
- ]
- ],
- [
- [
- 0.6980369091033936
- ]
- ],
- [
- [
- 0.008836846798658371
- ]
- ],
- [
- [
- 0.9824784994125366
- ]
- ],
- [
- [
- 0.11084015667438507
- ]
- ],
- [
- [
- 0.3191681504249573
- ]
- ],
- [
- [
- 0.6476951241493225
- ]
- ],
- [
- [
- 0.112803153693676
- ]
- ],
- [
- [
- 1.157572627067566
- ]
- ],
- [
- [
- 1.1138893365859985
- ]
- ],
- [
- [
- 0.3517724871635437
- ]
- ],
- [
- [
- 0.20353248715400696
- ]
- ],
- [
- [
- 0.7133340239524841
- ]
- ],
- [
- [
- 2.222640037536621
- ]
- ],
- [
- [
- 0.47142294049263
- ]
- ],
- [
- [
- 0.28099143505096436
- ]
- ],
- [
- [
- 0.21748463809490204
- ]
- ],
- [
- [
- 0.12581384181976318
- ]
- ],
- [
- [
- 1.873002290725708
- ]
- ],
- [
- [
- 1.3696948289871216
- ]
- ],
- [
- [
- 1.2191609144210815
- ]
- ],
- [
- [
- 0.18195044994354248
- ]
- ],
- [
- [
- 0.2514629364013672
- ]
- ],
- [
- [
- 0.24298112094402313
- ]
- ],
- [
- [
- 0.5142297148704529
- ]
- ],
- [
- [
- 1.7906087636947632
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.09773656725883484
- ]
- ],
- [
- [
- 0.9674813747406006
- ]
- ],
- [
- [
- 0.30379050970077515
- ]
- ],
- [
- [
- 1.6307642459869385
- ]
- ],
- [
- [
- 1.2843302488327026
- ]
- ],
- [
- [
- 0.2747586667537689
- ]
- ],
- [
- [
- 0.6192562580108643
- ]
- ],
- [
- [
- 1.9845558404922485
- ]
- ],
- [
- [
- 1.6945178508758545
- ]
- ],
- [
- [
- 0.14020200073719025
- ]
- ],
- [
- [
- 2.2591371536254883
- ]
- ],
- [
- [
- 0.5742033123970032
- ]
- ],
- [
- [
- 1.807321548461914
- ]
- ],
- [
- [
- 1.8164548873901367
- ]
- ],
- [
- [
- 0.06905020028352737
- ]
- ],
- [
- [
- 0.08504386991262436
- ]
- ],
- [
- [
- 1.6801388263702393
- ]
- ],
- [
- [
- 0.6895384192466736
- ]
- ],
- [
- [
- 0.16937492787837982
- ]
- ],
- [
- [
- 2.194136381149292
- ]
- ],
- [
- [
- 0.07951782643795013
- ]
- ],
- [
- [
- 0.07276773452758789
- ]
- ],
- [
- [
- 0.33427348732948303
- ]
- ],
- [
- [
- 1.3142448663711548
- ]
- ],
- [
- [
- 0.3208943009376526
- ]
- ],
- [
- [
- 0.0697794184088707
- ]
- ],
- [
- [
- 1.1038038730621338
- ]
- ],
- [
- [
- 0.7453309297561646
- ]
- ],
- [
- [
- 0.12559202313423157
- ]
- ],
- [
- [
- 1.198648452758789
- ]
- ],
- [
- [
- 0.14792971312999725
- ]
- ],
- [
- [
- 0.12494213879108429
- ]
- ],
- [
- [
- 0.43254756927490234
- ]
- ],
- [
- [
- 1.4477695226669312
- ]
- ],
- [
- [
- 0.10696543753147125
- ]
- ],
- [
- [
- 0.0666474848985672
- ]
- ],
- [
- [
- 0.2806636095046997
- ]
- ],
- [
- [
- 0.2816017270088196
- ]
- ],
- [
- [
- 0.07185815274715424
- ]
- ],
- [
- [
- 0.2062959223985672
- ]
- ],
- [
- [
- 0.34868016839027405
- ]
- ],
- [
- [
- 2.474027156829834
- ]
- ],
- [
- [
- 0.1783621460199356
- ]
- ],
- [
- [
- 0.18335694074630737
- ]
- ],
- [
- [
- 0.62087082862854
- ]
- ],
- [
- [
- 0.9255132079124451
- ]
- ],
- [
- [
- 0.8462337255477905
- ]
- ],
- [
- [
- 1.0735540390014648
- ]
- ],
- [
- [
- 1.3797577619552612
- ]
- ],
- [
- [
- 0.0839504823088646
- ]
- ],
- [
- [
- 1.7198461294174194
- ]
- ],
- [
- [
- 0.25583022832870483
- ]
- ],
- [
- [
- 0.17709435522556305
- ]
- ],
- [
- [
- 0.11465634405612946
- ]
- ],
- [
- [
- 1.645253300666809
- ]
- ],
- [
- [
- 0.6472187638282776
- ]
- ],
- [
- [
- 0.2362632155418396
- ]
- ],
- [
- [
- 0.17606814205646515
- ]
- ],
- [
- [
- 0.4287264049053192
- ]
- ],
- [
- [
- 0.9208916425704956
- ]
- ],
- [
- [
- 0.6592022776603699
- ]
- ],
- [
- [
- 0.1322651207447052
- ]
- ],
- [
- [
- 1.8907957077026367
- ]
- ],
- [
- [
- 0.12017194926738739
- ]
- ],
- [
- [
- 1.537917137145996
- ]
- ],
- [
- [
- 1.215029239654541
- ]
- ],
- [
- [
- 0.06489577889442444
- ]
- ],
- [
- [
- 0.3489682972431183
- ]
- ],
- [
- [
- 0.1984502673149109
- ]
- ],
- [
- [
- 0.5703027844429016
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.483359456062317
- ]
- ],
- [
- [
- 0.6714504957199097
- ]
- ],
- [
- [
- 0.6193552613258362
- ]
- ],
- [
- [
- 1.3103922605514526
- ]
- ],
- [
- [
- 0.1407741904258728
- ]
- ],
- [
- [
- 0.27753227949142456
- ]
- ],
- [
- [
- 0.26462340354919434
- ]
- ],
- [
- [
- 0.0457460954785347
- ]
- ],
- [
- [
- 0.020440723747015
- ]
- ],
- [
- [
- 1.11348557472229
- ]
- ],
- [
- [
- 0.15970298647880554
- ]
- ],
- [
- [
- 0.32235458493232727
- ]
- ],
- [
- [
- 1.2628380060195923
- ]
- ],
- [
- [
- 0.02570287510752678
- ]
- ],
- [
- [
- 0.6455396413803101
- ]
- ],
- [
- [
- 0.04820819944143295
- ]
- ],
- [
- [
- 0.44471362233161926
- ]
- ],
- [
- [
- 0.021970462054014206
- ]
- ],
- [
- [
- 1.653502106666565
- ]
- ],
- [
- [
- 0.11147812008857727
- ]
- ],
- [
- [
- 0.5537562370300293
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11624374985694885
- ]
- ],
- [
- [
- 0.059943750500679016
- ]
- ],
- [
- [
- 0.20766416192054749
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.14796613156795502
- ]
- ],
- [
- [
- 1.2808929681777954
- ]
- ],
- [
- [
- 0.19155532121658325
- ]
- ],
- [
- [
- 2.194138288497925
- ]
- ],
- [
- [
- 0.32579824328422546
- ]
- ],
- [
- [
- 1.3574016094207764
- ]
- ],
- [
- [
- 0.34289366006851196
- ]
- ],
- [
- [
- 3.1875905990600586
- ]
- ],
- [
- [
- 0.4732799530029297
- ]
- ],
- [
- [
- 1.0994069576263428
- ]
- ],
- [
- [
- 0.3828427791595459
- ]
- ],
- [
- [
- 0.6062192916870117
- ]
- ],
- [
- [
- 1.5403882265090942
- ]
- ],
- [
- [
- 0.2887178659439087
- ]
- ],
- [
- [
- 0.7011809349060059
- ]
- ],
- [
- [
- 1.5601133108139038
- ]
- ],
- [
- [
- 0.17681901156902313
- ]
- ],
- [
- [
- 0.30997589230537415
- ]
- ],
- [
- [
- 2.9471960067749023
- ]
- ],
- [
- [
- 2.3507275581359863
- ]
- ],
- [
- [
- 1.416545033454895
- ]
- ],
- [
- [
- 1.3693418502807617
- ]
- ],
- [
- [
- 0.8945351839065552
- ]
- ],
- [
- [
- 0.36087319254875183
- ]
- ],
- [
- [
- 0.08998262137174606
- ]
- ],
- [
- [
- 2.071683883666992
- ]
- ],
- [
- [
- 0.3159290850162506
- ]
- ],
- [
- [
- 0.46323665976524353
- ]
- ],
- [
- [
- 1.4625415802001953
- ]
- ],
- [
- [
- 0.21185056865215302
- ]
- ],
- [
- [
- 0.2420135736465454
- ]
- ],
- [
- [
- 0.6718655824661255
- ]
- ],
- [
- [
- 0.05989695340394974
- ]
- ],
- [
- [
- 0.1999865025281906
- ]
- ],
- [
- [
- 2.525557518005371
- ]
- ],
- [
- [
- 0.5823156833648682
- ]
- ],
- [
- [
- 0.2707390785217285
- ]
- ],
- [
- [
- 0.027327992022037506
- ]
- ],
- [
- [
- 1.4724910259246826
- ]
- ],
- [
- [
- 1.530744194984436
- ]
- ],
- [
- [
- 0.4450581669807434
- ]
- ],
- [
- [
- 0.9617024660110474
- ]
- ],
- [
- [
- 1.7359141111373901
- ]
- ],
- [
- [
- 0.0743817538022995
- ]
- ],
- [
- [
- 0.49719440937042236
- ]
- ],
- [
- [
- 3.0318455696105957
- ]
- ],
- [
- [
- 0.4780603051185608
- ]
- ],
- [
- [
- 0.7640471458435059
- ]
- ],
- [
- [
- 1.7229727506637573
- ]
- ],
- [
- [
- 0.21004053950309753
- ]
- ],
- [
- [
- 1.2863751649856567
- ]
- ],
- [
- [
- 2.0418643951416016
- ]
- ],
- [
- [
- 0.19208714365959167
- ]
- ],
- [
- [
- 0.3541069030761719
- ]
- ],
- [
- [
- 0.24688483774662018
- ]
- ],
- [
- [
- 0.13915866613388062
- ]
- ],
- [
- [
- 0.3385879695415497
- ]
- ],
- [
- [
- 0.17818620800971985
- ]
- ],
- [
- [
- 1.2081482410430908
- ]
- ],
- [
- [
- 1.9646538496017456
- ]
- ],
- [
- [
- 0.935590922832489
- ]
- ],
- [
- [
- 0.17554053664207458
- ]
- ],
- [
- [
- 2.102905035018921
- ]
- ],
- [
- [
- 0.8564662933349609
- ]
- ],
- [
- [
- 0.35107460618019104
- ]
- ],
- [
- [
- 1.543760895729065
- ]
- ],
- [
- [
- 2.129666566848755
- ]
- ],
- [
- [
- 0.3092176020145416
- ]
- ],
- [
- [
- 0.21217751502990723
- ]
- ],
- [
- [
- 3.0612118244171143
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.4976041316986084
- ]
- ],
- [
- [
- 0.14592543244361877
- ]
- ],
- [
- [
- 0.0853651612997055
- ]
- ],
- [
- [
- 1.069905161857605
- ]
- ],
- [
- [
- 1.6556196212768555
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.254780650138855
- ]
- ],
- [
- [
- 1.713346004486084
- ]
- ],
- [
- [
- 0.23630115389823914
- ]
- ],
- [
- [
- 0.0868043452501297
- ]
- ],
- [
- [
- 0.3195277452468872
- ]
- ],
- [
- [
- 5.009836673736572
- ]
- ],
- [
- [
- 1.3575068712234497
- ]
- ],
- [
- [
- 0.16608749330043793
- ]
- ],
- [
- [
- 0.4464190602302551
- ]
- ],
- [
- [
- 0.07109091430902481
- ]
- ],
- [
- [
- 1.6186060905456543
- ]
- ],
- [
- [
- 0.7969021797180176
- ]
- ],
- [
- [
- 0.092486172914505
- ]
- ],
- [
- [
- 0.13002559542655945
- ]
- ],
- [
- [
- 0.21414926648139954
- ]
- ],
- [
- [
- 0.8628326654434204
- ]
- ],
- [
- [
- 0.4531368911266327
- ]
- ],
- [
- [
- 2.6138811111450195
- ]
- ],
- [
- [
- 2.758543014526367
- ]
- ],
- [
- [
- 0.3900551497936249
- ]
- ],
- [
- [
- 0.19735559821128845
- ]
- ],
- [
- [
- 0.24079757928848267
- ]
- ],
- [
- [
- 0.016058888286352158
- ]
- ],
- [
- [
- 0.3401319682598114
- ]
- ],
- [
- [
- 0.36841917037963867
- ]
- ],
- [
- [
- 2.886639356613159
- ]
- ],
- [
- [
- 0.07176503539085388
- ]
- ],
- [
- [
- 0.20902128517627716
- ]
- ],
- [
- [
- 0.11103008687496185
- ]
- ],
- [
- [
- 1.3627792596817017
- ]
- ],
- [
- [
- 0.10577543079853058
- ]
- ],
- [
- [
- 0.3167954683303833
- ]
- ],
- [
- [
- 0.08886968344449997
- ]
- ],
- [
- [
- 1.986669659614563
- ]
- ],
- [
- [
- 0.7247862815856934
- ]
- ],
- [
- [
- 0.3299286365509033
- ]
- ],
- [
- [
- 0.7316646575927734
- ]
- ],
- [
- [
- 0.4164857566356659
- ]
- ],
- [
- [
- 2.4557340145111084
- ]
- ],
- [
- [
- 0.5356250405311584
- ]
- ],
- [
- [
- 0.024020608514547348
- ]
- ],
- [
- [
- 1.4326623678207397
- ]
- ],
- [
- [
- 0.07649766653776169
- ]
- ],
- [
- [
- 1.542728066444397
- ]
- ],
- [
- [
- 0.10350125283002853
- ]
- ],
- [
- [
- 0.2000502347946167
- ]
- ],
- [
- [
- 3.13067889213562
- ]
- ],
- [
- [
- 0.4895341098308563
- ]
- ],
- [
- [
- 3.0001916885375977
- ]
- ],
- [
- [
- 0.4060172736644745
- ]
- ],
- [
- [
- 0.2072407752275467
- ]
- ],
- [
- [
- 1.7317965030670166
- ]
- ],
- [
- [
- 0.2090339958667755
- ]
- ],
- [
- [
- 0.057422250509262085
- ]
- ],
- [
- [
- 0.22275123000144958
- ]
- ],
- [
- [
- 1.4816659688949585
- ]
- ],
- [
- [
- 0.22199442982673645
- ]
- ],
- [
- [
- 0.5506131052970886
- ]
- ],
- [
- [
- 2.2679293155670166
- ]
- ],
- [
- [
- 0.04526631906628609
- ]
- ],
- [
- [
- 0.08301234990358353
- ]
- ],
- [
- [
- 1.5990328788757324
- ]
- ],
- [
- [
- 0.37370365858078003
- ]
- ],
- [
- [
- 0.31732112169265747
- ]
- ],
- [
- [
- 1.3535248041152954
- ]
- ],
- [
- [
- 0.13284818828105927
- ]
- ],
- [
- [
- 0.35701653361320496
- ]
- ],
- [
- [
- 1.8075554370880127
- ]
- ],
- [
- [
- 0.05899711698293686
- ]
- ],
- [
- [
- 1.4885022640228271
- ]
- ],
- [
- [
- 0.03709100931882858
- ]
- ],
- [
- [
- 0.29338565468788147
- ]
- ],
- [
- [
- 0.27053144574165344
- ]
- ],
- [
- [
- 0.2687520384788513
- ]
- ],
- [
- [
- 0.824195384979248
- ]
- ],
- [
- [
- 0.38355493545532227
- ]
- ],
- [
- [
- 0.1213226169347763
- ]
- ],
- [
- [
- 0.2760080397129059
- ]
- ],
- [
- [
- 0.29986533522605896
- ]
- ],
- [
- [
- 0.5676265954971313
- ]
- ],
- [
- [
- 0.3594823181629181
- ]
- ],
- [
- [
- 0.5581669807434082
- ]
- ],
- [
- [
- 0.30494630336761475
- ]
- ],
- [
- [
- 0.351928174495697
- ]
- ],
- [
- [
- 2.0883350372314453
- ]
- ],
- [
- [
- 2.044071674346924
- ]
- ],
- [
- [
- 1.489730954170227
- ]
- ],
- [
- [
- 1.9290165901184082
- ]
- ],
- [
- [
- 0.1769198179244995
- ]
- ],
- [
- [
- 0.10563486814498901
- ]
- ],
- [
- [
- 1.3276091814041138
- ]
- ],
- [
- [
- 1.3924410343170166
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.5411568284034729
- ]
- ],
- [
- [
- 0.12386951595544815
- ]
- ],
- [
- [
- 0.833623468875885
- ]
- ],
- [
- [
- 0.18779942393302917
- ]
- ],
- [
- [
- 0.15430442988872528
- ]
- ],
- [
- [
- 0.19844470918178558
- ]
- ],
- [
- [
- 0.423301100730896
- ]
- ],
- [
- [
- 1.2729710340499878
- ]
- ],
- [
- [
- 0.13735808432102203
- ]
- ],
- [
- [
- 1.6938210725784302
- ]
- ],
- [
- [
- 0.18405230343341827
- ]
- ],
- [
- [
- 0.05795912817120552
- ]
- ],
- [
- [
- 1.5037022829055786
- ]
- ],
- [
- [
- 0.9522834420204163
- ]
- ],
- [
- [
- 0.296202152967453
- ]
- ],
- [
- [
- 0.29716017842292786
- ]
- ],
- [
- [
- 0.19691351056098938
- ]
- ],
- [
- [
- 1.4598686695098877
- ]
- ],
- [
- [
- 0.6973849534988403
- ]
- ],
- [
- [
- 0.21896222233772278
- ]
- ],
- [
- [
- 0.9280080199241638
- ]
- ],
- [
- [
- 0.9034790992736816
- ]
- ],
- [
- [
- 0.30135378241539
- ]
- ],
- [
- [
- 0.07181792706251144
- ]
- ],
- [
- [
- 0.5571975708007812
- ]
- ],
- [
- [
- 1.7741385698318481
- ]
- ],
- [
- [
- 0.08392082154750824
- ]
- ],
- [
- [
- 0.08914205431938171
- ]
- ],
- [
- [
- 0.058611780405044556
- ]
- ],
- [
- [
- 0.6191132068634033
- ]
- ],
- [
- [
- 0.14319771528244019
- ]
- ],
- [
- [
- 0.1246168315410614
- ]
- ],
- [
- [
- 0.6664812564849854
- ]
- ],
- [
- [
- 0.13933119177818298
- ]
- ],
- [
- [
- 1.582910418510437
- ]
- ],
- [
- [
- 0.12540112435817719
- ]
- ],
- [
- [
- 1.0343191623687744
- ]
- ],
- [
- [
- 0.051579397171735764
- ]
- ],
- [
- [
- 1.7459437847137451
- ]
- ],
- [
- [
- 2.8759779930114746
- ]
- ],
- [
- [
- 1.2316014766693115
- ]
- ],
- [
- [
- 0.11161988973617554
- ]
- ],
- [
- [
- 1.9607635736465454
- ]
- ],
- [
- [
- 1.1271884441375732
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7587171196937561
- ]
- ],
- [
- [
- 0.7504485845565796
- ]
- ],
- [
- [
- 0.22424684464931488
- ]
- ],
- [
- [
- 0.053012602031230927
- ]
- ],
- [
- [
- 2.2499208450317383
- ]
- ],
- [
- [
- 0.13155576586723328
- ]
- ],
- [
- [
- 0.19666537642478943
- ]
- ],
- [
- [
- 0.14468586444854736
- ]
- ],
- [
- [
- 0.6591532826423645
- ]
- ],
- [
- [
- 0.4909639060497284
- ]
- ],
- [
- [
- 1.4806489944458008
- ]
- ],
- [
- [
- 0.2336503118276596
- ]
- ],
- [
- [
- 1.3918877840042114
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1808314323425293
- ]
- ],
- [
- [
- 0.21506892144680023
- ]
- ],
- [
- [
- 0.19551561772823334
- ]
- ],
- [
- [
- 0.4933815598487854
- ]
- ],
- [
- [
- 0.32891878485679626
- ]
- ],
- [
- [
- 0.960154116153717
- ]
- ],
- [
- [
- 0.1242527961730957
- ]
- ],
- [
- [
- 0.16868427395820618
- ]
- ],
- [
- [
- 0.9086400270462036
- ]
- ],
- [
- [
- 0.3399033546447754
- ]
- ],
- [
- [
- 0.890563428401947
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1478737592697144
- ]
- ],
- [
- [
- 0.14981384575366974
- ]
- ],
- [
- [
- 0.05733659490942955
- ]
- ],
- [
- [
- 0.14890530705451965
- ]
- ],
- [
- [
- 0.03726917505264282
- ]
- ],
- [
- [
- 0.09453485906124115
- ]
- ],
- [
- [
- 0.798214852809906
- ]
- ],
- [
- [
- 1.127746343612671
- ]
- ],
- [
- [
- 0.14700642228126526
- ]
- ],
- [
- [
- 0.25973063707351685
- ]
- ],
- [
- [
- 2.1956253051757812
- ]
- ],
- [
- [
- 0.9385590553283691
- ]
- ],
- [
- [
- 1.0161073207855225
- ]
- ],
- [
- [
- 1.2304755449295044
- ]
- ],
- [
- [
- 0.41236111521720886
- ]
- ],
- [
- [
- 0.12602055072784424
- ]
- ],
- [
- [
- 0.10677817463874817
- ]
- ],
- [
- [
- 2.1546196937561035
- ]
- ],
- [
- [
- 0.6851147413253784
- ]
- ],
- [
- [
- 0.2915996015071869
- ]
- ],
- [
- [
- 0.16375048458576202
- ]
- ],
- [
- [
- 0.7047191262245178
- ]
- ],
- [
- [
- 0.2117166519165039
- ]
- ],
- [
- [
- 0.00948554277420044
- ]
- ],
- [
- [
- 0.11891289055347443
- ]
- ],
- [
- [
- 0.563387393951416
- ]
- ],
- [
- [
- 0.2230643481016159
- ]
- ],
- [
- [
- 0.40814146399497986
- ]
- ],
- [
- [
- 0.017434746026992798
- ]
- ],
- [
- [
- 2.375850200653076
- ]
- ],
- [
- [
- 0.19970057904720306
- ]
- ],
- [
- [
- 0.13738207519054413
- ]
- ],
- [
- [
- 1.356902003288269
- ]
- ],
- [
- [
- 0.061169691383838654
- ]
- ],
- [
- [
- 0.25980040431022644
- ]
- ],
- [
- [
- 1.6732678413391113
- ]
- ],
- [
- [
- 0.8310441374778748
- ]
- ],
- [
- [
- 0.12721997499465942
- ]
- ],
- [
- [
- 0.07189451158046722
- ]
- ],
- [
- [
- 0.19854815304279327
- ]
- ],
- [
- [
- 0.5798874497413635
- ]
- ],
- [
- [
- 0.17850764095783234
- ]
- ],
- [
- [
- 0.15618586540222168
- ]
- ],
- [
- [
- 0.02629561722278595
- ]
- ],
- [
- [
- 1.5730152130126953
- ]
- ],
- [
- [
- 0.18153023719787598
- ]
- ],
- [
- [
- 0.1330213099718094
- ]
- ],
- [
- [
- 0.022973384708166122
- ]
- ],
- [
- [
- 1.8445143699645996
- ]
- ],
- [
- [
- 0.19607168436050415
- ]
- ],
- [
- [
- 0.3220677375793457
- ]
- ],
- [
- [
- 0.3481725752353668
- ]
- ],
- [
- [
- 0.7761797308921814
- ]
- ],
- [
- [
- 0.22380445897579193
- ]
- ],
- [
- [
- 1.4639217853546143
- ]
- ],
- [
- [
- 0.2543796896934509
- ]
- ],
- [
- [
- 0.34451091289520264
- ]
- ],
- [
- [
- 0.6118456125259399
- ]
- ],
- [
- [
- 1.101017951965332
- ]
- ],
- [
- [
- 1.5551131963729858
- ]
- ],
- [
- [
- 0.3188707232475281
- ]
- ],
- [
- [
- 0.3532744348049164
- ]
- ],
- [
- [
- 0.16568496823310852
- ]
- ],
- [
- [
- 0.17914342880249023
- ]
- ],
- [
- [
- 0.23086246848106384
- ]
- ],
- [
- [
- 1.4507991075515747
- ]
- ],
- [
- [
- 0.3513825237751007
- ]
- ],
- [
- [
- 0.7703384757041931
- ]
- ],
- [
- [
- 0.06204233318567276
- ]
- ],
- [
- [
- 0.27032896876335144
- ]
- ],
- [
- [
- 0.96987384557724
- ]
- ],
- [
- [
- 0.22828161716461182
- ]
- ],
- [
- [
- 0.7167227268218994
- ]
- ],
- [
- [
- 0.357683002948761
- ]
- ],
- [
- [
- 0.5862022638320923
- ]
- ],
- [
- [
- 2.057554244995117
- ]
- ],
- [
- [
- 0.0764412060379982
- ]
- ],
- [
- [
- 0.1876797378063202
- ]
- ],
- [
- [
- 0.4331533908843994
- ]
- ],
- [
- [
- 0.6403228044509888
- ]
- ],
- [
- [
- 2.241065740585327
- ]
- ],
- [
- [
- 2.7522382736206055
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23436474800109863
- ]
- ],
- [
- [
- 0.5139488577842712
- ]
- ],
- [
- [
- 0.9470258355140686
- ]
- ],
- [
- [
- 2.41802716255188
- ]
- ],
- [
- [
- 1.43930184841156
- ]
- ],
- [
- [
- 0.020082101225852966
- ]
- ],
- [
- [
- 0.19601225852966309
- ]
- ],
- [
- [
- 0.043553322553634644
- ]
- ],
- [
- [
- 0.06408265978097916
- ]
- ],
- [
- [
- 1.0833159685134888
- ]
- ],
- [
- [
- 0.18881480395793915
- ]
- ],
- [
- [
- 0.12429459393024445
- ]
- ],
- [
- [
- 0.6506487727165222
- ]
- ],
- [
- [
- 1.4856951236724854
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.7286641001701355
- ]
- ],
- [
- [
- 2.069939613342285
- ]
- ],
- [
- [
- 1.5320831537246704
- ]
- ],
- [
- [
- 0.08507426828145981
- ]
- ],
- [
- [
- 1.4008814096450806
- ]
- ],
- [
- [
- 0.045624859631061554
- ]
- ],
- [
- [
- 0.055402085185050964
- ]
- ],
- [
- [
- 0.27904772758483887
- ]
- ],
- [
- [
- 1.3869770765304565
- ]
- ],
- [
- [
- 1.7076711654663086
- ]
- ],
- [
- [
- 0.10176821798086166
- ]
- ],
- [
- [
- 1.061807632446289
- ]
- ],
- [
- [
- 1.2985591888427734
- ]
- ],
- [
- [
- 0.3084976077079773
- ]
- ],
- [
- [
- 0.2453746199607849
- ]
- ],
- [
- [
- 0.5224465727806091
- ]
- ],
- [
- [
- 0.03758847340941429
- ]
- ],
- [
- [
- 0.9600478410720825
- ]
- ],
- [
- [
- 1.6020961999893188
- ]
- ],
- [
- [
- 1.2818564176559448
- ]
- ],
- [
- [
- 0.3621954619884491
- ]
- ],
- [
- [
- 0.32391080260276794
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.22349604964256287
- ]
- ],
- [
- [
- 0.41099658608436584
- ]
- ],
- [
- [
- 1.0304274559020996
- ]
- ],
- [
- [
- 2.080003023147583
- ]
- ],
- [
- [
- 0.11981449276208878
- ]
- ],
- [
- [
- 0.052023954689502716
- ]
- ],
- [
- [
- 1.7938952445983887
- ]
- ],
- [
- [
- 0.16428545117378235
- ]
- ],
- [
- [
- 0.7015822529792786
- ]
- ],
- [
- [
- 0.07625460624694824
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.07494693994522095
- ]
- ],
- [
- [
- 0.6500649452209473
- ]
- ],
- [
- [
- 1.2489856481552124
- ]
- ],
- [
- [
- 0.10454617440700531
- ]
- ],
- [
- [
- 1.096338152885437
- ]
- ],
- [
- [
- 0.6162550449371338
- ]
- ],
- [
- [
- 0.08368479460477829
- ]
- ],
- [
- [
- 0.13287658989429474
- ]
- ],
- [
- [
- 0.15319834649562836
- ]
- ],
- [
- [
- 0.13029855489730835
- ]
- ],
- [
- [
- 1.8120478391647339
- ]
- ],
- [
- [
- 1.3529725074768066
- ]
- ],
- [
- [
- 0.15238356590270996
- ]
- ],
- [
- [
- 0.2750231921672821
- ]
- ],
- [
- [
- 0.41840559244155884
- ]
- ],
- [
- [
- 0.2756280303001404
- ]
- ],
- [
- [
- 1.3852847814559937
- ]
- ],
- [
- [
- 1.0041474103927612
- ]
- ],
- [
- [
- 0.16136883199214935
- ]
- ],
- [
- [
- 0.7559698820114136
- ]
- ],
- [
- [
- 0.13667446374893188
- ]
- ],
- [
- [
- 0.6787508130073547
- ]
- ],
- [
- [
- 0.3916734457015991
- ]
- ],
- [
- [
- 1.8385045528411865
- ]
- ],
- [
- [
- 0.3571780025959015
- ]
- ],
- [
- [
- 0.3773478865623474
- ]
- ],
- [
- [
- 1.267746925354004
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.1678498983383179
- ]
- ],
- [
- [
- 1.4464927911758423
- ]
- ],
- [
- [
- 0.10330769419670105
- ]
- ],
- [
- [
- 0.9537649154663086
- ]
- ],
- [
- [
- 0.09564554691314697
- ]
- ],
- [
- [
- 0.028449781239032745
- ]
- ],
- [
- [
- 0.5050591230392456
- ]
- ],
- [
- [
- 0.9255319833755493
- ]
- ],
- [
- [
- 0.5541073679924011
- ]
- ],
- [
- [
- 0.6418242454528809
- ]
- ],
- [
- [
- 1.0337166786193848
- ]
- ],
- [
- [
- 0.503000020980835
- ]
- ],
- [
- [
- 1.3019276857376099
- ]
- ],
- [
- [
- 1.9326595067977905
- ]
- ],
- [
- [
- 0.09203249961137772
- ]
- ],
- [
- [
- 0.6526409983634949
- ]
- ],
- [
- [
- 1.2729476690292358
- ]
- ],
- [
- [
- 0.09578943252563477
- ]
- ],
- [
- [
- 1.411665916442871
- ]
- ],
- [
- [
- 1.9200834035873413
- ]
- ],
- [
- [
- 0.2607324719429016
- ]
- ],
- [
- [
- 0.6218791007995605
- ]
- ],
- [
- [
- 0.3735238015651703
- ]
- ],
- [
- [
- 0.33872532844543457
- ]
- ],
- [
- [
- 1.4783384799957275
- ]
- ],
- [
- [
- 0.28100499510765076
- ]
- ],
- [
- [
- 3.05935001373291
- ]
- ],
- [
- [
- 0.28113874793052673
- ]
- ],
- [
- [
- 0.6627438068389893
- ]
- ],
- [
- [
- 0.41907286643981934
- ]
- ],
- [
- [
- 0.4602971076965332
- ]
- ],
- [
- [
- 0.8598113656044006
- ]
- ],
- [
- [
- 1.5700523853302002
- ]
- ],
- [
- [
- 0.16183976829051971
- ]
- ],
- [
- [
- 0.11829409748315811
- ]
- ],
- [
- [
- 0.45299065113067627
- ]
- ],
- [
- [
- 0.03872666880488396
- ]
- ],
- [
- [
- 0.43234819173812866
- ]
- ],
- [
- [
- 0.9644150137901306
- ]
- ],
- [
- [
- 1.2200535535812378
- ]
- ],
- [
- [
- 0.22779101133346558
- ]
- ],
- [
- [
- 0.0663662999868393
- ]
- ],
- [
- [
- 0.37576013803482056
- ]
- ],
- [
- [
- 0.6228192448616028
- ]
- ],
- [
- [
- 0.31806686520576477
- ]
- ],
- [
- [
- 1.544082760810852
- ]
- ],
- [
- [
- 0.40634292364120483
- ]
- ],
- [
- [
- 0.15646064281463623
- ]
- ],
- [
- [
- 0.22464661300182343
- ]
- ],
- [
- [
- 0.4290127456188202
- ]
- ],
- [
- [
- 0.24760371446609497
- ]
- ],
- [
- [
- 0.35158902406692505
- ]
- ],
- [
- [
- 0.016952067613601685
- ]
- ],
- [
- [
- 0.23415809869766235
- ]
- ],
- [
- [
- 0.20506998896598816
- ]
- ],
- [
- [
- 0.05930846184492111
- ]
- ],
- [
- [
- 0.3096519410610199
- ]
- ],
- [
- [
- 1.138925313949585
- ]
- ],
- [
- [
- 0.19956442713737488
- ]
- ],
- [
- [
- 0.15883491933345795
- ]
- ],
- [
- [
- 0.956652820110321
- ]
- ],
- [
- [
- 0.05222325772047043
- ]
- ],
- [
- [
- 0.21183867752552032
- ]
- ],
- [
- [
- 0.0733618289232254
- ]
- ],
- [
- [
- 0.04278109595179558
- ]
- ],
- [
- [
- 0.3535197377204895
- ]
- ],
- [
- [
- 0.015952933579683304
- ]
- ],
- [
- [
- 0.4263390004634857
- ]
- ],
- [
- [
- 0.08478417992591858
- ]
- ],
- [
- [
- 1.4014041423797607
- ]
- ],
- [
- [
- 0.2121032029390335
- ]
- ],
- [
- [
- 1.308372974395752
- ]
- ],
- [
- [
- 0.1308174580335617
- ]
- ],
- [
- [
- 0.3753962218761444
- ]
- ],
- [
- [
- 3.05127215385437
- ]
- ],
- [
- [
- 0.009812243282794952
- ]
- ],
- [
- [
- 0.13035047054290771
- ]
- ],
- [
- [
- 0.7490164041519165
- ]
- ],
- [
- [
- 0.14572903513908386
- ]
- ],
- [
- [
- 0.6200140118598938
- ]
- ],
- [
- [
- 0.6079244613647461
- ]
- ],
- [
- [
- 0.10995987802743912
- ]
- ],
- [
- [
- 0.18057158589363098
- ]
- ],
- [
- [
- 0.2606818377971649
- ]
- ],
- [
- [
- 1.6127680540084839
- ]
- ],
- [
- [
- 0.09311303496360779
- ]
- ],
- [
- [
- 0.33434009552001953
- ]
- ],
- [
- [
- 0.0738675519824028
- ]
- ],
- [
- [
- 0.09924594312906265
- ]
- ],
- [
- [
- 2.8193578720092773
- ]
- ],
- [
- [
- 0.353459894657135
- ]
- ],
- [
- [
- 0.23253118991851807
- ]
- ],
- [
- [
- 0.7131125926971436
- ]
- ],
- [
- [
- 0.4123593270778656
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.24450019001960754
- ]
- ],
- [
- [
- 1.7119380235671997
- ]
- ],
- [
- [
- 0.8108257055282593
- ]
- ],
- [
- [
- 0.059635572135448456
- ]
- ],
- [
- [
- 0.06284566968679428
- ]
- ],
- [
- [
- 0.25135958194732666
- ]
- ],
- [
- [
- 0.4194510579109192
- ]
- ],
- [
- [
- 0.5789514780044556
- ]
- ],
- [
- [
- 1.5364311933517456
- ]
- ],
- [
- [
- 0.33210206031799316
- ]
- ],
- [
- [
- 0.3264879584312439
- ]
- ],
- [
- [
- 1.5614633560180664
- ]
- ],
- [
- [
- 0.13461503386497498
- ]
- ],
- [
- [
- 1.4029462337493896
- ]
- ],
- [
- [
- 0.21948230266571045
- ]
- ],
- [
- [
- 2.2156822681427
- ]
- ],
- [
- [
- 0.16225117444992065
- ]
- ],
- [
- [
- 0.06470146030187607
- ]
- ],
- [
- [
- 1.3173468112945557
- ]
- ],
- [
- [
- 3.1556026935577393
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.23499873280525208
- ]
- ],
- [
- [
- 0.6725684404373169
- ]
- ],
- [
- [
- 1.2747098207473755
- ]
- ],
- [
- [
- 0.6658645272254944
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.090362548828125
- ]
- ],
- [
- [
- 0.2576884627342224
- ]
- ],
- [
- [
- 0.13563776016235352
- ]
- ],
- [
- [
- 0.24600547552108765
- ]
- ],
- [
- [
- 1.4303405284881592
- ]
- ],
- [
- [
- 0.8053527474403381
- ]
- ],
- [
- [
- 0.48751920461654663
- ]
- ],
- [
- [
- 0.11832091212272644
- ]
- ],
- [
- [
- 1.1778318881988525
- ]
- ],
- [
- [
- 0.26360198855400085
- ]
- ],
- [
- [
- 0.2750210762023926
- ]
- ],
- [
- [
- 0.440743625164032
- ]
- ],
- [
- [
- 2.1846418380737305
- ]
- ],
- [
- [
- 0.2769230902194977
- ]
- ],
- [
- [
- 2.4765841960906982
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.0356438048183918
- ]
- ],
- [
- [
- 2.10862135887146
- ]
- ],
- [
- [
- 0.17321398854255676
- ]
- ],
- [
- [
- 0.31923341751098633
- ]
- ],
- [
- [
- 0.3481988310813904
- ]
- ],
- [
- [
- 0.23927763104438782
- ]
- ],
- [
- [
- 0.25891751050949097
- ]
- ],
- [
- [
- 1.7446080446243286
- ]
- ],
- [
- [
- 0.22856809198856354
- ]
- ],
- [
- [
- 3.2644097805023193
- ]
- ],
- [
- [
- 1.693770170211792
- ]
- ],
- [
- [
- 0.06206096336245537
- ]
- ],
- [
- [
- 0.421327143907547
- ]
- ],
- [
- [
- 1.7491410970687866
- ]
- ],
- [
- [
- 0.12904487550258636
- ]
- ],
- [
- [
- 0.7911637425422668
- ]
- ],
- [
- [
- 0.09795957058668137
- ]
- ],
- [
- [
- 1.2693432569503784
- ]
- ],
- [
- [
- 0.6838445067405701
- ]
- ],
- [
- [
- 0.15578526258468628
- ]
- ],
- [
- [
- 2.2978146076202393
- ]
- ],
- [
- [
- 1.680954933166504
- ]
- ],
- [
- [
- 0.4702944755554199
- ]
- ],
- [
- [
- 1.2930375337600708
- ]
- ],
- [
- [
- 0.2339732050895691
- ]
- ],
- [
- [
- 0.357724130153656
- ]
- ],
- [
- [
- 0.5328126549720764
- ]
- ],
- [
- [
- 0.15159015357494354
- ]
- ],
- [
- [
- 0.19282564520835876
- ]
- ],
- [
- [
- 1.0531865358352661
- ]
- ],
- [
- [
- 0.7557507753372192
- ]
- ],
- [
- [
- 0.2686452865600586
- ]
- ],
- [
- [
- 2.420388698577881
- ]
- ],
- [
- [
- 1.2229063510894775
- ]
- ],
- [
- [
- 1.6917593479156494
- ]
- ],
- [
- [
- 0.2578822076320648
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.0447192192077637
- ]
- ],
- [
- [
- 0.24343031644821167
- ]
- ],
- [
- [
- 0.2852083444595337
- ]
- ],
- [
- [
- 0.4269509017467499
- ]
- ],
- [
- [
- 0.26153725385665894
- ]
- ],
- [
- [
- 3.289673328399658
- ]
- ],
- [
- [
- 0.13614118099212646
- ]
- ],
- [
- [
- 0.2199837565422058
- ]
- ],
- [
- [
- 0.3113464415073395
- ]
- ],
- [
- [
- 0.9499484300613403
- ]
- ],
- [
- [
- 0.1396247148513794
- ]
- ],
- [
- [
- 0.4266088604927063
- ]
- ],
- [
- [
- 0.6729026436805725
- ]
- ],
- [
- [
- 1.5188227891921997
- ]
- ],
- [
- [
- 0.10293160378932953
- ]
- ],
- [
- [
- 0.36661961674690247
- ]
- ],
- [
- [
- 3.682851791381836
- ]
- ],
- [
- [
- 0.1741040050983429
- ]
- ],
- [
- [
- 0.25975608825683594
- ]
- ],
- [
- [
- 0.28535977005958557
- ]
- ],
- [
- [
- 0.20796385407447815
- ]
- ],
- [
- [
- 0.3139301538467407
- ]
- ],
- [
- [
- 1.3914506435394287
- ]
- ],
- [
- [
- 0.21077153086662292
- ]
- ],
- [
- [
- 0.23945680260658264
- ]
- ],
- [
- [
- 0.011384531855583191
- ]
- ],
- [
- [
- 0.35365405678749084
- ]
- ],
- [
- [
- 0.19225452840328217
- ]
- ],
- [
- [
- 0.054847944527864456
- ]
- ],
- [
- [
- 0.4230521321296692
- ]
- ],
- [
- [
- 0.7319796085357666
- ]
- ],
- [
- [
- 0.15386393666267395
- ]
- ],
- [
- [
- 0.03799276053905487
- ]
- ],
- [
- [
- 0.06887584179639816
- ]
- ],
- [
- [
- 0.5836449861526489
- ]
- ],
- [
- [
- 0.2802751362323761
- ]
- ],
- [
- [
- 0.2584143280982971
- ]
- ],
- [
- [
- 0.15254473686218262
- ]
- ],
- [
- [
- 0.43793612718582153
- ]
- ],
- [
- [
- 0.35745692253112793
- ]
- ],
- [
- [
- 0.1981258988380432
- ]
- ],
- [
- [
- 1.8173056840896606
- ]
- ],
- [
- [
- 0.9959860444068909
- ]
- ],
- [
- [
- 0.6372546553611755
- ]
- ],
- [
- [
- 0.10526829957962036
- ]
- ],
- [
- [
- 0.23041795194149017
- ]
- ],
- [
- [
- 0.22598040103912354
- ]
- ],
- [
- [
- 0.2153630256652832
- ]
- ],
- [
- [
- 0.8632667660713196
- ]
- ],
- [
- [
- 0.023553544655442238
- ]
- ],
- [
- [
- 0.24501274526119232
- ]
- ],
- [
- [
- 0.7613914608955383
- ]
- ],
- [
- [
- 0.024350129067897797
- ]
- ],
- [
- [
- 0.9583755731582642
- ]
- ],
- [
- [
- 1.2599116563796997
- ]
- ],
- [
- [
- 0.33346816897392273
- ]
- ],
- [
- [
- 0.17955544590950012
- ]
- ],
- [
- [
- 0.2663589119911194
- ]
- ],
- [
- [
- 1.801690697669983
- ]
- ],
- [
- [
- 0.20854046940803528
- ]
- ],
- [
- [
- 0.17354699969291687
- ]
- ],
- [
- [
- 0.20155364274978638
- ]
- ],
- [
- [
- 0.6574788093566895
- ]
- ],
- [
- [
- 0.16792446374893188
- ]
- ],
- [
- [
- 0.2395111620426178
- ]
- ],
- [
- [
- 0.10622024536132812
- ]
- ],
- [
- [
- 0.3005228042602539
- ]
- ],
- [
- [
- 0.9433520436286926
- ]
- ],
- [
- [
- 1.9775326251983643
- ]
- ],
- [
- [
- 2.684288501739502
- ]
- ],
- [
- [
- 0.5023676753044128
- ]
- ],
- [
- [
- 0.7344871759414673
- ]
- ],
- [
- [
- 0.5504701137542725
- ]
- ],
- [
- [
- 0.7282639741897583
- ]
- ],
- [
- [
- 0.265209823846817
- ]
- ],
- [
- [
- 1.8776050806045532
- ]
- ],
- [
- [
- 0.239293172955513
- ]
- ],
- [
- [
- 0.3503606915473938
- ]
- ],
- [
- [
- 0.1013544350862503
- ]
- ],
- [
- [
- 0.22560974955558777
- ]
- ],
- [
- [
- 1.1193623542785645
- ]
- ],
- [
- [
- 0.17709511518478394
- ]
- ],
- [
- [
- 0.242536723613739
- ]
- ],
- [
- [
- 0.3775540590286255
- ]
- ],
- [
- [
- 0.8218222856521606
- ]
- ],
- [
- [
- 0.6818026900291443
- ]
- ],
- [
- [
- 1.0901256799697876
- ]
- ],
- [
- [
- 0.1710975170135498
- ]
- ],
- [
- [
- 0.3567202091217041
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.2687849998474121
- ]
- ],
- [
- [
- 0.1334092915058136
- ]
- ],
- [
- [
- 0.007840916514396667
- ]
- ],
- [
- [
- 1.2087318897247314
- ]
- ],
- [
- [
- 0.29320308566093445
- ]
- ],
- [
- [
- 1.29587984085083
- ]
- ],
- [
- [
- 0.2226525843143463
- ]
- ],
- [
- [
- 0.47817686200141907
- ]
- ],
- [
- [
- 1.4766713380813599
- ]
- ],
- [
- [
- 2.425774574279785
- ]
- ],
- [
- [
- 1.3178666830062866
- ]
- ],
- [
- [
- 0.06878609955310822
- ]
- ],
- [
- [
- 0.23895908892154694
- ]
- ],
- [
- [
- 0.26317304372787476
- ]
- ],
- [
- [
- 0.02926407940685749
- ]
- ],
- [
- [
- 0.33901941776275635
- ]
- ],
- [
- [
- 0.8154442310333252
- ]
- ],
- [
- [
- 0.17397424578666687
- ]
- ],
- [
- [
- 0.14105363190174103
- ]
- ],
- [
- [
- 0.25996920466423035
- ]
- ],
- [
- [
- 0.023876259103417397
- ]
- ],
- [
- [
- 0.15769214928150177
- ]
- ],
- [
- [
- 0.9538644552230835
- ]
- ],
- [
- [
- 0.3435669541358948
- ]
- ],
- [
- [
- 0.8633925318717957
- ]
- ],
- [
- [
- 0.8857290744781494
- ]
- ],
- [
- [
- 1.3669465780258179
- ]
- ],
- [
- [
- 0.49948611855506897
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.010177891701459885
- ]
- ],
- [
- [
- 0.1854819357395172
- ]
- ],
- [
- [
- 0.1552048623561859
- ]
- ],
- [
- [
- 0.0995122641324997
- ]
- ],
- [
- [
- 0.14796309173107147
- ]
- ],
- [
- [
- 0.6544198989868164
- ]
- ],
- [
- [
- 0.9055176973342896
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 1.207655906677246
- ]
- ],
- [
- [
- 0.2506996691226959
- ]
- ],
- [
- [
- 0.058690525591373444
- ]
- ],
- [
- [
- 0.3002372682094574
- ]
- ],
- [
- [
- 0.22949957847595215
- ]
- ],
- [
- [
- 0.17696613073349
- ]
- ],
- [
- [
- 0.19616100192070007
- ]
- ],
- [
- [
- 0.9860163331031799
- ]
- ],
- [
- [
- 0.3674675226211548
- ]
- ],
- [
- [
- 0.4743616580963135
- ]
- ],
- [
- [
- 0.12238746881484985
- ]
- ],
- [
- [
- 0.35176655650138855
- ]
- ],
- [
- [
- 1.1259992122650146
- ]
- ],
- [
- [
- 1.5546212196350098
- ]
- ],
- [
- [
- 1.4725687503814697
- ]
- ],
- [
- [
- 0.06957946717739105
- ]
- ],
- [
- [
- 0.7570919394493103
- ]
- ],
- [
- [
- 0.31193602085113525
- ]
- ],
- [
- [
- 1.80949068069458
- ]
- ],
- [
- [
- 0.39208298921585083
- ]
- ],
- [
- [
- 0.4229605197906494
- ]
- ],
- [
- [
- 0.3802146017551422
- ]
- ],
- [
- [
- 1.2302273511886597
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.11367816478013992
- ]
- ],
- [
- [
- 0.3087758421897888
- ]
- ],
- [
- [
- 0.2700614929199219
- ]
- ],
- [
- [
- 0.33305129408836365
- ]
- ],
- [
- [
- 0.11333055049180984
- ]
- ],
- [
- [
- 0.0065615917555987835
- ]
- ],
- [
- [
- 0.35194969177246094
- ]
- ],
- [
- [
- 1.5689265727996826
- ]
- ],
- [
- [
- 1.5475448369979858
- ]
- ],
- [
- [
- 0.08915680646896362
- ]
- ],
- [
- [
- 0.14344248175621033
- ]
- ],
- [
- [
- 0.9142073392868042
- ]
- ],
- [
- [
- 0.1635550558567047
- ]
- ],
- [
- [
- 1.9063082933425903
- ]
- ],
- [
- [
- 1.2558708190917969
- ]
- ],
- [
- [
- 2.4940953254699707
- ]
- ],
- [
- [
- 0.11499832570552826
- ]
- ],
- [
- [
- 1.5634838342666626
- ]
- ],
- [
- [
- 0.1766829490661621
- ]
- ],
- [
- [
- 0.35927122831344604
- ]
- ],
- [
- [
- 1.095963478088379
- ]
- ],
- [
- [
- 0.39958274364471436
- ]
- ],
- [
- [
- 0.343924343585968
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.21257542073726654
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 3.375520944595337
- ]
- ],
- [
- [
- 1.3119572401046753
- ]
- ],
- [
- [
- 0.3306201994419098
- ]
- ],
- [
- [
- 1.2485096454620361
- ]
- ],
- [
- [
- 0.960999608039856
- ]
- ],
- [
- [
- 1.291947603225708
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 0.3099791705608368
- ]
- ],
- [
- [
- 0.5578465461730957
- ]
- ],
- [
- [
- 2.077660083770752
- ]
- ],
- [
- [
- 0.15683333575725555
- ]
- ],
- [
- [
- 0.24106794595718384
- ]
- ],
- [
- [
- 0.008111894130706787
- ]
- ],
- [
- [
- 1.2014604806900024
- ]
- ],
- [
- [
- 0.6909114718437195
- ]
- ],
- [
- [
- 0.22560809552669525
- ]
- ],
- [
- [
- 0.2887478172779083
- ]
- ],
- [
- [
- 0.32313817739486694
- ]
- ],
- [
- [
- 2.7349133491516113
- ]
- ],
- [
- [
- 0.1252346783876419
- ]
- ],
- [
- [
- 0.2036381959915161
- ]
- ],
- [
- [
- 2.3500750064849854
- ]
- ],
- [
- [
- 1.5867477655410767
- ]
- ],
- [
- [
- 0.5716887712478638
- ]
- ],
- [
- [
- 0.2690170407295227
- ]
- ],
- [
- [
- 0.0007999999797903001
- ]
- ],
- [
- [
- 2.2295875549316406
- ]
- ],
- [
- [
- 0.03169985115528107
- ]
- ],
- [
- [
- 0.059354256838560104
- ]
- ],
- [
- [
- 1.3628817796707153
- ]
- ],
- [
- [
- 0.5518419146537781
- ]
- ],
- [
- [
- 0.16231653094291687
- ]
- ],
- [
- [
- 0.3115463852882385
- ]
- ]
- ]
- ]
- },
- "/features/features.15/conv/conv.0/conv.0.0/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.12870028614997864
- ]
- ]
- ],
- [
- [
- [
- -0.10714153945446014
- ]
- ]
- ],
- [
- [
- [
- -0.06963556259870529
- ]
- ]
- ],
- [
- [
- [
- -0.15648068487644196
- ]
- ]
- ],
- [
- [
- [
- -0.08688876032829285
- ]
- ]
- ],
- [
- [
- [
- -0.11347872763872147
- ]
- ]
- ],
- [
- [
- [
- -0.10918533802032471
- ]
- ]
- ],
- [
- [
- [
- -0.0722738653421402
- ]
- ]
- ],
- [
- [
- [
- -0.1348726898431778
- ]
- ]
- ],
- [
- [
- [
- -0.11230529099702835
- ]
- ]
- ],
- [
- [
- [
- -0.08424068242311478
- ]
- ]
- ],
- [
- [
- [
- -0.07912690192461014
- ]
- ]
- ],
- [
- [
- [
- -0.1376967430114746
- ]
- ]
- ],
- [
- [
- [
- -0.14505283534526825
- ]
- ]
- ],
- [
- [
- [
- -0.09644751995801926
- ]
- ]
- ],
- [
- [
- [
- -0.10722948610782623
- ]
- ]
- ],
- [
- [
- [
- -0.1529293954372406
- ]
- ]
- ],
- [
- [
- [
- -0.12349193543195724
- ]
- ]
- ],
- [
- [
- [
- -0.08346318453550339
- ]
- ]
- ],
- [
- [
- [
- -0.1639435738325119
- ]
- ]
- ],
- [
- [
- [
- -0.0728839784860611
- ]
- ]
- ],
- [
- [
- [
- -0.11334294080734253
- ]
- ]
- ],
- [
- [
- [
- -0.1481134295463562
- ]
- ]
- ],
- [
- [
- [
- -0.094202920794487
- ]
- ]
- ],
- [
- [
- [
- -0.13775977492332458
- ]
- ]
- ],
- [
- [
- [
- -0.11387593299150467
- ]
- ]
- ],
- [
- [
- [
- -0.09304003417491913
- ]
- ]
- ],
- [
- [
- [
- -0.09396117180585861
- ]
- ]
- ],
- [
- [
- [
- -0.10136163979768753
- ]
- ]
- ],
- [
- [
- [
- -0.12263055890798569
- ]
- ]
- ],
- [
- [
- [
- -0.0645599290728569
- ]
- ]
- ],
- [
- [
- [
- -0.10768815129995346
- ]
- ]
- ],
- [
- [
- [
- -0.0921766459941864
- ]
- ]
- ],
- [
- [
- [
- -0.12366209179162979
- ]
- ]
- ],
- [
- [
- [
- -0.1667950302362442
- ]
- ]
- ],
- [
- [
- [
- -0.08622563630342484
- ]
- ]
- ],
- [
- [
- [
- -0.11051255464553833
- ]
- ]
- ],
- [
- [
- [
- -0.09718487411737442
- ]
- ]
- ],
- [
- [
- [
- -0.07699333131313324
- ]
- ]
- ],
- [
- [
- [
- -0.1125633642077446
- ]
- ]
- ],
- [
- [
- [
- -0.13340237736701965
- ]
- ]
- ],
- [
- [
- [
- -0.1276392787694931
- ]
- ]
- ],
- [
- [
- [
- -0.12461244314908981
- ]
- ]
- ],
- [
- [
- [
- -0.1340327113866806
- ]
- ]
- ],
- [
- [
- [
- -0.05990930646657944
- ]
- ]
- ],
- [
- [
- [
- -0.11529190093278885
- ]
- ]
- ],
- [
- [
- [
- -0.1316174864768982
- ]
- ]
- ],
- [
- [
- [
- -0.11131871491670609
- ]
- ]
- ],
- [
- [
- [
- -0.10819090157747269
- ]
- ]
- ],
- [
- [
- [
- -0.10952568799257278
- ]
- ]
- ],
- [
- [
- [
- -0.15448276698589325
- ]
- ]
- ],
- [
- [
- [
- -0.11064053326845169
- ]
- ]
- ],
- [
- [
- [
- -0.11023510992527008
- ]
- ]
- ],
- [
- [
- [
- -0.12773847579956055
- ]
- ]
- ],
- [
- [
- [
- -0.08124437183141708
- ]
- ]
- ],
- [
- [
- [
- -0.11720290780067444
- ]
- ]
- ],
- [
- [
- [
- -0.057428739964962006
- ]
- ]
- ],
- [
- [
- [
- -0.10893258452415466
- ]
- ]
- ],
- [
- [
- [
- -0.15313763916492462
- ]
- ]
- ],
- [
- [
- [
- -0.14350463449954987
- ]
- ]
- ],
- [
- [
- [
- -0.16560111939907074
- ]
- ]
- ],
- [
- [
- [
- -0.1283593624830246
- ]
- ]
- ],
- [
- [
- [
- -0.12066451460123062
- ]
- ]
- ],
- [
- [
- [
- -0.09402991086244583
- ]
- ]
- ],
- [
- [
- [
- -0.1024172380566597
- ]
- ]
- ],
- [
- [
- [
- -0.11360916495323181
- ]
- ]
- ],
- [
- [
- [
- -0.06277693063020706
- ]
- ]
- ],
- [
- [
- [
- -0.12359968572854996
- ]
- ]
- ],
- [
- [
- [
- -0.12235646694898605
- ]
- ]
- ],
- [
- [
- [
- -0.10589821636676788
- ]
- ]
- ],
- [
- [
- [
- -0.12047645449638367
- ]
- ]
- ],
- [
- [
- [
- -0.09293464571237564
- ]
- ]
- ],
- [
- [
- [
- -0.1309085488319397
- ]
- ]
- ],
- [
- [
- [
- -0.06503257155418396
- ]
- ]
- ],
- [
- [
- [
- -0.10889942944049835
- ]
- ]
- ],
- [
- [
- [
- -0.12680068612098694
- ]
- ]
- ],
- [
- [
- [
- -0.13506922125816345
- ]
- ]
- ],
- [
- [
- [
- -0.0883713811635971
- ]
- ]
- ],
- [
- [
- [
- -0.11547089368104935
- ]
- ]
- ],
- [
- [
- [
- -0.11305110156536102
- ]
- ]
- ],
- [
- [
- [
- -0.11899257451295853
- ]
- ]
- ],
- [
- [
- [
- -0.11160523444414139
- ]
- ]
- ],
- [
- [
- [
- -0.09167875349521637
- ]
- ]
- ],
- [
- [
- [
- -0.12781548500061035
- ]
- ]
- ],
- [
- [
- [
- -0.12825742363929749
- ]
- ]
- ],
- [
- [
- [
- -0.12645065784454346
- ]
- ]
- ],
- [
- [
- [
- -0.11154492944478989
- ]
- ]
- ],
- [
- [
- [
- -0.09106258302927017
- ]
- ]
- ],
- [
- [
- [
- -0.10912919044494629
- ]
- ]
- ],
- [
- [
- [
- -0.05736716091632843
- ]
- ]
- ],
- [
- [
- [
- -0.148849219083786
- ]
- ]
- ],
- [
- [
- [
- -0.1312556117773056
- ]
- ]
- ],
- [
- [
- [
- -0.04802717640995979
- ]
- ]
- ],
- [
- [
- [
- -0.1001727357506752
- ]
- ]
- ],
- [
- [
- [
- -0.09495502710342407
- ]
- ]
- ],
- [
- [
- [
- -0.10083374381065369
- ]
- ]
- ],
- [
- [
- [
- -0.13820913434028625
- ]
- ]
- ],
- [
- [
- [
- -0.08066865056753159
- ]
- ]
- ],
- [
- [
- [
- -0.08136259764432907
- ]
- ]
- ],
- [
- [
- [
- -0.09368385374546051
- ]
- ]
- ],
- [
- [
- [
- -0.16729788482189178
- ]
- ]
- ],
- [
- [
- [
- -0.0718376636505127
- ]
- ]
- ],
- [
- [
- [
- -0.10577844083309174
- ]
- ]
- ],
- [
- [
- [
- -0.08648005872964859
- ]
- ]
- ],
- [
- [
- [
- -0.09518914669752121
- ]
- ]
- ],
- [
- [
- [
- -0.14617016911506653
- ]
- ]
- ],
- [
- [
- [
- -0.08732638508081436
- ]
- ]
- ],
- [
- [
- [
- -0.08266203850507736
- ]
- ]
- ],
- [
- [
- [
- -0.08526536822319031
- ]
- ]
- ],
- [
- [
- [
- -0.16127175092697144
- ]
- ]
- ],
- [
- [
- [
- -0.1250031739473343
- ]
- ]
- ],
- [
- [
- [
- -0.10387348383665085
- ]
- ]
- ],
- [
- [
- [
- -0.06812668591737747
- ]
- ]
- ],
- [
- [
- [
- -0.07916378974914551
- ]
- ]
- ],
- [
- [
- [
- -0.08262314647436142
- ]
- ]
- ],
- [
- [
- [
- -0.1634415090084076
- ]
- ]
- ],
- [
- [
- [
- -0.08311112970113754
- ]
- ]
- ],
- [
- [
- [
- -0.11503073573112488
- ]
- ]
- ],
- [
- [
- [
- -0.07480606436729431
- ]
- ]
- ],
- [
- [
- [
- -0.17655912041664124
- ]
- ]
- ],
- [
- [
- [
- -0.15234334766864777
- ]
- ]
- ],
- [
- [
- [
- -0.08433038741350174
- ]
- ]
- ],
- [
- [
- [
- -0.09455030411481857
- ]
- ]
- ],
- [
- [
- [
- -0.13404661417007446
- ]
- ]
- ],
- [
- [
- [
- -0.09816620498895645
- ]
- ]
- ],
- [
- [
- [
- -0.0938253402709961
- ]
- ]
- ],
- [
- [
- [
- -0.07785102725028992
- ]
- ]
- ],
- [
- [
- [
- -0.12180755287408829
- ]
- ]
- ],
- [
- [
- [
- -0.2117060124874115
- ]
- ]
- ],
- [
- [
- [
- -0.09603217244148254
- ]
- ]
- ],
- [
- [
- [
- -0.14229048788547516
- ]
- ]
- ],
- [
- [
- [
- -0.1042841300368309
- ]
- ]
- ],
- [
- [
- [
- -0.08274050801992416
- ]
- ]
- ],
- [
- [
- [
- -0.12336533516645432
- ]
- ]
- ],
- [
- [
- [
- -0.07151716947555542
- ]
- ]
- ],
- [
- [
- [
- -0.09369833022356033
- ]
- ]
- ],
- [
- [
- [
- -0.08154797554016113
- ]
- ]
- ],
- [
- [
- [
- -0.12545372545719147
- ]
- ]
- ],
- [
- [
- [
- -0.1162385568022728
- ]
- ]
- ],
- [
- [
- [
- -0.10297057032585144
- ]
- ]
- ],
- [
- [
- [
- -0.11066564172506332
- ]
- ]
- ],
- [
- [
- [
- -0.11516391485929489
- ]
- ]
- ],
- [
- [
- [
- -0.07097022235393524
- ]
- ]
- ],
- [
- [
- [
- -0.12880288064479828
- ]
- ]
- ],
- [
- [
- [
- -0.08523973822593689
- ]
- ]
- ],
- [
- [
- [
- -0.17985135316848755
- ]
- ]
- ],
- [
- [
- [
- -0.07272639125585556
- ]
- ]
- ],
- [
- [
- [
- -0.13267090916633606
- ]
- ]
- ],
- [
- [
- [
- -0.15093471109867096
- ]
- ]
- ],
- [
- [
- [
- -0.0922820046544075
- ]
- ]
- ],
- [
- [
- [
- -0.0769660621881485
- ]
- ]
- ],
- [
- [
- [
- -0.11838088184595108
- ]
- ]
- ],
- [
- [
- [
- -0.11590438336133957
- ]
- ]
- ],
- [
- [
- [
- -0.06964965909719467
- ]
- ]
- ],
- [
- [
- [
- -0.106001116335392
- ]
- ]
- ],
- [
- [
- [
- -0.15034076571464539
- ]
- ]
- ],
- [
- [
- [
- -0.09024682641029358
- ]
- ]
- ],
- [
- [
- [
- -0.10464531183242798
- ]
- ]
- ],
- [
- [
- [
- -0.1007806807756424
- ]
- ]
- ],
- [
- [
- [
- -0.11138787865638733
- ]
- ]
- ],
- [
- [
- [
- -0.12544476985931396
- ]
- ]
- ],
- [
- [
- [
- -0.15017931163311005
- ]
- ]
- ],
- [
- [
- [
- -0.13194024562835693
- ]
- ]
- ],
- [
- [
- [
- -0.16771605610847473
- ]
- ]
- ],
- [
- [
- [
- -0.1401728242635727
- ]
- ]
- ],
- [
- [
- [
- -0.1507565677165985
- ]
- ]
- ],
- [
- [
- [
- -0.12906675040721893
- ]
- ]
- ],
- [
- [
- [
- -0.13872307538986206
- ]
- ]
- ],
- [
- [
- [
- -0.1539493054151535
- ]
- ]
- ],
- [
- [
- [
- -0.09553037583827972
- ]
- ]
- ],
- [
- [
- [
- -0.09447916597127914
- ]
- ]
- ],
- [
- [
- [
- -0.07290205359458923
- ]
- ]
- ],
- [
- [
- [
- -0.10008582472801208
- ]
- ]
- ],
- [
- [
- [
- -0.09933307766914368
- ]
- ]
- ],
- [
- [
- [
- -0.11002664268016815
- ]
- ]
- ],
- [
- [
- [
- -0.05376339331269264
- ]
- ]
- ],
- [
- [
- [
- -0.10620822012424469
- ]
- ]
- ],
- [
- [
- [
- -0.06648481637239456
- ]
- ]
- ],
- [
- [
- [
- -0.11577573418617249
- ]
- ]
- ],
- [
- [
- [
- -0.15340179204940796
- ]
- ]
- ],
- [
- [
- [
- -0.12904247641563416
- ]
- ]
- ],
- [
- [
- [
- -0.09584838896989822
- ]
- ]
- ],
- [
- [
- [
- -0.09873117506504059
- ]
- ]
- ],
- [
- [
- [
- -0.09640708565711975
- ]
- ]
- ],
- [
- [
- [
- -0.1492360681295395
- ]
- ]
- ],
- [
- [
- [
- -0.11389601230621338
- ]
- ]
- ],
- [
- [
- [
- -0.1362534612417221
- ]
- ]
- ],
- [
- [
- [
- -0.08402295410633087
- ]
- ]
- ],
- [
- [
- [
- -0.05689374729990959
- ]
- ]
- ],
- [
- [
- [
- -0.11944304406642914
- ]
- ]
- ],
- [
- [
- [
- -0.09250753372907639
- ]
- ]
- ],
- [
- [
- [
- -0.14122501015663147
- ]
- ]
- ],
- [
- [
- [
- -0.05972130969166756
- ]
- ]
- ],
- [
- [
- [
- -0.13193367421627045
- ]
- ]
- ],
- [
- [
- [
- -0.08210792392492294
- ]
- ]
- ],
- [
- [
- [
- -0.18858683109283447
- ]
- ]
- ],
- [
- [
- [
- -0.10387223213911057
- ]
- ]
- ],
- [
- [
- [
- -0.1371043175458908
- ]
- ]
- ],
- [
- [
- [
- -0.09416444599628448
- ]
- ]
- ],
- [
- [
- [
- -0.10787082463502884
- ]
- ]
- ],
- [
- [
- [
- -0.09027472138404846
- ]
- ]
- ],
- [
- [
- [
- -0.06641899794340134
- ]
- ]
- ],
- [
- [
- [
- -0.14213299751281738
- ]
- ]
- ],
- [
- [
- [
- -0.10173457860946655
- ]
- ]
- ],
- [
- [
- [
- -0.05025773495435715
- ]
- ]
- ],
- [
- [
- [
- -0.0614980049431324
- ]
- ]
- ],
- [
- [
- [
- -0.10282250493764877
- ]
- ]
- ],
- [
- [
- [
- -0.04526874050498009
- ]
- ]
- ],
- [
- [
- [
- -0.10593702644109726
- ]
- ]
- ],
- [
- [
- [
- -0.09994799643754959
- ]
- ]
- ],
- [
- [
- [
- -0.1318366527557373
- ]
- ]
- ],
- [
- [
- [
- -0.0856233462691307
- ]
- ]
- ],
- [
- [
- [
- -0.14180876314640045
- ]
- ]
- ],
- [
- [
- [
- -0.07913100719451904
- ]
- ]
- ],
- [
- [
- [
- -0.10692936927080154
- ]
- ]
- ],
- [
- [
- [
- -0.09222017973661423
- ]
- ]
- ],
- [
- [
- [
- -0.08747600764036179
- ]
- ]
- ],
- [
- [
- [
- -0.10727803409099579
- ]
- ]
- ],
- [
- [
- [
- -0.09745626896619797
- ]
- ]
- ],
- [
- [
- [
- -0.12550599873065948
- ]
- ]
- ],
- [
- [
- [
- -0.06749936193227768
- ]
- ]
- ],
- [
- [
- [
- -0.10046866536140442
- ]
- ]
- ],
- [
- [
- [
- -0.16743804514408112
- ]
- ]
- ],
- [
- [
- [
- -0.12989692389965057
- ]
- ]
- ],
- [
- [
- [
- -0.11224345862865448
- ]
- ]
- ],
- [
- [
- [
- -0.13558915257453918
- ]
- ]
- ],
- [
- [
- [
- -0.060859598219394684
- ]
- ]
- ],
- [
- [
- [
- -0.12250219285488129
- ]
- ]
- ],
- [
- [
- [
- -0.08771271258592606
- ]
- ]
- ],
- [
- [
- [
- -0.08129311352968216
- ]
- ]
- ],
- [
- [
- [
- -0.10531339794397354
- ]
- ]
- ],
- [
- [
- [
- -0.16142383217811584
- ]
- ]
- ],
- [
- [
- [
- -0.09252549707889557
- ]
- ]
- ],
- [
- [
- [
- -0.12299011647701263
- ]
- ]
- ],
- [
- [
- [
- -0.10980292409658432
- ]
- ]
- ],
- [
- [
- [
- -0.07939561456441879
- ]
- ]
- ],
- [
- [
- [
- -0.10035314410924911
- ]
- ]
- ],
- [
- [
- [
- -0.16482359170913696
- ]
- ]
- ],
- [
- [
- [
- -0.08297896385192871
- ]
- ]
- ],
- [
- [
- [
- -0.10043513774871826
- ]
- ]
- ],
- [
- [
- [
- -0.11459547281265259
- ]
- ]
- ],
- [
- [
- [
- -0.06620358675718307
- ]
- ]
- ],
- [
- [
- [
- -0.15834718942642212
- ]
- ]
- ],
- [
- [
- [
- -0.09908001869916916
- ]
- ]
- ],
- [
- [
- [
- -0.11642792075872421
- ]
- ]
- ],
- [
- [
- [
- -0.10998696833848953
- ]
- ]
- ],
- [
- [
- [
- -0.10858519375324249
- ]
- ]
- ],
- [
- [
- [
- -0.08414836972951889
- ]
- ]
- ],
- [
- [
- [
- -0.0835404247045517
- ]
- ]
- ],
- [
- [
- [
- -0.13274939358234406
- ]
- ]
- ],
- [
- [
- [
- -0.11507917940616608
- ]
- ]
- ],
- [
- [
- [
- -0.09135919064283371
- ]
- ]
- ],
- [
- [
- [
- -0.09261520951986313
- ]
- ]
- ],
- [
- [
- [
- -0.07599399983882904
- ]
- ]
- ],
- [
- [
- [
- -0.09561667591333389
- ]
- ]
- ],
- [
- [
- [
- -0.06392333656549454
- ]
- ]
- ],
- [
- [
- [
- -0.1560612916946411
- ]
- ]
- ],
- [
- [
- [
- -0.1354973018169403
- ]
- ]
- ],
- [
- [
- [
- -0.0950012132525444
- ]
- ]
- ],
- [
- [
- [
- -0.07634959369897842
- ]
- ]
- ],
- [
- [
- [
- -0.11306571215391159
- ]
- ]
- ],
- [
- [
- [
- -0.12356392294168472
- ]
- ]
- ],
- [
- [
- [
- -0.1005362793803215
- ]
- ]
- ],
- [
- [
- [
- -0.08982517570257187
- ]
- ]
- ],
- [
- [
- [
- -0.10034646093845367
- ]
- ]
- ],
- [
- [
- [
- -0.11808118969202042
- ]
- ]
- ],
- [
- [
- [
- -0.11204159259796143
- ]
- ]
- ],
- [
- [
- [
- -0.14139938354492188
- ]
- ]
- ],
- [
- [
- [
- -0.0969185084104538
- ]
- ]
- ],
- [
- [
- [
- -0.06916318088769913
- ]
- ]
- ],
- [
- [
- [
- -0.11682108789682388
- ]
- ]
- ],
- [
- [
- [
- -0.12082896381616592
- ]
- ]
- ],
- [
- [
- [
- -0.07677620649337769
- ]
- ]
- ],
- [
- [
- [
- -0.05724450200796127
- ]
- ]
- ],
- [
- [
- [
- -0.1137750968337059
- ]
- ]
- ],
- [
- [
- [
- -0.09354895353317261
- ]
- ]
- ],
- [
- [
- [
- -0.12027541548013687
- ]
- ]
- ],
- [
- [
- [
- -0.11937037110328674
- ]
- ]
- ],
- [
- [
- [
- -0.0577746145427227
- ]
- ]
- ],
- [
- [
- [
- -0.0974879264831543
- ]
- ]
- ],
- [
- [
- [
- -0.08221512287855148
- ]
- ]
- ],
- [
- [
- [
- -0.1438351571559906
- ]
- ]
- ],
- [
- [
- [
- -0.07963304221630096
- ]
- ]
- ],
- [
- [
- [
- -0.08895023167133331
- ]
- ]
- ],
- [
- [
- [
- -0.22465604543685913
- ]
- ]
- ],
- [
- [
- [
- -0.11721932142972946
- ]
- ]
- ],
- [
- [
- [
- -0.10774079710245132
- ]
- ]
- ],
- [
- [
- [
- -0.09490944445133209
- ]
- ]
- ],
- [
- [
- [
- -0.14025434851646423
- ]
- ]
- ],
- [
- [
- [
- -0.1466863453388214
- ]
- ]
- ],
- [
- [
- [
- -0.08903222531080246
- ]
- ]
- ],
- [
- [
- [
- -0.057088807225227356
- ]
- ]
- ],
- [
- [
- [
- -0.09786785393953323
- ]
- ]
- ],
- [
- [
- [
- -0.1043468564748764
- ]
- ]
- ],
- [
- [
- [
- -0.09294959157705307
- ]
- ]
- ],
- [
- [
- [
- -0.09332462400197983
- ]
- ]
- ],
- [
- [
- [
- -0.06211674213409424
- ]
- ]
- ],
- [
- [
- [
- -0.13530750572681427
- ]
- ]
- ],
- [
- [
- [
- -0.08800535649061203
- ]
- ]
- ],
- [
- [
- [
- -0.0869571790099144
- ]
- ]
- ],
- [
- [
- [
- -0.11146408319473267
- ]
- ]
- ],
- [
- [
- [
- -0.12911109626293182
- ]
- ]
- ],
- [
- [
- [
- -0.0921739786863327
- ]
- ]
- ],
- [
- [
- [
- -0.13804873824119568
- ]
- ]
- ],
- [
- [
- [
- -0.10810303688049316
- ]
- ]
- ],
- [
- [
- [
- -0.09252799302339554
- ]
- ]
- ],
- [
- [
- [
- -0.23380720615386963
- ]
- ]
- ],
- [
- [
- [
- -0.07780127227306366
- ]
- ]
- ],
- [
- [
- [
- -0.1777135729789734
- ]
- ]
- ],
- [
- [
- [
- -0.14629431068897247
- ]
- ]
- ],
- [
- [
- [
- -0.09951049089431763
- ]
- ]
- ],
- [
- [
- [
- -0.11064599454402924
- ]
- ]
- ],
- [
- [
- [
- -0.07137824594974518
- ]
- ]
- ],
- [
- [
- [
- -0.11060818284749985
- ]
- ]
- ],
- [
- [
- [
- -0.08341861516237259
- ]
- ]
- ],
- [
- [
- [
- -0.1331130862236023
- ]
- ]
- ],
- [
- [
- [
- -0.08529622107744217
- ]
- ]
- ],
- [
- [
- [
- -0.07099801301956177
- ]
- ]
- ],
- [
- [
- [
- -0.17250925302505493
- ]
- ]
- ],
- [
- [
- [
- -0.10609203577041626
- ]
- ]
- ],
- [
- [
- [
- -0.11273952573537827
- ]
- ]
- ],
- [
- [
- [
- -0.12467444688081741
- ]
- ]
- ],
- [
- [
- [
- -0.0528140552341938
- ]
- ]
- ],
- [
- [
- [
- -0.12089217454195023
- ]
- ]
- ],
- [
- [
- [
- -0.13694240152835846
- ]
- ]
- ],
- [
- [
- [
- -0.09494708478450775
- ]
- ]
- ],
- [
- [
- [
- -0.09517005831003189
- ]
- ]
- ],
- [
- [
- [
- -0.09173370897769928
- ]
- ]
- ],
- [
- [
- [
- -0.14287760853767395
- ]
- ]
- ],
- [
- [
- [
- -0.08889936655759811
- ]
- ]
- ],
- [
- [
- [
- -0.07412511110305786
- ]
- ]
- ],
- [
- [
- [
- -0.11942169815301895
- ]
- ]
- ],
- [
- [
- [
- -0.08265075832605362
- ]
- ]
- ],
- [
- [
- [
- -0.11597882956266403
- ]
- ]
- ],
- [
- [
- [
- -0.136866495013237
- ]
- ]
- ],
- [
- [
- [
- -0.12942366302013397
- ]
- ]
- ],
- [
- [
- [
- -0.13092643022537231
- ]
- ]
- ],
- [
- [
- [
- -0.06777326762676239
- ]
- ]
- ],
- [
- [
- [
- -0.09761752188205719
- ]
- ]
- ],
- [
- [
- [
- -0.12400688976049423
- ]
- ]
- ],
- [
- [
- [
- -0.06952434033155441
- ]
- ]
- ],
- [
- [
- [
- -0.08214408159255981
- ]
- ]
- ],
- [
- [
- [
- -0.1109093576669693
- ]
- ]
- ],
- [
- [
- [
- -0.08203009516000748
- ]
- ]
- ],
- [
- [
- [
- -0.10151204466819763
- ]
- ]
- ],
- [
- [
- [
- -0.14699135720729828
- ]
- ]
- ],
- [
- [
- [
- -0.08051149547100067
- ]
- ]
- ],
- [
- [
- [
- -0.108080193400383
- ]
- ]
- ],
- [
- [
- [
- -0.09503430873155594
- ]
- ]
- ],
- [
- [
- [
- -0.08208990842103958
- ]
- ]
- ],
- [
- [
- [
- -0.1261313110589981
- ]
- ]
- ],
- [
- [
- [
- -0.11160638928413391
- ]
- ]
- ],
- [
- [
- [
- -0.1404438465833664
- ]
- ]
- ],
- [
- [
- [
- -0.11236241459846497
- ]
- ]
- ],
- [
- [
- [
- -0.11920187622308731
- ]
- ]
- ],
- [
- [
- [
- -0.08200473338365555
- ]
- ]
- ],
- [
- [
- [
- -0.11740203946828842
- ]
- ]
- ],
- [
- [
- [
- -0.09874571114778519
- ]
- ]
- ],
- [
- [
- [
- -0.0770777240395546
- ]
- ]
- ],
- [
- [
- [
- -0.08186709880828857
- ]
- ]
- ],
- [
- [
- [
- -0.1406736522912979
- ]
- ]
- ],
- [
- [
- [
- -0.113337442278862
- ]
- ]
- ],
- [
- [
- [
- -0.16424822807312012
- ]
- ]
- ],
- [
- [
- [
- -0.1298980861902237
- ]
- ]
- ],
- [
- [
- [
- -0.10687495023012161
- ]
- ]
- ],
- [
- [
- [
- -0.08376867324113846
- ]
- ]
- ],
- [
- [
- [
- -0.09650436788797379
- ]
- ]
- ],
- [
- [
- [
- -0.15872253477573395
- ]
- ]
- ],
- [
- [
- [
- -0.05739618092775345
- ]
- ]
- ],
- [
- [
- [
- -0.10206307470798492
- ]
- ]
- ],
- [
- [
- [
- -0.0757237896323204
- ]
- ]
- ],
- [
- [
- [
- -0.138471782207489
- ]
- ]
- ],
- [
- [
- [
- -0.08101782947778702
- ]
- ]
- ],
- [
- [
- [
- -0.09513328969478607
- ]
- ]
- ],
- [
- [
- [
- -0.1214001402258873
- ]
- ]
- ],
- [
- [
- [
- -0.12963572144508362
- ]
- ]
- ],
- [
- [
- [
- -0.10652393847703934
- ]
- ]
- ],
- [
- [
- [
- -0.11833404004573822
- ]
- ]
- ],
- [
- [
- [
- -0.16243892908096313
- ]
- ]
- ],
- [
- [
- [
- -0.12443374842405319
- ]
- ]
- ],
- [
- [
- [
- -0.14844144880771637
- ]
- ]
- ],
- [
- [
- [
- -0.13088823854923248
- ]
- ]
- ],
- [
- [
- [
- -0.09051889181137085
- ]
- ]
- ],
- [
- [
- [
- -0.11792514473199844
- ]
- ]
- ],
- [
- [
- [
- -0.1230434700846672
- ]
- ]
- ],
- [
- [
- [
- -0.08785402029752731
- ]
- ]
- ],
- [
- [
- [
- -0.09404657781124115
- ]
- ]
- ],
- [
- [
- [
- -0.1133490577340126
- ]
- ]
- ],
- [
- [
- [
- -0.1328604519367218
- ]
- ]
- ],
- [
- [
- [
- -0.1510791778564453
- ]
- ]
- ],
- [
- [
- [
- -0.13621921837329865
- ]
- ]
- ],
- [
- [
- [
- -0.06557561457157135
- ]
- ]
- ],
- [
- [
- [
- -0.09528466314077377
- ]
- ]
- ],
- [
- [
- [
- -0.104777492582798
- ]
- ]
- ],
- [
- [
- [
- -0.08744222670793533
- ]
- ]
- ],
- [
- [
- [
- -0.09224014729261398
- ]
- ]
- ],
- [
- [
- [
- -0.083940289914608
- ]
- ]
- ],
- [
- [
- [
- -0.0899057537317276
- ]
- ]
- ],
- [
- [
- [
- -0.11091737449169159
- ]
- ]
- ],
- [
- [
- [
- -0.12203501909971237
- ]
- ]
- ],
- [
- [
- [
- -0.09522687643766403
- ]
- ]
- ],
- [
- [
- [
- -0.08990632742643356
- ]
- ]
- ],
- [
- [
- [
- -0.105129674077034
- ]
- ]
- ],
- [
- [
- [
- -0.12898948788642883
- ]
- ]
- ],
- [
- [
- [
- -0.11810367554426193
- ]
- ]
- ],
- [
- [
- [
- -0.07536670565605164
- ]
- ]
- ],
- [
- [
- [
- -0.13550272583961487
- ]
- ]
- ],
- [
- [
- [
- -0.10213346034288406
- ]
- ]
- ],
- [
- [
- [
- -0.1340252161026001
- ]
- ]
- ],
- [
- [
- [
- -0.12218368053436279
- ]
- ]
- ],
- [
- [
- [
- -0.12239748239517212
- ]
- ]
- ],
- [
- [
- [
- -0.10598905384540558
- ]
- ]
- ],
- [
- [
- [
- -0.10114075243473053
- ]
- ]
- ],
- [
- [
- [
- -0.1151387095451355
- ]
- ]
- ],
- [
- [
- [
- -0.1355503499507904
- ]
- ]
- ],
- [
- [
- [
- -0.07377024739980698
- ]
- ]
- ],
- [
- [
- [
- -0.10825680196285248
- ]
- ]
- ],
- [
- [
- [
- -0.10680516809225082
- ]
- ]
- ],
- [
- [
- [
- -0.0868532583117485
- ]
- ]
- ],
- [
- [
- [
- -0.09549140185117722
- ]
- ]
- ],
- [
- [
- [
- -0.11461697518825531
- ]
- ]
- ],
- [
- [
- [
- -0.10857164859771729
- ]
- ]
- ],
- [
- [
- [
- -0.15750905871391296
- ]
- ]
- ],
- [
- [
- [
- -0.10699065029621124
- ]
- ]
- ],
- [
- [
- [
- -0.1181691586971283
- ]
- ]
- ],
- [
- [
- [
- -0.11944794654846191
- ]
- ]
- ],
- [
- [
- [
- -0.09277509152889252
- ]
- ]
- ],
- [
- [
- [
- -0.1027052029967308
- ]
- ]
- ],
- [
- [
- [
- -0.07269895821809769
- ]
- ]
- ],
- [
- [
- [
- -0.08873871713876724
- ]
- ]
- ],
- [
- [
- [
- -0.11396294087171555
- ]
- ]
- ],
- [
- [
- [
- -0.11556888371706009
- ]
- ]
- ],
- [
- [
- [
- -0.10613702237606049
- ]
- ]
- ],
- [
- [
- [
- -0.09969168156385422
- ]
- ]
- ],
- [
- [
- [
- -0.1113915890455246
- ]
- ]
- ],
- [
- [
- [
- -0.10746919363737106
- ]
- ]
- ],
- [
- [
- [
- -0.10264711081981659
- ]
- ]
- ],
- [
- [
- [
- -0.0898546352982521
- ]
- ]
- ],
- [
- [
- [
- -0.13560345768928528
- ]
- ]
- ],
- [
- [
- [
- -0.08533881604671478
- ]
- ]
- ],
- [
- [
- [
- -0.06986482441425323
- ]
- ]
- ],
- [
- [
- [
- -0.09630849957466125
- ]
- ]
- ],
- [
- [
- [
- -0.10000449419021606
- ]
- ]
- ],
- [
- [
- [
- -0.1548929661512375
- ]
- ]
- ],
- [
- [
- [
- -0.06634726375341415
- ]
- ]
- ],
- [
- [
- [
- -0.10305790603160858
- ]
- ]
- ],
- [
- [
- [
- -0.10468778759241104
- ]
- ]
- ],
- [
- [
- [
- -0.0667087733745575
- ]
- ]
- ],
- [
- [
- [
- -0.07508361339569092
- ]
- ]
- ],
- [
- [
- [
- -0.10079582780599594
- ]
- ]
- ],
- [
- [
- [
- -0.11196959763765335
- ]
- ]
- ],
- [
- [
- [
- -0.1695886105298996
- ]
- ]
- ],
- [
- [
- [
- -0.1208585798740387
- ]
- ]
- ],
- [
- [
- [
- -0.14266397058963776
- ]
- ]
- ],
- [
- [
- [
- -0.14265063405036926
- ]
- ]
- ],
- [
- [
- [
- -0.06610866636037827
- ]
- ]
- ],
- [
- [
- [
- -0.13364309072494507
- ]
- ]
- ],
- [
- [
- [
- -0.10709577053785324
- ]
- ]
- ],
- [
- [
- [
- -0.12568259239196777
- ]
- ]
- ],
- [
- [
- [
- -0.1408344805240631
- ]
- ]
- ],
- [
- [
- [
- -0.12547774612903595
- ]
- ]
- ],
- [
- [
- [
- -0.07644420117139816
- ]
- ]
- ],
- [
- [
- [
- -0.12396804243326187
- ]
- ]
- ],
- [
- [
- [
- -0.09364700317382812
- ]
- ]
- ],
- [
- [
- [
- -0.1708587408065796
- ]
- ]
- ],
- [
- [
- [
- -0.09310663491487503
- ]
- ]
- ],
- [
- [
- [
- -0.06397010385990143
- ]
- ]
- ],
- [
- [
- [
- -0.12372168898582458
- ]
- ]
- ],
- [
- [
- [
- -0.13343271613121033
- ]
- ]
- ],
- [
- [
- [
- -0.11750024557113647
- ]
- ]
- ],
- [
- [
- [
- -0.06142254173755646
- ]
- ]
- ],
- [
- [
- [
- -0.07973030209541321
- ]
- ]
- ],
- [
- [
- [
- -0.06345310807228088
- ]
- ]
- ],
- [
- [
- [
- -0.11659856885671616
- ]
- ]
- ],
- [
- [
- [
- -0.09040359407663345
- ]
- ]
- ],
- [
- [
- [
- -0.08466991037130356
- ]
- ]
- ],
- [
- [
- [
- -0.11737503111362457
- ]
- ]
- ],
- [
- [
- [
- -0.1148495301604271
- ]
- ]
- ],
- [
- [
- [
- -0.08879699558019638
- ]
- ]
- ],
- [
- [
- [
- -0.058289237320423126
- ]
- ]
- ],
- [
- [
- [
- -0.1281253546476364
- ]
- ]
- ],
- [
- [
- [
- -0.11916706711053848
- ]
- ]
- ],
- [
- [
- [
- -0.11274290829896927
- ]
- ]
- ],
- [
- [
- [
- -0.13131484389305115
- ]
- ]
- ],
- [
- [
- [
- -0.0746636763215065
- ]
- ]
- ],
- [
- [
- [
- -0.08131582289934158
- ]
- ]
- ],
- [
- [
- [
- -0.07199142128229141
- ]
- ]
- ],
- [
- [
- [
- -0.0668354257941246
- ]
- ]
- ],
- [
- [
- [
- -0.13071003556251526
- ]
- ]
- ],
- [
- [
- [
- -0.09814717620611191
- ]
- ]
- ],
- [
- [
- [
- -0.07950754463672638
- ]
- ]
- ],
- [
- [
- [
- -0.17159637808799744
- ]
- ]
- ],
- [
- [
- [
- -0.10072757303714752
- ]
- ]
- ],
- [
- [
- [
- -0.10858873277902603
- ]
- ]
- ],
- [
- [
- [
- -0.10707148164510727
- ]
- ]
- ],
- [
- [
- [
- -0.10628347843885422
- ]
- ]
- ],
- [
- [
- [
- -0.11523763090372086
- ]
- ]
- ],
- [
- [
- [
- -0.0912754088640213
- ]
- ]
- ],
- [
- [
- [
- -0.14238883554935455
- ]
- ]
- ],
- [
- [
- [
- -0.12185842543840408
- ]
- ]
- ],
- [
- [
- [
- -0.11577854305505753
- ]
- ]
- ],
- [
- [
- [
- -0.09625297784805298
- ]
- ]
- ],
- [
- [
- [
- -0.10200455039739609
- ]
- ]
- ],
- [
- [
- [
- -0.07022039592266083
- ]
- ]
- ],
- [
- [
- [
- -0.10201803594827652
- ]
- ]
- ],
- [
- [
- [
- -0.0629100576043129
- ]
- ]
- ],
- [
- [
- [
- -0.13873344659805298
- ]
- ]
- ],
- [
- [
- [
- -0.14672106504440308
- ]
- ]
- ],
- [
- [
- [
- -0.06021640822291374
- ]
- ]
- ],
- [
- [
- [
- -0.12231196463108063
- ]
- ]
- ],
- [
- [
- [
- -0.1195724681019783
- ]
- ]
- ],
- [
- [
- [
- -0.08019347488880157
- ]
- ]
- ],
- [
- [
- [
- -0.07957106828689575
- ]
- ]
- ],
- [
- [
- [
- -0.21999870240688324
- ]
- ]
- ],
- [
- [
- [
- -0.14249849319458008
- ]
- ]
- ],
- [
- [
- [
- -0.13591790199279785
- ]
- ]
- ],
- [
- [
- [
- -0.08098379522562027
- ]
- ]
- ],
- [
- [
- [
- -0.09181834757328033
- ]
- ]
- ],
- [
- [
- [
- -0.08774899691343307
- ]
- ]
- ],
- [
- [
- [
- -0.08990335464477539
- ]
- ]
- ],
- [
- [
- [
- -0.07508888840675354
- ]
- ]
- ],
- [
- [
- [
- -0.1375122368335724
- ]
- ]
- ],
- [
- [
- [
- -0.20828111469745636
- ]
- ]
- ],
- [
- [
- [
- -0.13707394897937775
- ]
- ]
- ],
- [
- [
- [
- -0.1185675784945488
- ]
- ]
- ],
- [
- [
- [
- -0.08983787894248962
- ]
- ]
- ],
- [
- [
- [
- -0.11345090717077255
- ]
- ]
- ],
- [
- [
- [
- -0.0734454095363617
- ]
- ]
- ],
- [
- [
- [
- -0.10866709798574448
- ]
- ]
- ],
- [
- [
- [
- -0.0892694890499115
- ]
- ]
- ],
- [
- [
- [
- -0.06636480987071991
- ]
- ]
- ],
- [
- [
- [
- -0.0933934822678566
- ]
- ]
- ],
- [
- [
- [
- -0.09067552536725998
- ]
- ]
- ],
- [
- [
- [
- -0.06884029507637024
- ]
- ]
- ],
- [
- [
- [
- -0.151616632938385
- ]
- ]
- ],
- [
- [
- [
- -0.1877824068069458
- ]
- ]
- ],
- [
- [
- [
- -0.1588238626718521
- ]
- ]
- ],
- [
- [
- [
- -0.12537431716918945
- ]
- ]
- ],
- [
- [
- [
- -0.12258077412843704
- ]
- ]
- ],
- [
- [
- [
- -0.13809221982955933
- ]
- ]
- ],
- [
- [
- [
- -0.13199418783187866
- ]
- ]
- ],
- [
- [
- [
- -0.11882352828979492
- ]
- ]
- ],
- [
- [
- [
- -0.12593387067317963
- ]
- ]
- ],
- [
- [
- [
- -0.11099061369895935
- ]
- ]
- ],
- [
- [
- [
- -0.1254315823316574
- ]
- ]
- ],
- [
- [
- [
- -0.09533803910017014
- ]
- ]
- ],
- [
- [
- [
- -0.07976538687944412
- ]
- ]
- ],
- [
- [
- [
- -0.09957624226808548
- ]
- ]
- ],
- [
- [
- [
- -0.13051798939704895
- ]
- ]
- ],
- [
- [
- [
- -0.1162736639380455
- ]
- ]
- ],
- [
- [
- [
- -0.14774557948112488
- ]
- ]
- ],
- [
- [
- [
- -0.08330348879098892
- ]
- ]
- ],
- [
- [
- [
- -0.09584853798151016
- ]
- ]
- ],
- [
- [
- [
- -0.11463061720132828
- ]
- ]
- ],
- [
- [
- [
- -0.04607919231057167
- ]
- ]
- ],
- [
- [
- [
- -0.09859898686408997
- ]
- ]
- ],
- [
- [
- [
- -0.10526446253061295
- ]
- ]
- ],
- [
- [
- [
- -0.08130845427513123
- ]
- ]
- ],
- [
- [
- [
- -0.11744294315576553
- ]
- ]
- ],
- [
- [
- [
- -0.08107966929674149
- ]
- ]
- ],
- [
- [
- [
- -0.06533537805080414
- ]
- ]
- ],
- [
- [
- [
- -0.14844118058681488
- ]
- ]
- ],
- [
- [
- [
- -0.1656751185655594
- ]
- ]
- ],
- [
- [
- [
- -0.0993647649884224
- ]
- ]
- ],
- [
- [
- [
- -0.08890654891729355
- ]
- ]
- ],
- [
- [
- [
- -0.12734279036521912
- ]
- ]
- ],
- [
- [
- [
- -0.062493063509464264
- ]
- ]
- ],
- [
- [
- [
- -0.11376073211431503
- ]
- ]
- ],
- [
- [
- [
- -0.09767380356788635
- ]
- ]
- ],
- [
- [
- [
- -0.09542091190814972
- ]
- ]
- ],
- [
- [
- [
- -0.06378311663866043
- ]
- ]
- ],
- [
- [
- [
- -0.14439824223518372
- ]
- ]
- ],
- [
- [
- [
- -0.13727955520153046
- ]
- ]
- ],
- [
- [
- [
- -0.17133647203445435
- ]
- ]
- ],
- [
- [
- [
- -0.06737971305847168
- ]
- ]
- ],
- [
- [
- [
- -0.15409521758556366
- ]
- ]
- ],
- [
- [
- [
- -0.14044417440891266
- ]
- ]
- ],
- [
- [
- [
- -0.10692892968654633
- ]
- ]
- ],
- [
- [
- [
- -0.08284033834934235
- ]
- ]
- ],
- [
- [
- [
- -0.07837749272584915
- ]
- ]
- ],
- [
- [
- [
- -0.06181102618575096
- ]
- ]
- ],
- [
- [
- [
- -0.08544927090406418
- ]
- ]
- ],
- [
- [
- [
- -0.1516827642917633
- ]
- ]
- ],
- [
- [
- [
- -0.11924028396606445
- ]
- ]
- ],
- [
- [
- [
- -0.13868878781795502
- ]
- ]
- ],
- [
- [
- [
- -0.1087103933095932
- ]
- ]
- ],
- [
- [
- [
- -0.15110540390014648
- ]
- ]
- ],
- [
- [
- [
- -0.11307187378406525
- ]
- ]
- ],
- [
- [
- [
- -0.12772177159786224
- ]
- ]
- ],
- [
- [
- [
- -0.057609327137470245
- ]
- ]
- ],
- [
- [
- [
- -0.12486418336629868
- ]
- ]
- ],
- [
- [
- [
- -0.10906631499528885
- ]
- ]
- ],
- [
- [
- [
- -0.11926053464412689
- ]
- ]
- ],
- [
- [
- [
- -0.12476663291454315
- ]
- ]
- ],
- [
- [
- [
- -0.09853202104568481
- ]
- ]
- ],
- [
- [
- [
- -0.11345241218805313
- ]
- ]
- ],
- [
- [
- [
- -0.11234209686517715
- ]
- ]
- ],
- [
- [
- [
- -0.1130700632929802
- ]
- ]
- ],
- [
- [
- [
- -0.11143561452627182
- ]
- ]
- ],
- [
- [
- [
- -0.11652734130620956
- ]
- ]
- ],
- [
- [
- [
- -0.10695341974496841
- ]
- ]
- ],
- [
- [
- [
- -0.11669100821018219
- ]
- ]
- ],
- [
- [
- [
- -0.10790704935789108
- ]
- ]
- ],
- [
- [
- [
- -0.0921764001250267
- ]
- ]
- ],
- [
- [
- [
- -0.07292458415031433
- ]
- ]
- ],
- [
- [
- [
- -0.10066795349121094
- ]
- ]
- ],
- [
- [
- [
- -0.13977308571338654
- ]
- ]
- ],
- [
- [
- [
- -0.1045520082116127
- ]
- ]
- ],
- [
- [
- [
- -0.06537806242704391
- ]
- ]
- ],
- [
- [
- [
- -0.10629036277532578
- ]
- ]
- ],
- [
- [
- [
- -0.08034893125295639
- ]
- ]
- ],
- [
- [
- [
- -0.07865703850984573
- ]
- ]
- ],
- [
- [
- [
- -0.10350487381219864
- ]
- ]
- ],
- [
- [
- [
- -0.08512765169143677
- ]
- ]
- ],
- [
- [
- [
- -0.1171247586607933
- ]
- ]
- ],
- [
- [
- [
- -0.11434537917375565
- ]
- ]
- ],
- [
- [
- [
- -0.07044143974781036
- ]
- ]
- ],
- [
- [
- [
- -0.06195991113781929
- ]
- ]
- ],
- [
- [
- [
- -0.157009556889534
- ]
- ]
- ],
- [
- [
- [
- -0.12280819565057755
- ]
- ]
- ],
- [
- [
- [
- -0.08921337127685547
- ]
- ]
- ],
- [
- [
- [
- -0.10311742126941681
- ]
- ]
- ],
- [
- [
- [
- -0.13863585889339447
- ]
- ]
- ],
- [
- [
- [
- -0.16576045751571655
- ]
- ]
- ],
- [
- [
- [
- -0.07499579340219498
- ]
- ]
- ],
- [
- [
- [
- -0.14102667570114136
- ]
- ]
- ],
- [
- [
- [
- -0.11613451689481735
- ]
- ]
- ],
- [
- [
- [
- -0.1304466426372528
- ]
- ]
- ],
- [
- [
- [
- -0.08585295081138611
- ]
- ]
- ],
- [
- [
- [
- -0.1462370902299881
- ]
- ]
- ],
- [
- [
- [
- -0.08896096795797348
- ]
- ]
- ],
- [
- [
- [
- -0.06690352410078049
- ]
- ]
- ],
- [
- [
- [
- -0.12137788534164429
- ]
- ]
- ],
- [
- [
- [
- -0.12798137962818146
- ]
- ]
- ],
- [
- [
- [
- -0.10512511432170868
- ]
- ]
- ],
- [
- [
- [
- -0.0713142603635788
- ]
- ]
- ],
- [
- [
- [
- -0.12194234877824783
- ]
- ]
- ],
- [
- [
- [
- -0.08854077011346817
- ]
- ]
- ],
- [
- [
- [
- -0.09003933519124985
- ]
- ]
- ],
- [
- [
- [
- -0.07966115325689316
- ]
- ]
- ],
- [
- [
- [
- -0.09571016579866409
- ]
- ]
- ],
- [
- [
- [
- -0.1239721029996872
- ]
- ]
- ],
- [
- [
- [
- -0.11278075724840164
- ]
- ]
- ],
- [
- [
- [
- -0.17209844291210175
- ]
- ]
- ],
- [
- [
- [
- -0.11157318949699402
- ]
- ]
- ],
- [
- [
- [
- -0.13838371634483337
- ]
- ]
- ],
- [
- [
- [
- -0.12343267351388931
- ]
- ]
- ],
- [
- [
- [
- -0.0901406854391098
- ]
- ]
- ],
- [
- [
- [
- -0.12942856550216675
- ]
- ]
- ],
- [
- [
- [
- -0.09049946069717407
- ]
- ]
- ],
- [
- [
- [
- -0.10690564662218094
- ]
- ]
- ],
- [
- [
- [
- -0.13093684613704681
- ]
- ]
- ],
- [
- [
- [
- -0.15335078537464142
- ]
- ]
- ],
- [
- [
- [
- -0.0976998582482338
- ]
- ]
- ],
- [
- [
- [
- -0.10199800133705139
- ]
- ]
- ],
- [
- [
- [
- -0.14030978083610535
- ]
- ]
- ],
- [
- [
- [
- -0.10375906527042389
- ]
- ]
- ],
- [
- [
- [
- -0.06775738298892975
- ]
- ]
- ],
- [
- [
- [
- -0.06433076411485672
- ]
- ]
- ],
- [
- [
- [
- -0.1318317949771881
- ]
- ]
- ],
- [
- [
- [
- -0.12705092132091522
- ]
- ]
- ],
- [
- [
- [
- -0.10864292085170746
- ]
- ]
- ],
- [
- [
- [
- -0.09662646800279617
- ]
- ]
- ],
- [
- [
- [
- -0.09309905767440796
- ]
- ]
- ],
- [
- [
- [
- -0.11181088536977768
- ]
- ]
- ],
- [
- [
- [
- -0.0969972312450409
- ]
- ]
- ],
- [
- [
- [
- -0.16642752289772034
- ]
- ]
- ],
- [
- [
- [
- -0.0986553430557251
- ]
- ]
- ],
- [
- [
- [
- -0.1348530501127243
- ]
- ]
- ],
- [
- [
- [
- -0.10829022526741028
- ]
- ]
- ],
- [
- [
- [
- -0.11607635766267776
- ]
- ]
- ],
- [
- [
- [
- -0.05848212167620659
- ]
- ]
- ],
- [
- [
- [
- -0.12435334175825119
- ]
- ]
- ],
- [
- [
- [
- -0.07449059188365936
- ]
- ]
- ],
- [
- [
- [
- -0.1153937578201294
- ]
- ]
- ],
- [
- [
- [
- -0.07182100415229797
- ]
- ]
- ],
- [
- [
- [
- -0.10656853765249252
- ]
- ]
- ],
- [
- [
- [
- -0.08254068344831467
- ]
- ]
- ],
- [
- [
- [
- -0.10722311586141586
- ]
- ]
- ],
- [
- [
- [
- -0.12075849622488022
- ]
- ]
- ],
- [
- [
- [
- -0.14533479511737823
- ]
- ]
- ],
- [
- [
- [
- -0.12118887156248093
- ]
- ]
- ],
- [
- [
- [
- -0.08189192414283752
- ]
- ]
- ],
- [
- [
- [
- -0.12744316458702087
- ]
- ]
- ],
- [
- [
- [
- -0.06815888732671738
- ]
- ]
- ],
- [
- [
- [
- -0.05499519407749176
- ]
- ]
- ],
- [
- [
- [
- -0.08273191004991531
- ]
- ]
- ],
- [
- [
- [
- -0.1239996924996376
- ]
- ]
- ],
- [
- [
- [
- -0.1302541047334671
- ]
- ]
- ],
- [
- [
- [
- -0.10206776112318039
- ]
- ]
- ],
- [
- [
- [
- -0.11280180513858795
- ]
- ]
- ],
- [
- [
- [
- -0.16003477573394775
- ]
- ]
- ],
- [
- [
- [
- -0.09657474607229233
- ]
- ]
- ],
- [
- [
- [
- -0.14419624209403992
- ]
- ]
- ],
- [
- [
- [
- -0.1029721349477768
- ]
- ]
- ],
- [
- [
- [
- -0.09688390046358109
- ]
- ]
- ],
- [
- [
- [
- -0.12920254468917847
- ]
- ]
- ],
- [
- [
- [
- -0.10150521993637085
- ]
- ]
- ],
- [
- [
- [
- -0.07813427597284317
- ]
- ]
- ],
- [
- [
- [
- -0.11106064915657043
- ]
- ]
- ],
- [
- [
- [
- -0.09061180055141449
- ]
- ]
- ],
- [
- [
- [
- -0.11911047995090485
- ]
- ]
- ],
- [
- [
- [
- -0.1484537422657013
- ]
- ]
- ],
- [
- [
- [
- -0.10584958642721176
- ]
- ]
- ],
- [
- [
- [
- -0.10034807026386261
- ]
- ]
- ],
- [
- [
- [
- -0.10963086038827896
- ]
- ]
- ],
- [
- [
- [
- -0.13250266015529633
- ]
- ]
- ],
- [
- [
- [
- -0.07636609673500061
- ]
- ]
- ],
- [
- [
- [
- -0.11532587558031082
- ]
- ]
- ],
- [
- [
- [
- -0.09939517080783844
- ]
- ]
- ],
- [
- [
- [
- -0.09374889731407166
- ]
- ]
- ],
- [
- [
- [
- -0.09962423145771027
- ]
- ]
- ],
- [
- [
- [
- -0.12683236598968506
- ]
- ]
- ],
- [
- [
- [
- -0.14499175548553467
- ]
- ]
- ],
- [
- [
- [
- -0.09692131727933884
- ]
- ]
- ],
- [
- [
- [
- -0.08210159093141556
- ]
- ]
- ],
- [
- [
- [
- -0.09275905042886734
- ]
- ]
- ],
- [
- [
- [
- -0.10740861296653748
- ]
- ]
- ],
- [
- [
- [
- -0.08431559801101685
- ]
- ]
- ],
- [
- [
- [
- -0.12102232128381729
- ]
- ]
- ],
- [
- [
- [
- -0.11440484970808029
- ]
- ]
- ],
- [
- [
- [
- -0.07652193307876587
- ]
- ]
- ],
- [
- [
- [
- -0.12430684268474579
- ]
- ]
- ],
- [
- [
- [
- -0.12887327373027802
- ]
- ]
- ],
- [
- [
- [
- -0.15724483132362366
- ]
- ]
- ],
- [
- [
- [
- -0.19706451892852783
- ]
- ]
- ],
- [
- [
- [
- -0.09659164398908615
- ]
- ]
- ],
- [
- [
- [
- -0.09968344122171402
- ]
- ]
- ],
- [
- [
- [
- -0.1069020926952362
- ]
- ]
- ],
- [
- [
- [
- -0.132303386926651
- ]
- ]
- ],
- [
- [
- [
- -0.1000232845544815
- ]
- ]
- ],
- [
- [
- [
- -0.10618573427200317
- ]
- ]
- ],
- [
- [
- [
- -0.12095846235752106
- ]
- ]
- ],
- [
- [
- [
- -0.16074657440185547
- ]
- ]
- ],
- [
- [
- [
- -0.16995839774608612
- ]
- ]
- ],
- [
- [
- [
- -0.08310679346323013
- ]
- ]
- ],
- [
- [
- [
- -0.15833669900894165
- ]
- ]
- ],
- [
- [
- [
- -0.10211434960365295
- ]
- ]
- ],
- [
- [
- [
- -0.11701148748397827
- ]
- ]
- ],
- [
- [
- [
- -0.11484240740537643
- ]
- ]
- ],
- [
- [
- [
- -0.11740206182003021
- ]
- ]
- ],
- [
- [
- [
- -0.06433029472827911
- ]
- ]
- ],
- [
- [
- [
- -0.10022271424531937
- ]
- ]
- ],
- [
- [
- [
- -0.13317076861858368
- ]
- ]
- ],
- [
- [
- [
- -0.09578404575586319
- ]
- ]
- ],
- [
- [
- [
- -0.08095664530992508
- ]
- ]
- ],
- [
- [
- [
- -0.1446799486875534
- ]
- ]
- ],
- [
- [
- [
- -0.12812836468219757
- ]
- ]
- ],
- [
- [
- [
- -0.11472494155168533
- ]
- ]
- ],
- [
- [
- [
- -0.08412172645330429
- ]
- ]
- ],
- [
- [
- [
- -0.08782412111759186
- ]
- ]
- ],
- [
- [
- [
- -0.10058581084012985
- ]
- ]
- ],
- [
- [
- [
- -0.08729946613311768
- ]
- ]
- ],
- [
- [
- [
- -0.10171807557344437
- ]
- ]
- ],
- [
- [
- [
- -0.07877551764249802
- ]
- ]
- ],
- [
- [
- [
- -0.11170919984579086
- ]
- ]
- ],
- [
- [
- [
- -0.06904307752847672
- ]
- ]
- ],
- [
- [
- [
- -0.09130816906690598
- ]
- ]
- ],
- [
- [
- [
- -0.13287514448165894
- ]
- ]
- ],
- [
- [
- [
- -0.12513460218906403
- ]
- ]
- ],
- [
- [
- [
- -0.07841340452432632
- ]
- ]
- ],
- [
- [
- [
- -0.10529513657093048
- ]
- ]
- ],
- [
- [
- [
- -0.09808158874511719
- ]
- ]
- ],
- [
- [
- [
- -0.07079874724149704
- ]
- ]
- ],
- [
- [
- [
- -0.10425189882516861
- ]
- ]
- ],
- [
- [
- [
- -0.08621910214424133
- ]
- ]
- ],
- [
- [
- [
- -0.16245853900909424
- ]
- ]
- ],
- [
- [
- [
- -0.10689462721347809
- ]
- ]
- ],
- [
- [
- [
- -0.12411796301603317
- ]
- ]
- ],
- [
- [
- [
- -0.06720659881830215
- ]
- ]
- ],
- [
- [
- [
- -0.08337591588497162
- ]
- ]
- ],
- [
- [
- [
- -0.05607900395989418
- ]
- ]
- ],
- [
- [
- [
- -0.10015270113945007
- ]
- ]
- ],
- [
- [
- [
- -0.13322913646697998
- ]
- ]
- ],
- [
- [
- [
- -0.10524462163448334
- ]
- ]
- ],
- [
- [
- [
- -0.10758447647094727
- ]
- ]
- ],
- [
- [
- [
- -0.0882074162364006
- ]
- ]
- ],
- [
- [
- [
- -0.07260526716709137
- ]
- ]
- ],
- [
- [
- [
- -0.06753478199243546
- ]
- ]
- ],
- [
- [
- [
- -0.10443416237831116
- ]
- ]
- ],
- [
- [
- [
- -0.09588133543729782
- ]
- ]
- ],
- [
- [
- [
- -0.12183008342981339
- ]
- ]
- ],
- [
- [
- [
- -0.112009197473526
- ]
- ]
- ],
- [
- [
- [
- -0.14260084927082062
- ]
- ]
- ],
- [
- [
- [
- -0.09019289910793304
- ]
- ]
- ],
- [
- [
- [
- -0.06517241150140762
- ]
- ]
- ],
- [
- [
- [
- -0.08728966116905212
- ]
- ]
- ],
- [
- [
- [
- -0.10962951183319092
- ]
- ]
- ],
- [
- [
- [
- -0.17001551389694214
- ]
- ]
- ],
- [
- [
- [
- -0.0975918248295784
- ]
- ]
- ],
- [
- [
- [
- -0.12416315823793411
- ]
- ]
- ],
- [
- [
- [
- -0.09265103191137314
- ]
- ]
- ],
- [
- [
- [
- -0.1455775946378708
- ]
- ]
- ],
- [
- [
- [
- -0.1418238878250122
- ]
- ]
- ],
- [
- [
- [
- -0.131975919008255
- ]
- ]
- ],
- [
- [
- [
- -0.11731333285570145
- ]
- ]
- ],
- [
- [
- [
- -0.11624395847320557
- ]
- ]
- ],
- [
- [
- [
- -0.10047025978565216
- ]
- ]
- ],
- [
- [
- [
- -0.06697341054677963
- ]
- ]
- ],
- [
- [
- [
- -0.07945547252893448
- ]
- ]
- ],
- [
- [
- [
- -0.07362378388643265
- ]
- ]
- ],
- [
- [
- [
- -0.12403374910354614
- ]
- ]
- ],
- [
- [
- [
- -0.07933995872735977
- ]
- ]
- ],
- [
- [
- [
- -0.11370373517274857
- ]
- ]
- ],
- [
- [
- [
- -0.07922452688217163
- ]
- ]
- ],
- [
- [
- [
- -0.10415773093700409
- ]
- ]
- ],
- [
- [
- [
- -0.08014906197786331
- ]
- ]
- ],
- [
- [
- [
- -0.06317853927612305
- ]
- ]
- ],
- [
- [
- [
- -0.14078855514526367
- ]
- ]
- ],
- [
- [
- [
- -0.049417994916439056
- ]
- ]
- ],
- [
- [
- [
- -0.10651809722185135
- ]
- ]
- ],
- [
- [
- [
- -0.07095514237880707
- ]
- ]
- ],
- [
- [
- [
- -0.10557207465171814
- ]
- ]
- ],
- [
- [
- [
- -0.09825211763381958
- ]
- ]
- ],
- [
- [
- [
- -0.11618512123823166
- ]
- ]
- ],
- [
- [
- [
- -0.136461541056633
- ]
- ]
- ],
- [
- [
- [
- -0.0798511654138565
- ]
- ]
- ],
- [
- [
- [
- -0.17682094871997833
- ]
- ]
- ],
- [
- [
- [
- -0.09722670912742615
- ]
- ]
- ],
- [
- [
- [
- -0.09248413145542145
- ]
- ]
- ],
- [
- [
- [
- -0.06719827651977539
- ]
- ]
- ],
- [
- [
- [
- -0.09774357080459595
- ]
- ]
- ],
- [
- [
- [
- -0.16649140417575836
- ]
- ]
- ],
- [
- [
- [
- -0.11716952174901962
- ]
- ]
- ],
- [
- [
- [
- -0.11738277971744537
- ]
- ]
- ],
- [
- [
- [
- -0.10370578616857529
- ]
- ]
- ],
- [
- [
- [
- -0.09955193847417831
- ]
- ]
- ],
- [
- [
- [
- -0.08525557070970535
- ]
- ]
- ],
- [
- [
- [
- -0.09301915764808655
- ]
- ]
- ],
- [
- [
- [
- -0.11662902683019638
- ]
- ]
- ],
- [
- [
- [
- -0.1170889362692833
- ]
- ]
- ],
- [
- [
- [
- -0.14079943299293518
- ]
- ]
- ],
- [
- [
- [
- -0.07206206768751144
- ]
- ]
- ],
- [
- [
- [
- -0.13919976353645325
- ]
- ]
- ],
- [
- [
- [
- -0.10727459192276001
- ]
- ]
- ],
- [
- [
- [
- -0.10635294020175934
- ]
- ]
- ],
- [
- [
- [
- -0.07272119075059891
- ]
- ]
- ],
- [
- [
- [
- -0.10634204000234604
- ]
- ]
- ],
- [
- [
- [
- -0.10939183086156845
- ]
- ]
- ],
- [
- [
- [
- -0.12368644773960114
- ]
- ]
- ],
- [
- [
- [
- -0.0583941675722599
- ]
- ]
- ],
- [
- [
- [
- -0.1759897768497467
- ]
- ]
- ],
- [
- [
- [
- -0.07685467600822449
- ]
- ]
- ],
- [
- [
- [
- -0.09946926683187485
- ]
- ]
- ],
- [
- [
- [
- -0.11418312788009644
- ]
- ]
- ],
- [
- [
- [
- -0.11486251652240753
- ]
- ]
- ],
- [
- [
- [
- -0.11153148859739304
- ]
- ]
- ],
- [
- [
- [
- -0.12919680774211884
- ]
- ]
- ],
- [
- [
- [
- -0.11865189671516418
- ]
- ]
- ],
- [
- [
- [
- -0.10118752717971802
- ]
- ]
- ],
- [
- [
- [
- -0.09533622860908508
- ]
- ]
- ],
- [
- [
- [
- -0.1148749366402626
- ]
- ]
- ],
- [
- [
- [
- -0.13439790904521942
- ]
- ]
- ],
- [
- [
- [
- -0.17384758591651917
- ]
- ]
- ],
- [
- [
- [
- -0.09122811257839203
- ]
- ]
- ],
- [
- [
- [
- -0.15685723721981049
- ]
- ]
- ],
- [
- [
- [
- -0.19040605425834656
- ]
- ]
- ],
- [
- [
- [
- -0.06348840892314911
- ]
- ]
- ],
- [
- [
- [
- -0.06313139945268631
- ]
- ]
- ],
- [
- [
- [
- -0.139471635222435
- ]
- ]
- ],
- [
- [
- [
- -0.15336716175079346
- ]
- ]
- ],
- [
- [
- [
- -0.36989083886146545
- ]
- ]
- ],
- [
- [
- [
- -0.13796231150627136
- ]
- ]
- ],
- [
- [
- [
- -0.07850717008113861
- ]
- ]
- ],
- [
- [
- [
- -0.0968884751200676
- ]
- ]
- ],
- [
- [
- [
- -0.13210529088974
- ]
- ]
- ],
- [
- [
- [
- -0.09742090106010437
- ]
- ]
- ],
- [
- [
- [
- -0.12738558650016785
- ]
- ]
- ],
- [
- [
- [
- -0.09732162207365036
- ]
- ]
- ],
- [
- [
- [
- -0.11478330940008163
- ]
- ]
- ],
- [
- [
- [
- -0.13739149272441864
- ]
- ]
- ],
- [
- [
- [
- -0.10063342750072479
- ]
- ]
- ],
- [
- [
- [
- -0.08205841481685638
- ]
- ]
- ],
- [
- [
- [
- -0.11039140820503235
- ]
- ]
- ],
- [
- [
- [
- -0.14770744740962982
- ]
- ]
- ],
- [
- [
- [
- -0.12457761913537979
- ]
- ]
- ],
- [
- [
- [
- -0.10150700062513351
- ]
- ]
- ],
- [
- [
- [
- -0.07471436262130737
- ]
- ]
- ],
- [
- [
- [
- -0.15485762059688568
- ]
- ]
- ],
- [
- [
- [
- -0.058032140135765076
- ]
- ]
- ],
- [
- [
- [
- -0.13998468220233917
- ]
- ]
- ],
- [
- [
- [
- -0.09014527499675751
- ]
- ]
- ],
- [
- [
- [
- -0.08379329741001129
- ]
- ]
- ],
- [
- [
- [
- -0.09356965124607086
- ]
- ]
- ],
- [
- [
- [
- -0.09377752989530563
- ]
- ]
- ],
- [
- [
- [
- -0.12806983292102814
- ]
- ]
- ],
- [
- [
- [
- -0.13670580089092255
- ]
- ]
- ],
- [
- [
- [
- -0.10097579658031464
- ]
- ]
- ],
- [
- [
- [
- -0.09476497769355774
- ]
- ]
- ],
- [
- [
- [
- -0.08515308797359467
- ]
- ]
- ],
- [
- [
- [
- -0.1261972188949585
- ]
- ]
- ],
- [
- [
- [
- -0.09628938138484955
- ]
- ]
- ],
- [
- [
- [
- -0.08974553644657135
- ]
- ]
- ],
- [
- [
- [
- -0.12381140142679214
- ]
- ]
- ],
- [
- [
- [
- -0.12440940737724304
- ]
- ]
- ],
- [
- [
- [
- -0.10332001745700836
- ]
- ]
- ],
- [
- [
- [
- -0.08677545189857483
- ]
- ]
- ],
- [
- [
- [
- -0.14178940653800964
- ]
- ]
- ],
- [
- [
- [
- -0.12892977893352509
- ]
- ]
- ],
- [
- [
- [
- -0.1269225776195526
- ]
- ]
- ],
- [
- [
- [
- -0.11344408988952637
- ]
- ]
- ],
- [
- [
- [
- -0.10470149666070938
- ]
- ]
- ],
- [
- [
- [
- -0.09527155011892319
- ]
- ]
- ],
- [
- [
- [
- -0.1583903431892395
- ]
- ]
- ],
- [
- [
- [
- -0.12105882912874222
- ]
- ]
- ],
- [
- [
- [
- -0.08887576311826706
- ]
- ]
- ],
- [
- [
- [
- -0.12864775955677032
- ]
- ]
- ],
- [
- [
- [
- -0.1241866946220398
- ]
- ]
- ],
- [
- [
- [
- -0.12172083556652069
- ]
- ]
- ],
- [
- [
- [
- -0.11822833865880966
- ]
- ]
- ],
- [
- [
- [
- -0.059088341891765594
- ]
- ]
- ],
- [
- [
- [
- -0.11485522985458374
- ]
- ]
- ],
- [
- [
- [
- -0.11784174293279648
- ]
- ]
- ],
- [
- [
- [
- -0.08596241474151611
- ]
- ]
- ],
- [
- [
- [
- -0.11355813592672348
- ]
- ]
- ],
- [
- [
- [
- -0.10720866173505783
- ]
- ]
- ],
- [
- [
- [
- -0.13082022964954376
- ]
- ]
- ],
- [
- [
- [
- -0.05430592596530914
- ]
- ]
- ],
- [
- [
- [
- -0.06387361884117126
- ]
- ]
- ],
- [
- [
- [
- -0.1571795493364334
- ]
- ]
- ],
- [
- [
- [
- -0.13155889511108398
- ]
- ]
- ],
- [
- [
- [
- -0.12399767339229584
- ]
- ]
- ],
- [
- [
- [
- -0.06066833436489105
- ]
- ]
- ],
- [
- [
- [
- -0.11913734674453735
- ]
- ]
- ],
- [
- [
- [
- -0.08205528557300568
- ]
- ]
- ],
- [
- [
- [
- -0.12855955958366394
- ]
- ]
- ],
- [
- [
- [
- -0.11611414700746536
- ]
- ]
- ],
- [
- [
- [
- -0.10525085031986237
- ]
- ]
- ],
- [
- [
- [
- -0.12315084785223007
- ]
- ]
- ],
- [
- [
- [
- -0.10782132297754288
- ]
- ]
- ],
- [
- [
- [
- -0.07643338292837143
- ]
- ]
- ],
- [
- [
- [
- -0.11941243708133698
- ]
- ]
- ],
- [
- [
- [
- -0.049165986478328705
- ]
- ]
- ],
- [
- [
- [
- -0.09013232588768005
- ]
- ]
- ],
- [
- [
- [
- -0.1361590474843979
- ]
- ]
- ],
- [
- [
- [
- -0.17185167968273163
- ]
- ]
- ],
- [
- [
- [
- -0.0884060487151146
- ]
- ]
- ],
- [
- [
- [
- -0.12548036873340607
- ]
- ]
- ],
- [
- [
- [
- -0.11428655683994293
- ]
- ]
- ],
- [
- [
- [
- -0.08448940515518188
- ]
- ]
- ],
- [
- [
- [
- -0.11143284291028976
- ]
- ]
- ],
- [
- [
- [
- -0.1159742921590805
- ]
- ]
- ],
- [
- [
- [
- -0.11112330853939056
- ]
- ]
- ],
- [
- [
- [
- -0.10374187678098679
- ]
- ]
- ],
- [
- [
- [
- -0.09812138229608536
- ]
- ]
- ],
- [
- [
- [
- -0.11141866445541382
- ]
- ]
- ],
- [
- [
- [
- -0.035040222108364105
- ]
- ]
- ],
- [
- [
- [
- -0.0720009133219719
- ]
- ]
- ],
- [
- [
- [
- -0.1545829325914383
- ]
- ]
- ],
- [
- [
- [
- -0.11717778444290161
- ]
- ]
- ],
- [
- [
- [
- -0.09807708859443665
- ]
- ]
- ],
- [
- [
- [
- -0.08761931955814362
- ]
- ]
- ],
- [
- [
- [
- -0.08958824723958969
- ]
- ]
- ],
- [
- [
- [
- -0.10393743962049484
- ]
- ]
- ],
- [
- [
- [
- -0.10587535053491592
- ]
- ]
- ],
- [
- [
- [
- -0.09248442947864532
- ]
- ]
- ],
- [
- [
- [
- -0.1224096342921257
- ]
- ]
- ],
- [
- [
- [
- -0.11888958513736725
- ]
- ]
- ],
- [
- [
- [
- -0.05579361692070961
- ]
- ]
- ],
- [
- [
- [
- -0.07915809750556946
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.12870028614997864
- ]
- ]
- ],
- [
- [
- [
- 0.10714153945446014
- ]
- ]
- ],
- [
- [
- [
- 0.06963556259870529
- ]
- ]
- ],
- [
- [
- [
- 0.15648068487644196
- ]
- ]
- ],
- [
- [
- [
- 0.08688876032829285
- ]
- ]
- ],
- [
- [
- [
- 0.11347872763872147
- ]
- ]
- ],
- [
- [
- [
- 0.10918533802032471
- ]
- ]
- ],
- [
- [
- [
- 0.0722738653421402
- ]
- ]
- ],
- [
- [
- [
- 0.1348726898431778
- ]
- ]
- ],
- [
- [
- [
- 0.11230529099702835
- ]
- ]
- ],
- [
- [
- [
- 0.08424068242311478
- ]
- ]
- ],
- [
- [
- [
- 0.07912690192461014
- ]
- ]
- ],
- [
- [
- [
- 0.1376967430114746
- ]
- ]
- ],
- [
- [
- [
- 0.14505283534526825
- ]
- ]
- ],
- [
- [
- [
- 0.09644751995801926
- ]
- ]
- ],
- [
- [
- [
- 0.10722948610782623
- ]
- ]
- ],
- [
- [
- [
- 0.1529293954372406
- ]
- ]
- ],
- [
- [
- [
- 0.12349193543195724
- ]
- ]
- ],
- [
- [
- [
- 0.08346318453550339
- ]
- ]
- ],
- [
- [
- [
- 0.1639435738325119
- ]
- ]
- ],
- [
- [
- [
- 0.0728839784860611
- ]
- ]
- ],
- [
- [
- [
- 0.11334294080734253
- ]
- ]
- ],
- [
- [
- [
- 0.1481134295463562
- ]
- ]
- ],
- [
- [
- [
- 0.094202920794487
- ]
- ]
- ],
- [
- [
- [
- 0.13775977492332458
- ]
- ]
- ],
- [
- [
- [
- 0.11387593299150467
- ]
- ]
- ],
- [
- [
- [
- 0.09304003417491913
- ]
- ]
- ],
- [
- [
- [
- 0.09396117180585861
- ]
- ]
- ],
- [
- [
- [
- 0.10136163979768753
- ]
- ]
- ],
- [
- [
- [
- 0.12263055890798569
- ]
- ]
- ],
- [
- [
- [
- 0.0645599290728569
- ]
- ]
- ],
- [
- [
- [
- 0.10768815129995346
- ]
- ]
- ],
- [
- [
- [
- 0.0921766459941864
- ]
- ]
- ],
- [
- [
- [
- 0.12366209179162979
- ]
- ]
- ],
- [
- [
- [
- 0.1667950302362442
- ]
- ]
- ],
- [
- [
- [
- 0.08622563630342484
- ]
- ]
- ],
- [
- [
- [
- 0.11051255464553833
- ]
- ]
- ],
- [
- [
- [
- 0.09718487411737442
- ]
- ]
- ],
- [
- [
- [
- 0.07699333131313324
- ]
- ]
- ],
- [
- [
- [
- 0.1125633642077446
- ]
- ]
- ],
- [
- [
- [
- 0.13340237736701965
- ]
- ]
- ],
- [
- [
- [
- 0.1276392787694931
- ]
- ]
- ],
- [
- [
- [
- 0.12461244314908981
- ]
- ]
- ],
- [
- [
- [
- 0.1340327113866806
- ]
- ]
- ],
- [
- [
- [
- 0.05990930646657944
- ]
- ]
- ],
- [
- [
- [
- 0.11529190093278885
- ]
- ]
- ],
- [
- [
- [
- 0.1316174864768982
- ]
- ]
- ],
- [
- [
- [
- 0.11131871491670609
- ]
- ]
- ],
- [
- [
- [
- 0.10819090157747269
- ]
- ]
- ],
- [
- [
- [
- 0.10952568799257278
- ]
- ]
- ],
- [
- [
- [
- 0.15448276698589325
- ]
- ]
- ],
- [
- [
- [
- 0.11064053326845169
- ]
- ]
- ],
- [
- [
- [
- 0.11023510992527008
- ]
- ]
- ],
- [
- [
- [
- 0.12773847579956055
- ]
- ]
- ],
- [
- [
- [
- 0.08124437183141708
- ]
- ]
- ],
- [
- [
- [
- 0.11720290780067444
- ]
- ]
- ],
- [
- [
- [
- 0.057428739964962006
- ]
- ]
- ],
- [
- [
- [
- 0.10893258452415466
- ]
- ]
- ],
- [
- [
- [
- 0.15313763916492462
- ]
- ]
- ],
- [
- [
- [
- 0.14350463449954987
- ]
- ]
- ],
- [
- [
- [
- 0.16560111939907074
- ]
- ]
- ],
- [
- [
- [
- 0.1283593624830246
- ]
- ]
- ],
- [
- [
- [
- 0.12066451460123062
- ]
- ]
- ],
- [
- [
- [
- 0.09402991086244583
- ]
- ]
- ],
- [
- [
- [
- 0.1024172380566597
- ]
- ]
- ],
- [
- [
- [
- 0.11360916495323181
- ]
- ]
- ],
- [
- [
- [
- 0.06277693063020706
- ]
- ]
- ],
- [
- [
- [
- 0.12359968572854996
- ]
- ]
- ],
- [
- [
- [
- 0.12235646694898605
- ]
- ]
- ],
- [
- [
- [
- 0.10589821636676788
- ]
- ]
- ],
- [
- [
- [
- 0.12047645449638367
- ]
- ]
- ],
- [
- [
- [
- 0.09293464571237564
- ]
- ]
- ],
- [
- [
- [
- 0.1309085488319397
- ]
- ]
- ],
- [
- [
- [
- 0.06503257155418396
- ]
- ]
- ],
- [
- [
- [
- 0.10889942944049835
- ]
- ]
- ],
- [
- [
- [
- 0.12680068612098694
- ]
- ]
- ],
- [
- [
- [
- 0.13506922125816345
- ]
- ]
- ],
- [
- [
- [
- 0.0883713811635971
- ]
- ]
- ],
- [
- [
- [
- 0.11547089368104935
- ]
- ]
- ],
- [
- [
- [
- 0.11305110156536102
- ]
- ]
- ],
- [
- [
- [
- 0.11899257451295853
- ]
- ]
- ],
- [
- [
- [
- 0.11160523444414139
- ]
- ]
- ],
- [
- [
- [
- 0.09167875349521637
- ]
- ]
- ],
- [
- [
- [
- 0.12781548500061035
- ]
- ]
- ],
- [
- [
- [
- 0.12825742363929749
- ]
- ]
- ],
- [
- [
- [
- 0.12645065784454346
- ]
- ]
- ],
- [
- [
- [
- 0.11154492944478989
- ]
- ]
- ],
- [
- [
- [
- 0.09106258302927017
- ]
- ]
- ],
- [
- [
- [
- 0.10912919044494629
- ]
- ]
- ],
- [
- [
- [
- 0.05736716091632843
- ]
- ]
- ],
- [
- [
- [
- 0.148849219083786
- ]
- ]
- ],
- [
- [
- [
- 0.1312556117773056
- ]
- ]
- ],
- [
- [
- [
- 0.04802717640995979
- ]
- ]
- ],
- [
- [
- [
- 0.1001727357506752
- ]
- ]
- ],
- [
- [
- [
- 0.09495502710342407
- ]
- ]
- ],
- [
- [
- [
- 0.10083374381065369
- ]
- ]
- ],
- [
- [
- [
- 0.13820913434028625
- ]
- ]
- ],
- [
- [
- [
- 0.08066865056753159
- ]
- ]
- ],
- [
- [
- [
- 0.08136259764432907
- ]
- ]
- ],
- [
- [
- [
- 0.09368385374546051
- ]
- ]
- ],
- [
- [
- [
- 0.16729788482189178
- ]
- ]
- ],
- [
- [
- [
- 0.0718376636505127
- ]
- ]
- ],
- [
- [
- [
- 0.10577844083309174
- ]
- ]
- ],
- [
- [
- [
- 0.08648005872964859
- ]
- ]
- ],
- [
- [
- [
- 0.09518914669752121
- ]
- ]
- ],
- [
- [
- [
- 0.14617016911506653
- ]
- ]
- ],
- [
- [
- [
- 0.08732638508081436
- ]
- ]
- ],
- [
- [
- [
- 0.08266203850507736
- ]
- ]
- ],
- [
- [
- [
- 0.08526536822319031
- ]
- ]
- ],
- [
- [
- [
- 0.16127175092697144
- ]
- ]
- ],
- [
- [
- [
- 0.1250031739473343
- ]
- ]
- ],
- [
- [
- [
- 0.10387348383665085
- ]
- ]
- ],
- [
- [
- [
- 0.06812668591737747
- ]
- ]
- ],
- [
- [
- [
- 0.07916378974914551
- ]
- ]
- ],
- [
- [
- [
- 0.08262314647436142
- ]
- ]
- ],
- [
- [
- [
- 0.1634415090084076
- ]
- ]
- ],
- [
- [
- [
- 0.08311112970113754
- ]
- ]
- ],
- [
- [
- [
- 0.11503073573112488
- ]
- ]
- ],
- [
- [
- [
- 0.07480606436729431
- ]
- ]
- ],
- [
- [
- [
- 0.17655912041664124
- ]
- ]
- ],
- [
- [
- [
- 0.15234334766864777
- ]
- ]
- ],
- [
- [
- [
- 0.08433038741350174
- ]
- ]
- ],
- [
- [
- [
- 0.09455030411481857
- ]
- ]
- ],
- [
- [
- [
- 0.13404661417007446
- ]
- ]
- ],
- [
- [
- [
- 0.09816620498895645
- ]
- ]
- ],
- [
- [
- [
- 0.0938253402709961
- ]
- ]
- ],
- [
- [
- [
- 0.07785102725028992
- ]
- ]
- ],
- [
- [
- [
- 0.12180755287408829
- ]
- ]
- ],
- [
- [
- [
- 0.2117060124874115
- ]
- ]
- ],
- [
- [
- [
- 0.09603217244148254
- ]
- ]
- ],
- [
- [
- [
- 0.14229048788547516
- ]
- ]
- ],
- [
- [
- [
- 0.1042841300368309
- ]
- ]
- ],
- [
- [
- [
- 0.08274050801992416
- ]
- ]
- ],
- [
- [
- [
- 0.12336533516645432
- ]
- ]
- ],
- [
- [
- [
- 0.07151716947555542
- ]
- ]
- ],
- [
- [
- [
- 0.09369833022356033
- ]
- ]
- ],
- [
- [
- [
- 0.08154797554016113
- ]
- ]
- ],
- [
- [
- [
- 0.12545372545719147
- ]
- ]
- ],
- [
- [
- [
- 0.1162385568022728
- ]
- ]
- ],
- [
- [
- [
- 0.10297057032585144
- ]
- ]
- ],
- [
- [
- [
- 0.11066564172506332
- ]
- ]
- ],
- [
- [
- [
- 0.11516391485929489
- ]
- ]
- ],
- [
- [
- [
- 0.07097022235393524
- ]
- ]
- ],
- [
- [
- [
- 0.12880288064479828
- ]
- ]
- ],
- [
- [
- [
- 0.08523973822593689
- ]
- ]
- ],
- [
- [
- [
- 0.17985135316848755
- ]
- ]
- ],
- [
- [
- [
- 0.07272639125585556
- ]
- ]
- ],
- [
- [
- [
- 0.13267090916633606
- ]
- ]
- ],
- [
- [
- [
- 0.15093471109867096
- ]
- ]
- ],
- [
- [
- [
- 0.0922820046544075
- ]
- ]
- ],
- [
- [
- [
- 0.0769660621881485
- ]
- ]
- ],
- [
- [
- [
- 0.11838088184595108
- ]
- ]
- ],
- [
- [
- [
- 0.11590438336133957
- ]
- ]
- ],
- [
- [
- [
- 0.06964965909719467
- ]
- ]
- ],
- [
- [
- [
- 0.106001116335392
- ]
- ]
- ],
- [
- [
- [
- 0.15034076571464539
- ]
- ]
- ],
- [
- [
- [
- 0.09024682641029358
- ]
- ]
- ],
- [
- [
- [
- 0.10464531183242798
- ]
- ]
- ],
- [
- [
- [
- 0.1007806807756424
- ]
- ]
- ],
- [
- [
- [
- 0.11138787865638733
- ]
- ]
- ],
- [
- [
- [
- 0.12544476985931396
- ]
- ]
- ],
- [
- [
- [
- 0.15017931163311005
- ]
- ]
- ],
- [
- [
- [
- 0.13194024562835693
- ]
- ]
- ],
- [
- [
- [
- 0.16771605610847473
- ]
- ]
- ],
- [
- [
- [
- 0.1401728242635727
- ]
- ]
- ],
- [
- [
- [
- 0.1507565677165985
- ]
- ]
- ],
- [
- [
- [
- 0.12906675040721893
- ]
- ]
- ],
- [
- [
- [
- 0.13872307538986206
- ]
- ]
- ],
- [
- [
- [
- 0.1539493054151535
- ]
- ]
- ],
- [
- [
- [
- 0.09553037583827972
- ]
- ]
- ],
- [
- [
- [
- 0.09447916597127914
- ]
- ]
- ],
- [
- [
- [
- 0.07290205359458923
- ]
- ]
- ],
- [
- [
- [
- 0.10008582472801208
- ]
- ]
- ],
- [
- [
- [
- 0.09933307766914368
- ]
- ]
- ],
- [
- [
- [
- 0.11002664268016815
- ]
- ]
- ],
- [
- [
- [
- 0.05376339331269264
- ]
- ]
- ],
- [
- [
- [
- 0.10620822012424469
- ]
- ]
- ],
- [
- [
- [
- 0.06648481637239456
- ]
- ]
- ],
- [
- [
- [
- 0.11577573418617249
- ]
- ]
- ],
- [
- [
- [
- 0.15340179204940796
- ]
- ]
- ],
- [
- [
- [
- 0.12904247641563416
- ]
- ]
- ],
- [
- [
- [
- 0.09584838896989822
- ]
- ]
- ],
- [
- [
- [
- 0.09873117506504059
- ]
- ]
- ],
- [
- [
- [
- 0.09640708565711975
- ]
- ]
- ],
- [
- [
- [
- 0.1492360681295395
- ]
- ]
- ],
- [
- [
- [
- 0.11389601230621338
- ]
- ]
- ],
- [
- [
- [
- 0.1362534612417221
- ]
- ]
- ],
- [
- [
- [
- 0.08402295410633087
- ]
- ]
- ],
- [
- [
- [
- 0.05689374729990959
- ]
- ]
- ],
- [
- [
- [
- 0.11944304406642914
- ]
- ]
- ],
- [
- [
- [
- 0.09250753372907639
- ]
- ]
- ],
- [
- [
- [
- 0.14122501015663147
- ]
- ]
- ],
- [
- [
- [
- 0.05972130969166756
- ]
- ]
- ],
- [
- [
- [
- 0.13193367421627045
- ]
- ]
- ],
- [
- [
- [
- 0.08210792392492294
- ]
- ]
- ],
- [
- [
- [
- 0.18858683109283447
- ]
- ]
- ],
- [
- [
- [
- 0.10387223213911057
- ]
- ]
- ],
- [
- [
- [
- 0.1371043175458908
- ]
- ]
- ],
- [
- [
- [
- 0.09416444599628448
- ]
- ]
- ],
- [
- [
- [
- 0.10787082463502884
- ]
- ]
- ],
- [
- [
- [
- 0.09027472138404846
- ]
- ]
- ],
- [
- [
- [
- 0.06641899794340134
- ]
- ]
- ],
- [
- [
- [
- 0.14213299751281738
- ]
- ]
- ],
- [
- [
- [
- 0.10173457860946655
- ]
- ]
- ],
- [
- [
- [
- 0.05025773495435715
- ]
- ]
- ],
- [
- [
- [
- 0.0614980049431324
- ]
- ]
- ],
- [
- [
- [
- 0.10282250493764877
- ]
- ]
- ],
- [
- [
- [
- 0.04526874050498009
- ]
- ]
- ],
- [
- [
- [
- 0.10593702644109726
- ]
- ]
- ],
- [
- [
- [
- 0.09994799643754959
- ]
- ]
- ],
- [
- [
- [
- 0.1318366527557373
- ]
- ]
- ],
- [
- [
- [
- 0.0856233462691307
- ]
- ]
- ],
- [
- [
- [
- 0.14180876314640045
- ]
- ]
- ],
- [
- [
- [
- 0.07913100719451904
- ]
- ]
- ],
- [
- [
- [
- 0.10692936927080154
- ]
- ]
- ],
- [
- [
- [
- 0.09222017973661423
- ]
- ]
- ],
- [
- [
- [
- 0.08747600764036179
- ]
- ]
- ],
- [
- [
- [
- 0.10727803409099579
- ]
- ]
- ],
- [
- [
- [
- 0.09745626896619797
- ]
- ]
- ],
- [
- [
- [
- 0.12550599873065948
- ]
- ]
- ],
- [
- [
- [
- 0.06749936193227768
- ]
- ]
- ],
- [
- [
- [
- 0.10046866536140442
- ]
- ]
- ],
- [
- [
- [
- 0.16743804514408112
- ]
- ]
- ],
- [
- [
- [
- 0.12989692389965057
- ]
- ]
- ],
- [
- [
- [
- 0.11224345862865448
- ]
- ]
- ],
- [
- [
- [
- 0.13558915257453918
- ]
- ]
- ],
- [
- [
- [
- 0.060859598219394684
- ]
- ]
- ],
- [
- [
- [
- 0.12250219285488129
- ]
- ]
- ],
- [
- [
- [
- 0.08771271258592606
- ]
- ]
- ],
- [
- [
- [
- 0.08129311352968216
- ]
- ]
- ],
- [
- [
- [
- 0.10531339794397354
- ]
- ]
- ],
- [
- [
- [
- 0.16142383217811584
- ]
- ]
- ],
- [
- [
- [
- 0.09252549707889557
- ]
- ]
- ],
- [
- [
- [
- 0.12299011647701263
- ]
- ]
- ],
- [
- [
- [
- 0.10980292409658432
- ]
- ]
- ],
- [
- [
- [
- 0.07939561456441879
- ]
- ]
- ],
- [
- [
- [
- 0.10035314410924911
- ]
- ]
- ],
- [
- [
- [
- 0.16482359170913696
- ]
- ]
- ],
- [
- [
- [
- 0.08297896385192871
- ]
- ]
- ],
- [
- [
- [
- 0.10043513774871826
- ]
- ]
- ],
- [
- [
- [
- 0.11459547281265259
- ]
- ]
- ],
- [
- [
- [
- 0.06620358675718307
- ]
- ]
- ],
- [
- [
- [
- 0.15834718942642212
- ]
- ]
- ],
- [
- [
- [
- 0.09908001869916916
- ]
- ]
- ],
- [
- [
- [
- 0.11642792075872421
- ]
- ]
- ],
- [
- [
- [
- 0.10998696833848953
- ]
- ]
- ],
- [
- [
- [
- 0.10858519375324249
- ]
- ]
- ],
- [
- [
- [
- 0.08414836972951889
- ]
- ]
- ],
- [
- [
- [
- 0.0835404247045517
- ]
- ]
- ],
- [
- [
- [
- 0.13274939358234406
- ]
- ]
- ],
- [
- [
- [
- 0.11507917940616608
- ]
- ]
- ],
- [
- [
- [
- 0.09135919064283371
- ]
- ]
- ],
- [
- [
- [
- 0.09261520951986313
- ]
- ]
- ],
- [
- [
- [
- 0.07599399983882904
- ]
- ]
- ],
- [
- [
- [
- 0.09561667591333389
- ]
- ]
- ],
- [
- [
- [
- 0.06392333656549454
- ]
- ]
- ],
- [
- [
- [
- 0.1560612916946411
- ]
- ]
- ],
- [
- [
- [
- 0.1354973018169403
- ]
- ]
- ],
- [
- [
- [
- 0.0950012132525444
- ]
- ]
- ],
- [
- [
- [
- 0.07634959369897842
- ]
- ]
- ],
- [
- [
- [
- 0.11306571215391159
- ]
- ]
- ],
- [
- [
- [
- 0.12356392294168472
- ]
- ]
- ],
- [
- [
- [
- 0.1005362793803215
- ]
- ]
- ],
- [
- [
- [
- 0.08982517570257187
- ]
- ]
- ],
- [
- [
- [
- 0.10034646093845367
- ]
- ]
- ],
- [
- [
- [
- 0.11808118969202042
- ]
- ]
- ],
- [
- [
- [
- 0.11204159259796143
- ]
- ]
- ],
- [
- [
- [
- 0.14139938354492188
- ]
- ]
- ],
- [
- [
- [
- 0.0969185084104538
- ]
- ]
- ],
- [
- [
- [
- 0.06916318088769913
- ]
- ]
- ],
- [
- [
- [
- 0.11682108789682388
- ]
- ]
- ],
- [
- [
- [
- 0.12082896381616592
- ]
- ]
- ],
- [
- [
- [
- 0.07677620649337769
- ]
- ]
- ],
- [
- [
- [
- 0.05724450200796127
- ]
- ]
- ],
- [
- [
- [
- 0.1137750968337059
- ]
- ]
- ],
- [
- [
- [
- 0.09354895353317261
- ]
- ]
- ],
- [
- [
- [
- 0.12027541548013687
- ]
- ]
- ],
- [
- [
- [
- 0.11937037110328674
- ]
- ]
- ],
- [
- [
- [
- 0.0577746145427227
- ]
- ]
- ],
- [
- [
- [
- 0.0974879264831543
- ]
- ]
- ],
- [
- [
- [
- 0.08221512287855148
- ]
- ]
- ],
- [
- [
- [
- 0.1438351571559906
- ]
- ]
- ],
- [
- [
- [
- 0.07963304221630096
- ]
- ]
- ],
- [
- [
- [
- 0.08895023167133331
- ]
- ]
- ],
- [
- [
- [
- 0.22465604543685913
- ]
- ]
- ],
- [
- [
- [
- 0.11721932142972946
- ]
- ]
- ],
- [
- [
- [
- 0.10774079710245132
- ]
- ]
- ],
- [
- [
- [
- 0.09490944445133209
- ]
- ]
- ],
- [
- [
- [
- 0.14025434851646423
- ]
- ]
- ],
- [
- [
- [
- 0.1466863453388214
- ]
- ]
- ],
- [
- [
- [
- 0.08903222531080246
- ]
- ]
- ],
- [
- [
- [
- 0.057088807225227356
- ]
- ]
- ],
- [
- [
- [
- 0.09786785393953323
- ]
- ]
- ],
- [
- [
- [
- 0.1043468564748764
- ]
- ]
- ],
- [
- [
- [
- 0.09294959157705307
- ]
- ]
- ],
- [
- [
- [
- 0.09332462400197983
- ]
- ]
- ],
- [
- [
- [
- 0.06211674213409424
- ]
- ]
- ],
- [
- [
- [
- 0.13530750572681427
- ]
- ]
- ],
- [
- [
- [
- 0.08800535649061203
- ]
- ]
- ],
- [
- [
- [
- 0.0869571790099144
- ]
- ]
- ],
- [
- [
- [
- 0.11146408319473267
- ]
- ]
- ],
- [
- [
- [
- 0.12911109626293182
- ]
- ]
- ],
- [
- [
- [
- 0.0921739786863327
- ]
- ]
- ],
- [
- [
- [
- 0.13804873824119568
- ]
- ]
- ],
- [
- [
- [
- 0.10810303688049316
- ]
- ]
- ],
- [
- [
- [
- 0.09252799302339554
- ]
- ]
- ],
- [
- [
- [
- 0.23380720615386963
- ]
- ]
- ],
- [
- [
- [
- 0.07780127227306366
- ]
- ]
- ],
- [
- [
- [
- 0.1777135729789734
- ]
- ]
- ],
- [
- [
- [
- 0.14629431068897247
- ]
- ]
- ],
- [
- [
- [
- 0.09951049089431763
- ]
- ]
- ],
- [
- [
- [
- 0.11064599454402924
- ]
- ]
- ],
- [
- [
- [
- 0.07137824594974518
- ]
- ]
- ],
- [
- [
- [
- 0.11060818284749985
- ]
- ]
- ],
- [
- [
- [
- 0.08341861516237259
- ]
- ]
- ],
- [
- [
- [
- 0.1331130862236023
- ]
- ]
- ],
- [
- [
- [
- 0.08529622107744217
- ]
- ]
- ],
- [
- [
- [
- 0.07099801301956177
- ]
- ]
- ],
- [
- [
- [
- 0.17250925302505493
- ]
- ]
- ],
- [
- [
- [
- 0.10609203577041626
- ]
- ]
- ],
- [
- [
- [
- 0.11273952573537827
- ]
- ]
- ],
- [
- [
- [
- 0.12467444688081741
- ]
- ]
- ],
- [
- [
- [
- 0.0528140552341938
- ]
- ]
- ],
- [
- [
- [
- 0.12089217454195023
- ]
- ]
- ],
- [
- [
- [
- 0.13694240152835846
- ]
- ]
- ],
- [
- [
- [
- 0.09494708478450775
- ]
- ]
- ],
- [
- [
- [
- 0.09517005831003189
- ]
- ]
- ],
- [
- [
- [
- 0.09173370897769928
- ]
- ]
- ],
- [
- [
- [
- 0.14287760853767395
- ]
- ]
- ],
- [
- [
- [
- 0.08889936655759811
- ]
- ]
- ],
- [
- [
- [
- 0.07412511110305786
- ]
- ]
- ],
- [
- [
- [
- 0.11942169815301895
- ]
- ]
- ],
- [
- [
- [
- 0.08265075832605362
- ]
- ]
- ],
- [
- [
- [
- 0.11597882956266403
- ]
- ]
- ],
- [
- [
- [
- 0.136866495013237
- ]
- ]
- ],
- [
- [
- [
- 0.12942366302013397
- ]
- ]
- ],
- [
- [
- [
- 0.13092643022537231
- ]
- ]
- ],
- [
- [
- [
- 0.06777326762676239
- ]
- ]
- ],
- [
- [
- [
- 0.09761752188205719
- ]
- ]
- ],
- [
- [
- [
- 0.12400688976049423
- ]
- ]
- ],
- [
- [
- [
- 0.06952434033155441
- ]
- ]
- ],
- [
- [
- [
- 0.08214408159255981
- ]
- ]
- ],
- [
- [
- [
- 0.1109093576669693
- ]
- ]
- ],
- [
- [
- [
- 0.08203009516000748
- ]
- ]
- ],
- [
- [
- [
- 0.10151204466819763
- ]
- ]
- ],
- [
- [
- [
- 0.14699135720729828
- ]
- ]
- ],
- [
- [
- [
- 0.08051149547100067
- ]
- ]
- ],
- [
- [
- [
- 0.108080193400383
- ]
- ]
- ],
- [
- [
- [
- 0.09503430873155594
- ]
- ]
- ],
- [
- [
- [
- 0.08208990842103958
- ]
- ]
- ],
- [
- [
- [
- 0.1261313110589981
- ]
- ]
- ],
- [
- [
- [
- 0.11160638928413391
- ]
- ]
- ],
- [
- [
- [
- 0.1404438465833664
- ]
- ]
- ],
- [
- [
- [
- 0.11236241459846497
- ]
- ]
- ],
- [
- [
- [
- 0.11920187622308731
- ]
- ]
- ],
- [
- [
- [
- 0.08200473338365555
- ]
- ]
- ],
- [
- [
- [
- 0.11740203946828842
- ]
- ]
- ],
- [
- [
- [
- 0.09874571114778519
- ]
- ]
- ],
- [
- [
- [
- 0.0770777240395546
- ]
- ]
- ],
- [
- [
- [
- 0.08186709880828857
- ]
- ]
- ],
- [
- [
- [
- 0.1406736522912979
- ]
- ]
- ],
- [
- [
- [
- 0.113337442278862
- ]
- ]
- ],
- [
- [
- [
- 0.16424822807312012
- ]
- ]
- ],
- [
- [
- [
- 0.1298980861902237
- ]
- ]
- ],
- [
- [
- [
- 0.10687495023012161
- ]
- ]
- ],
- [
- [
- [
- 0.08376867324113846
- ]
- ]
- ],
- [
- [
- [
- 0.09650436788797379
- ]
- ]
- ],
- [
- [
- [
- 0.15872253477573395
- ]
- ]
- ],
- [
- [
- [
- 0.05739618092775345
- ]
- ]
- ],
- [
- [
- [
- 0.10206307470798492
- ]
- ]
- ],
- [
- [
- [
- 0.0757237896323204
- ]
- ]
- ],
- [
- [
- [
- 0.138471782207489
- ]
- ]
- ],
- [
- [
- [
- 0.08101782947778702
- ]
- ]
- ],
- [
- [
- [
- 0.09513328969478607
- ]
- ]
- ],
- [
- [
- [
- 0.1214001402258873
- ]
- ]
- ],
- [
- [
- [
- 0.12963572144508362
- ]
- ]
- ],
- [
- [
- [
- 0.10652393847703934
- ]
- ]
- ],
- [
- [
- [
- 0.11833404004573822
- ]
- ]
- ],
- [
- [
- [
- 0.16243892908096313
- ]
- ]
- ],
- [
- [
- [
- 0.12443374842405319
- ]
- ]
- ],
- [
- [
- [
- 0.14844144880771637
- ]
- ]
- ],
- [
- [
- [
- 0.13088823854923248
- ]
- ]
- ],
- [
- [
- [
- 0.09051889181137085
- ]
- ]
- ],
- [
- [
- [
- 0.11792514473199844
- ]
- ]
- ],
- [
- [
- [
- 0.1230434700846672
- ]
- ]
- ],
- [
- [
- [
- 0.08785402029752731
- ]
- ]
- ],
- [
- [
- [
- 0.09404657781124115
- ]
- ]
- ],
- [
- [
- [
- 0.1133490577340126
- ]
- ]
- ],
- [
- [
- [
- 0.1328604519367218
- ]
- ]
- ],
- [
- [
- [
- 0.1510791778564453
- ]
- ]
- ],
- [
- [
- [
- 0.13621921837329865
- ]
- ]
- ],
- [
- [
- [
- 0.06557561457157135
- ]
- ]
- ],
- [
- [
- [
- 0.09528466314077377
- ]
- ]
- ],
- [
- [
- [
- 0.104777492582798
- ]
- ]
- ],
- [
- [
- [
- 0.08744222670793533
- ]
- ]
- ],
- [
- [
- [
- 0.09224014729261398
- ]
- ]
- ],
- [
- [
- [
- 0.083940289914608
- ]
- ]
- ],
- [
- [
- [
- 0.0899057537317276
- ]
- ]
- ],
- [
- [
- [
- 0.11091737449169159
- ]
- ]
- ],
- [
- [
- [
- 0.12203501909971237
- ]
- ]
- ],
- [
- [
- [
- 0.09522687643766403
- ]
- ]
- ],
- [
- [
- [
- 0.08990632742643356
- ]
- ]
- ],
- [
- [
- [
- 0.105129674077034
- ]
- ]
- ],
- [
- [
- [
- 0.12898948788642883
- ]
- ]
- ],
- [
- [
- [
- 0.11810367554426193
- ]
- ]
- ],
- [
- [
- [
- 0.07536670565605164
- ]
- ]
- ],
- [
- [
- [
- 0.13550272583961487
- ]
- ]
- ],
- [
- [
- [
- 0.10213346034288406
- ]
- ]
- ],
- [
- [
- [
- 0.1340252161026001
- ]
- ]
- ],
- [
- [
- [
- 0.12218368053436279
- ]
- ]
- ],
- [
- [
- [
- 0.12239748239517212
- ]
- ]
- ],
- [
- [
- [
- 0.10598905384540558
- ]
- ]
- ],
- [
- [
- [
- 0.10114075243473053
- ]
- ]
- ],
- [
- [
- [
- 0.1151387095451355
- ]
- ]
- ],
- [
- [
- [
- 0.1355503499507904
- ]
- ]
- ],
- [
- [
- [
- 0.07377024739980698
- ]
- ]
- ],
- [
- [
- [
- 0.10825680196285248
- ]
- ]
- ],
- [
- [
- [
- 0.10680516809225082
- ]
- ]
- ],
- [
- [
- [
- 0.0868532583117485
- ]
- ]
- ],
- [
- [
- [
- 0.09549140185117722
- ]
- ]
- ],
- [
- [
- [
- 0.11461697518825531
- ]
- ]
- ],
- [
- [
- [
- 0.10857164859771729
- ]
- ]
- ],
- [
- [
- [
- 0.15750905871391296
- ]
- ]
- ],
- [
- [
- [
- 0.10699065029621124
- ]
- ]
- ],
- [
- [
- [
- 0.1181691586971283
- ]
- ]
- ],
- [
- [
- [
- 0.11944794654846191
- ]
- ]
- ],
- [
- [
- [
- 0.09277509152889252
- ]
- ]
- ],
- [
- [
- [
- 0.1027052029967308
- ]
- ]
- ],
- [
- [
- [
- 0.07269895821809769
- ]
- ]
- ],
- [
- [
- [
- 0.08873871713876724
- ]
- ]
- ],
- [
- [
- [
- 0.11396294087171555
- ]
- ]
- ],
- [
- [
- [
- 0.11556888371706009
- ]
- ]
- ],
- [
- [
- [
- 0.10613702237606049
- ]
- ]
- ],
- [
- [
- [
- 0.09969168156385422
- ]
- ]
- ],
- [
- [
- [
- 0.1113915890455246
- ]
- ]
- ],
- [
- [
- [
- 0.10746919363737106
- ]
- ]
- ],
- [
- [
- [
- 0.10264711081981659
- ]
- ]
- ],
- [
- [
- [
- 0.0898546352982521
- ]
- ]
- ],
- [
- [
- [
- 0.13560345768928528
- ]
- ]
- ],
- [
- [
- [
- 0.08533881604671478
- ]
- ]
- ],
- [
- [
- [
- 0.06986482441425323
- ]
- ]
- ],
- [
- [
- [
- 0.09630849957466125
- ]
- ]
- ],
- [
- [
- [
- 0.10000449419021606
- ]
- ]
- ],
- [
- [
- [
- 0.1548929661512375
- ]
- ]
- ],
- [
- [
- [
- 0.06634726375341415
- ]
- ]
- ],
- [
- [
- [
- 0.10305790603160858
- ]
- ]
- ],
- [
- [
- [
- 0.10468778759241104
- ]
- ]
- ],
- [
- [
- [
- 0.0667087733745575
- ]
- ]
- ],
- [
- [
- [
- 0.07508361339569092
- ]
- ]
- ],
- [
- [
- [
- 0.10079582780599594
- ]
- ]
- ],
- [
- [
- [
- 0.11196959763765335
- ]
- ]
- ],
- [
- [
- [
- 0.1695886105298996
- ]
- ]
- ],
- [
- [
- [
- 0.1208585798740387
- ]
- ]
- ],
- [
- [
- [
- 0.14266397058963776
- ]
- ]
- ],
- [
- [
- [
- 0.14265063405036926
- ]
- ]
- ],
- [
- [
- [
- 0.06610866636037827
- ]
- ]
- ],
- [
- [
- [
- 0.13364309072494507
- ]
- ]
- ],
- [
- [
- [
- 0.10709577053785324
- ]
- ]
- ],
- [
- [
- [
- 0.12568259239196777
- ]
- ]
- ],
- [
- [
- [
- 0.1408344805240631
- ]
- ]
- ],
- [
- [
- [
- 0.12547774612903595
- ]
- ]
- ],
- [
- [
- [
- 0.07644420117139816
- ]
- ]
- ],
- [
- [
- [
- 0.12396804243326187
- ]
- ]
- ],
- [
- [
- [
- 0.09364700317382812
- ]
- ]
- ],
- [
- [
- [
- 0.1708587408065796
- ]
- ]
- ],
- [
- [
- [
- 0.09310663491487503
- ]
- ]
- ],
- [
- [
- [
- 0.06397010385990143
- ]
- ]
- ],
- [
- [
- [
- 0.12372168898582458
- ]
- ]
- ],
- [
- [
- [
- 0.13343271613121033
- ]
- ]
- ],
- [
- [
- [
- 0.11750024557113647
- ]
- ]
- ],
- [
- [
- [
- 0.06142254173755646
- ]
- ]
- ],
- [
- [
- [
- 0.07973030209541321
- ]
- ]
- ],
- [
- [
- [
- 0.06345310807228088
- ]
- ]
- ],
- [
- [
- [
- 0.11659856885671616
- ]
- ]
- ],
- [
- [
- [
- 0.09040359407663345
- ]
- ]
- ],
- [
- [
- [
- 0.08466991037130356
- ]
- ]
- ],
- [
- [
- [
- 0.11737503111362457
- ]
- ]
- ],
- [
- [
- [
- 0.1148495301604271
- ]
- ]
- ],
- [
- [
- [
- 0.08879699558019638
- ]
- ]
- ],
- [
- [
- [
- 0.058289237320423126
- ]
- ]
- ],
- [
- [
- [
- 0.1281253546476364
- ]
- ]
- ],
- [
- [
- [
- 0.11916706711053848
- ]
- ]
- ],
- [
- [
- [
- 0.11274290829896927
- ]
- ]
- ],
- [
- [
- [
- 0.13131484389305115
- ]
- ]
- ],
- [
- [
- [
- 0.0746636763215065
- ]
- ]
- ],
- [
- [
- [
- 0.08131582289934158
- ]
- ]
- ],
- [
- [
- [
- 0.07199142128229141
- ]
- ]
- ],
- [
- [
- [
- 0.0668354257941246
- ]
- ]
- ],
- [
- [
- [
- 0.13071003556251526
- ]
- ]
- ],
- [
- [
- [
- 0.09814717620611191
- ]
- ]
- ],
- [
- [
- [
- 0.07950754463672638
- ]
- ]
- ],
- [
- [
- [
- 0.17159637808799744
- ]
- ]
- ],
- [
- [
- [
- 0.10072757303714752
- ]
- ]
- ],
- [
- [
- [
- 0.10858873277902603
- ]
- ]
- ],
- [
- [
- [
- 0.10707148164510727
- ]
- ]
- ],
- [
- [
- [
- 0.10628347843885422
- ]
- ]
- ],
- [
- [
- [
- 0.11523763090372086
- ]
- ]
- ],
- [
- [
- [
- 0.0912754088640213
- ]
- ]
- ],
- [
- [
- [
- 0.14238883554935455
- ]
- ]
- ],
- [
- [
- [
- 0.12185842543840408
- ]
- ]
- ],
- [
- [
- [
- 0.11577854305505753
- ]
- ]
- ],
- [
- [
- [
- 0.09625297784805298
- ]
- ]
- ],
- [
- [
- [
- 0.10200455039739609
- ]
- ]
- ],
- [
- [
- [
- 0.07022039592266083
- ]
- ]
- ],
- [
- [
- [
- 0.10201803594827652
- ]
- ]
- ],
- [
- [
- [
- 0.0629100576043129
- ]
- ]
- ],
- [
- [
- [
- 0.13873344659805298
- ]
- ]
- ],
- [
- [
- [
- 0.14672106504440308
- ]
- ]
- ],
- [
- [
- [
- 0.06021640822291374
- ]
- ]
- ],
- [
- [
- [
- 0.12231196463108063
- ]
- ]
- ],
- [
- [
- [
- 0.1195724681019783
- ]
- ]
- ],
- [
- [
- [
- 0.08019347488880157
- ]
- ]
- ],
- [
- [
- [
- 0.07957106828689575
- ]
- ]
- ],
- [
- [
- [
- 0.21999870240688324
- ]
- ]
- ],
- [
- [
- [
- 0.14249849319458008
- ]
- ]
- ],
- [
- [
- [
- 0.13591790199279785
- ]
- ]
- ],
- [
- [
- [
- 0.08098379522562027
- ]
- ]
- ],
- [
- [
- [
- 0.09181834757328033
- ]
- ]
- ],
- [
- [
- [
- 0.08774899691343307
- ]
- ]
- ],
- [
- [
- [
- 0.08990335464477539
- ]
- ]
- ],
- [
- [
- [
- 0.07508888840675354
- ]
- ]
- ],
- [
- [
- [
- 0.1375122368335724
- ]
- ]
- ],
- [
- [
- [
- 0.20828111469745636
- ]
- ]
- ],
- [
- [
- [
- 0.13707394897937775
- ]
- ]
- ],
- [
- [
- [
- 0.1185675784945488
- ]
- ]
- ],
- [
- [
- [
- 0.08983787894248962
- ]
- ]
- ],
- [
- [
- [
- 0.11345090717077255
- ]
- ]
- ],
- [
- [
- [
- 0.0734454095363617
- ]
- ]
- ],
- [
- [
- [
- 0.10866709798574448
- ]
- ]
- ],
- [
- [
- [
- 0.0892694890499115
- ]
- ]
- ],
- [
- [
- [
- 0.06636480987071991
- ]
- ]
- ],
- [
- [
- [
- 0.0933934822678566
- ]
- ]
- ],
- [
- [
- [
- 0.09067552536725998
- ]
- ]
- ],
- [
- [
- [
- 0.06884029507637024
- ]
- ]
- ],
- [
- [
- [
- 0.151616632938385
- ]
- ]
- ],
- [
- [
- [
- 0.1877824068069458
- ]
- ]
- ],
- [
- [
- [
- 0.1588238626718521
- ]
- ]
- ],
- [
- [
- [
- 0.12537431716918945
- ]
- ]
- ],
- [
- [
- [
- 0.12258077412843704
- ]
- ]
- ],
- [
- [
- [
- 0.13809221982955933
- ]
- ]
- ],
- [
- [
- [
- 0.13199418783187866
- ]
- ]
- ],
- [
- [
- [
- 0.11882352828979492
- ]
- ]
- ],
- [
- [
- [
- 0.12593387067317963
- ]
- ]
- ],
- [
- [
- [
- 0.11099061369895935
- ]
- ]
- ],
- [
- [
- [
- 0.1254315823316574
- ]
- ]
- ],
- [
- [
- [
- 0.09533803910017014
- ]
- ]
- ],
- [
- [
- [
- 0.07976538687944412
- ]
- ]
- ],
- [
- [
- [
- 0.09957624226808548
- ]
- ]
- ],
- [
- [
- [
- 0.13051798939704895
- ]
- ]
- ],
- [
- [
- [
- 0.1162736639380455
- ]
- ]
- ],
- [
- [
- [
- 0.14774557948112488
- ]
- ]
- ],
- [
- [
- [
- 0.08330348879098892
- ]
- ]
- ],
- [
- [
- [
- 0.09584853798151016
- ]
- ]
- ],
- [
- [
- [
- 0.11463061720132828
- ]
- ]
- ],
- [
- [
- [
- 0.04607919231057167
- ]
- ]
- ],
- [
- [
- [
- 0.09859898686408997
- ]
- ]
- ],
- [
- [
- [
- 0.10526446253061295
- ]
- ]
- ],
- [
- [
- [
- 0.08130845427513123
- ]
- ]
- ],
- [
- [
- [
- 0.11744294315576553
- ]
- ]
- ],
- [
- [
- [
- 0.08107966929674149
- ]
- ]
- ],
- [
- [
- [
- 0.06533537805080414
- ]
- ]
- ],
- [
- [
- [
- 0.14844118058681488
- ]
- ]
- ],
- [
- [
- [
- 0.1656751185655594
- ]
- ]
- ],
- [
- [
- [
- 0.0993647649884224
- ]
- ]
- ],
- [
- [
- [
- 0.08890654891729355
- ]
- ]
- ],
- [
- [
- [
- 0.12734279036521912
- ]
- ]
- ],
- [
- [
- [
- 0.062493063509464264
- ]
- ]
- ],
- [
- [
- [
- 0.11376073211431503
- ]
- ]
- ],
- [
- [
- [
- 0.09767380356788635
- ]
- ]
- ],
- [
- [
- [
- 0.09542091190814972
- ]
- ]
- ],
- [
- [
- [
- 0.06378311663866043
- ]
- ]
- ],
- [
- [
- [
- 0.14439824223518372
- ]
- ]
- ],
- [
- [
- [
- 0.13727955520153046
- ]
- ]
- ],
- [
- [
- [
- 0.17133647203445435
- ]
- ]
- ],
- [
- [
- [
- 0.06737971305847168
- ]
- ]
- ],
- [
- [
- [
- 0.15409521758556366
- ]
- ]
- ],
- [
- [
- [
- 0.14044417440891266
- ]
- ]
- ],
- [
- [
- [
- 0.10692892968654633
- ]
- ]
- ],
- [
- [
- [
- 0.08284033834934235
- ]
- ]
- ],
- [
- [
- [
- 0.07837749272584915
- ]
- ]
- ],
- [
- [
- [
- 0.06181102618575096
- ]
- ]
- ],
- [
- [
- [
- 0.08544927090406418
- ]
- ]
- ],
- [
- [
- [
- 0.1516827642917633
- ]
- ]
- ],
- [
- [
- [
- 0.11924028396606445
- ]
- ]
- ],
- [
- [
- [
- 0.13868878781795502
- ]
- ]
- ],
- [
- [
- [
- 0.1087103933095932
- ]
- ]
- ],
- [
- [
- [
- 0.15110540390014648
- ]
- ]
- ],
- [
- [
- [
- 0.11307187378406525
- ]
- ]
- ],
- [
- [
- [
- 0.12772177159786224
- ]
- ]
- ],
- [
- [
- [
- 0.057609327137470245
- ]
- ]
- ],
- [
- [
- [
- 0.12486418336629868
- ]
- ]
- ],
- [
- [
- [
- 0.10906631499528885
- ]
- ]
- ],
- [
- [
- [
- 0.11926053464412689
- ]
- ]
- ],
- [
- [
- [
- 0.12476663291454315
- ]
- ]
- ],
- [
- [
- [
- 0.09853202104568481
- ]
- ]
- ],
- [
- [
- [
- 0.11345241218805313
- ]
- ]
- ],
- [
- [
- [
- 0.11234209686517715
- ]
- ]
- ],
- [
- [
- [
- 0.1130700632929802
- ]
- ]
- ],
- [
- [
- [
- 0.11143561452627182
- ]
- ]
- ],
- [
- [
- [
- 0.11652734130620956
- ]
- ]
- ],
- [
- [
- [
- 0.10695341974496841
- ]
- ]
- ],
- [
- [
- [
- 0.11669100821018219
- ]
- ]
- ],
- [
- [
- [
- 0.10790704935789108
- ]
- ]
- ],
- [
- [
- [
- 0.0921764001250267
- ]
- ]
- ],
- [
- [
- [
- 0.07292458415031433
- ]
- ]
- ],
- [
- [
- [
- 0.10066795349121094
- ]
- ]
- ],
- [
- [
- [
- 0.13977308571338654
- ]
- ]
- ],
- [
- [
- [
- 0.1045520082116127
- ]
- ]
- ],
- [
- [
- [
- 0.06537806242704391
- ]
- ]
- ],
- [
- [
- [
- 0.10629036277532578
- ]
- ]
- ],
- [
- [
- [
- 0.08034893125295639
- ]
- ]
- ],
- [
- [
- [
- 0.07865703850984573
- ]
- ]
- ],
- [
- [
- [
- 0.10350487381219864
- ]
- ]
- ],
- [
- [
- [
- 0.08512765169143677
- ]
- ]
- ],
- [
- [
- [
- 0.1171247586607933
- ]
- ]
- ],
- [
- [
- [
- 0.11434537917375565
- ]
- ]
- ],
- [
- [
- [
- 0.07044143974781036
- ]
- ]
- ],
- [
- [
- [
- 0.06195991113781929
- ]
- ]
- ],
- [
- [
- [
- 0.157009556889534
- ]
- ]
- ],
- [
- [
- [
- 0.12280819565057755
- ]
- ]
- ],
- [
- [
- [
- 0.08921337127685547
- ]
- ]
- ],
- [
- [
- [
- 0.10311742126941681
- ]
- ]
- ],
- [
- [
- [
- 0.13863585889339447
- ]
- ]
- ],
- [
- [
- [
- 0.16576045751571655
- ]
- ]
- ],
- [
- [
- [
- 0.07499579340219498
- ]
- ]
- ],
- [
- [
- [
- 0.14102667570114136
- ]
- ]
- ],
- [
- [
- [
- 0.11613451689481735
- ]
- ]
- ],
- [
- [
- [
- 0.1304466426372528
- ]
- ]
- ],
- [
- [
- [
- 0.08585295081138611
- ]
- ]
- ],
- [
- [
- [
- 0.1462370902299881
- ]
- ]
- ],
- [
- [
- [
- 0.08896096795797348
- ]
- ]
- ],
- [
- [
- [
- 0.06690352410078049
- ]
- ]
- ],
- [
- [
- [
- 0.12137788534164429
- ]
- ]
- ],
- [
- [
- [
- 0.12798137962818146
- ]
- ]
- ],
- [
- [
- [
- 0.10512511432170868
- ]
- ]
- ],
- [
- [
- [
- 0.0713142603635788
- ]
- ]
- ],
- [
- [
- [
- 0.12194234877824783
- ]
- ]
- ],
- [
- [
- [
- 0.08854077011346817
- ]
- ]
- ],
- [
- [
- [
- 0.09003933519124985
- ]
- ]
- ],
- [
- [
- [
- 0.07966115325689316
- ]
- ]
- ],
- [
- [
- [
- 0.09571016579866409
- ]
- ]
- ],
- [
- [
- [
- 0.1239721029996872
- ]
- ]
- ],
- [
- [
- [
- 0.11278075724840164
- ]
- ]
- ],
- [
- [
- [
- 0.17209844291210175
- ]
- ]
- ],
- [
- [
- [
- 0.11157318949699402
- ]
- ]
- ],
- [
- [
- [
- 0.13838371634483337
- ]
- ]
- ],
- [
- [
- [
- 0.12343267351388931
- ]
- ]
- ],
- [
- [
- [
- 0.0901406854391098
- ]
- ]
- ],
- [
- [
- [
- 0.12942856550216675
- ]
- ]
- ],
- [
- [
- [
- 0.09049946069717407
- ]
- ]
- ],
- [
- [
- [
- 0.10690564662218094
- ]
- ]
- ],
- [
- [
- [
- 0.13093684613704681
- ]
- ]
- ],
- [
- [
- [
- 0.15335078537464142
- ]
- ]
- ],
- [
- [
- [
- 0.0976998582482338
- ]
- ]
- ],
- [
- [
- [
- 0.10199800133705139
- ]
- ]
- ],
- [
- [
- [
- 0.14030978083610535
- ]
- ]
- ],
- [
- [
- [
- 0.10375906527042389
- ]
- ]
- ],
- [
- [
- [
- 0.06775738298892975
- ]
- ]
- ],
- [
- [
- [
- 0.06433076411485672
- ]
- ]
- ],
- [
- [
- [
- 0.1318317949771881
- ]
- ]
- ],
- [
- [
- [
- 0.12705092132091522
- ]
- ]
- ],
- [
- [
- [
- 0.10864292085170746
- ]
- ]
- ],
- [
- [
- [
- 0.09662646800279617
- ]
- ]
- ],
- [
- [
- [
- 0.09309905767440796
- ]
- ]
- ],
- [
- [
- [
- 0.11181088536977768
- ]
- ]
- ],
- [
- [
- [
- 0.0969972312450409
- ]
- ]
- ],
- [
- [
- [
- 0.16642752289772034
- ]
- ]
- ],
- [
- [
- [
- 0.0986553430557251
- ]
- ]
- ],
- [
- [
- [
- 0.1348530501127243
- ]
- ]
- ],
- [
- [
- [
- 0.10829022526741028
- ]
- ]
- ],
- [
- [
- [
- 0.11607635766267776
- ]
- ]
- ],
- [
- [
- [
- 0.05848212167620659
- ]
- ]
- ],
- [
- [
- [
- 0.12435334175825119
- ]
- ]
- ],
- [
- [
- [
- 0.07449059188365936
- ]
- ]
- ],
- [
- [
- [
- 0.1153937578201294
- ]
- ]
- ],
- [
- [
- [
- 0.07182100415229797
- ]
- ]
- ],
- [
- [
- [
- 0.10656853765249252
- ]
- ]
- ],
- [
- [
- [
- 0.08254068344831467
- ]
- ]
- ],
- [
- [
- [
- 0.10722311586141586
- ]
- ]
- ],
- [
- [
- [
- 0.12075849622488022
- ]
- ]
- ],
- [
- [
- [
- 0.14533479511737823
- ]
- ]
- ],
- [
- [
- [
- 0.12118887156248093
- ]
- ]
- ],
- [
- [
- [
- 0.08189192414283752
- ]
- ]
- ],
- [
- [
- [
- 0.12744316458702087
- ]
- ]
- ],
- [
- [
- [
- 0.06815888732671738
- ]
- ]
- ],
- [
- [
- [
- 0.05499519407749176
- ]
- ]
- ],
- [
- [
- [
- 0.08273191004991531
- ]
- ]
- ],
- [
- [
- [
- 0.1239996924996376
- ]
- ]
- ],
- [
- [
- [
- 0.1302541047334671
- ]
- ]
- ],
- [
- [
- [
- 0.10206776112318039
- ]
- ]
- ],
- [
- [
- [
- 0.11280180513858795
- ]
- ]
- ],
- [
- [
- [
- 0.16003477573394775
- ]
- ]
- ],
- [
- [
- [
- 0.09657474607229233
- ]
- ]
- ],
- [
- [
- [
- 0.14419624209403992
- ]
- ]
- ],
- [
- [
- [
- 0.1029721349477768
- ]
- ]
- ],
- [
- [
- [
- 0.09688390046358109
- ]
- ]
- ],
- [
- [
- [
- 0.12920254468917847
- ]
- ]
- ],
- [
- [
- [
- 0.10150521993637085
- ]
- ]
- ],
- [
- [
- [
- 0.07813427597284317
- ]
- ]
- ],
- [
- [
- [
- 0.11106064915657043
- ]
- ]
- ],
- [
- [
- [
- 0.09061180055141449
- ]
- ]
- ],
- [
- [
- [
- 0.11911047995090485
- ]
- ]
- ],
- [
- [
- [
- 0.1484537422657013
- ]
- ]
- ],
- [
- [
- [
- 0.10584958642721176
- ]
- ]
- ],
- [
- [
- [
- 0.10034807026386261
- ]
- ]
- ],
- [
- [
- [
- 0.10963086038827896
- ]
- ]
- ],
- [
- [
- [
- 0.13250266015529633
- ]
- ]
- ],
- [
- [
- [
- 0.07636609673500061
- ]
- ]
- ],
- [
- [
- [
- 0.11532587558031082
- ]
- ]
- ],
- [
- [
- [
- 0.09939517080783844
- ]
- ]
- ],
- [
- [
- [
- 0.09374889731407166
- ]
- ]
- ],
- [
- [
- [
- 0.09962423145771027
- ]
- ]
- ],
- [
- [
- [
- 0.12683236598968506
- ]
- ]
- ],
- [
- [
- [
- 0.14499175548553467
- ]
- ]
- ],
- [
- [
- [
- 0.09692131727933884
- ]
- ]
- ],
- [
- [
- [
- 0.08210159093141556
- ]
- ]
- ],
- [
- [
- [
- 0.09275905042886734
- ]
- ]
- ],
- [
- [
- [
- 0.10740861296653748
- ]
- ]
- ],
- [
- [
- [
- 0.08431559801101685
- ]
- ]
- ],
- [
- [
- [
- 0.12102232128381729
- ]
- ]
- ],
- [
- [
- [
- 0.11440484970808029
- ]
- ]
- ],
- [
- [
- [
- 0.07652193307876587
- ]
- ]
- ],
- [
- [
- [
- 0.12430684268474579
- ]
- ]
- ],
- [
- [
- [
- 0.12887327373027802
- ]
- ]
- ],
- [
- [
- [
- 0.15724483132362366
- ]
- ]
- ],
- [
- [
- [
- 0.19706451892852783
- ]
- ]
- ],
- [
- [
- [
- 0.09659164398908615
- ]
- ]
- ],
- [
- [
- [
- 0.09968344122171402
- ]
- ]
- ],
- [
- [
- [
- 0.1069020926952362
- ]
- ]
- ],
- [
- [
- [
- 0.132303386926651
- ]
- ]
- ],
- [
- [
- [
- 0.1000232845544815
- ]
- ]
- ],
- [
- [
- [
- 0.10618573427200317
- ]
- ]
- ],
- [
- [
- [
- 0.12095846235752106
- ]
- ]
- ],
- [
- [
- [
- 0.16074657440185547
- ]
- ]
- ],
- [
- [
- [
- 0.16995839774608612
- ]
- ]
- ],
- [
- [
- [
- 0.08310679346323013
- ]
- ]
- ],
- [
- [
- [
- 0.15833669900894165
- ]
- ]
- ],
- [
- [
- [
- 0.10211434960365295
- ]
- ]
- ],
- [
- [
- [
- 0.11701148748397827
- ]
- ]
- ],
- [
- [
- [
- 0.11484240740537643
- ]
- ]
- ],
- [
- [
- [
- 0.11740206182003021
- ]
- ]
- ],
- [
- [
- [
- 0.06433029472827911
- ]
- ]
- ],
- [
- [
- [
- 0.10022271424531937
- ]
- ]
- ],
- [
- [
- [
- 0.13317076861858368
- ]
- ]
- ],
- [
- [
- [
- 0.09578404575586319
- ]
- ]
- ],
- [
- [
- [
- 0.08095664530992508
- ]
- ]
- ],
- [
- [
- [
- 0.1446799486875534
- ]
- ]
- ],
- [
- [
- [
- 0.12812836468219757
- ]
- ]
- ],
- [
- [
- [
- 0.11472494155168533
- ]
- ]
- ],
- [
- [
- [
- 0.08412172645330429
- ]
- ]
- ],
- [
- [
- [
- 0.08782412111759186
- ]
- ]
- ],
- [
- [
- [
- 0.10058581084012985
- ]
- ]
- ],
- [
- [
- [
- 0.08729946613311768
- ]
- ]
- ],
- [
- [
- [
- 0.10171807557344437
- ]
- ]
- ],
- [
- [
- [
- 0.07877551764249802
- ]
- ]
- ],
- [
- [
- [
- 0.11170919984579086
- ]
- ]
- ],
- [
- [
- [
- 0.06904307752847672
- ]
- ]
- ],
- [
- [
- [
- 0.09130816906690598
- ]
- ]
- ],
- [
- [
- [
- 0.13287514448165894
- ]
- ]
- ],
- [
- [
- [
- 0.12513460218906403
- ]
- ]
- ],
- [
- [
- [
- 0.07841340452432632
- ]
- ]
- ],
- [
- [
- [
- 0.10529513657093048
- ]
- ]
- ],
- [
- [
- [
- 0.09808158874511719
- ]
- ]
- ],
- [
- [
- [
- 0.07079874724149704
- ]
- ]
- ],
- [
- [
- [
- 0.10425189882516861
- ]
- ]
- ],
- [
- [
- [
- 0.08621910214424133
- ]
- ]
- ],
- [
- [
- [
- 0.16245853900909424
- ]
- ]
- ],
- [
- [
- [
- 0.10689462721347809
- ]
- ]
- ],
- [
- [
- [
- 0.12411796301603317
- ]
- ]
- ],
- [
- [
- [
- 0.06720659881830215
- ]
- ]
- ],
- [
- [
- [
- 0.08337591588497162
- ]
- ]
- ],
- [
- [
- [
- 0.05607900395989418
- ]
- ]
- ],
- [
- [
- [
- 0.10015270113945007
- ]
- ]
- ],
- [
- [
- [
- 0.13322913646697998
- ]
- ]
- ],
- [
- [
- [
- 0.10524462163448334
- ]
- ]
- ],
- [
- [
- [
- 0.10758447647094727
- ]
- ]
- ],
- [
- [
- [
- 0.0882074162364006
- ]
- ]
- ],
- [
- [
- [
- 0.07260526716709137
- ]
- ]
- ],
- [
- [
- [
- 0.06753478199243546
- ]
- ]
- ],
- [
- [
- [
- 0.10443416237831116
- ]
- ]
- ],
- [
- [
- [
- 0.09588133543729782
- ]
- ]
- ],
- [
- [
- [
- 0.12183008342981339
- ]
- ]
- ],
- [
- [
- [
- 0.112009197473526
- ]
- ]
- ],
- [
- [
- [
- 0.14260084927082062
- ]
- ]
- ],
- [
- [
- [
- 0.09019289910793304
- ]
- ]
- ],
- [
- [
- [
- 0.06517241150140762
- ]
- ]
- ],
- [
- [
- [
- 0.08728966116905212
- ]
- ]
- ],
- [
- [
- [
- 0.10962951183319092
- ]
- ]
- ],
- [
- [
- [
- 0.17001551389694214
- ]
- ]
- ],
- [
- [
- [
- 0.0975918248295784
- ]
- ]
- ],
- [
- [
- [
- 0.12416315823793411
- ]
- ]
- ],
- [
- [
- [
- 0.09265103191137314
- ]
- ]
- ],
- [
- [
- [
- 0.1455775946378708
- ]
- ]
- ],
- [
- [
- [
- 0.1418238878250122
- ]
- ]
- ],
- [
- [
- [
- 0.131975919008255
- ]
- ]
- ],
- [
- [
- [
- 0.11731333285570145
- ]
- ]
- ],
- [
- [
- [
- 0.11624395847320557
- ]
- ]
- ],
- [
- [
- [
- 0.10047025978565216
- ]
- ]
- ],
- [
- [
- [
- 0.06697341054677963
- ]
- ]
- ],
- [
- [
- [
- 0.07945547252893448
- ]
- ]
- ],
- [
- [
- [
- 0.07362378388643265
- ]
- ]
- ],
- [
- [
- [
- 0.12403374910354614
- ]
- ]
- ],
- [
- [
- [
- 0.07933995872735977
- ]
- ]
- ],
- [
- [
- [
- 0.11370373517274857
- ]
- ]
- ],
- [
- [
- [
- 0.07922452688217163
- ]
- ]
- ],
- [
- [
- [
- 0.10415773093700409
- ]
- ]
- ],
- [
- [
- [
- 0.08014906197786331
- ]
- ]
- ],
- [
- [
- [
- 0.06317853927612305
- ]
- ]
- ],
- [
- [
- [
- 0.14078855514526367
- ]
- ]
- ],
- [
- [
- [
- 0.049417994916439056
- ]
- ]
- ],
- [
- [
- [
- 0.10651809722185135
- ]
- ]
- ],
- [
- [
- [
- 0.07095514237880707
- ]
- ]
- ],
- [
- [
- [
- 0.10557207465171814
- ]
- ]
- ],
- [
- [
- [
- 0.09825211763381958
- ]
- ]
- ],
- [
- [
- [
- 0.11618512123823166
- ]
- ]
- ],
- [
- [
- [
- 0.136461541056633
- ]
- ]
- ],
- [
- [
- [
- 0.0798511654138565
- ]
- ]
- ],
- [
- [
- [
- 0.17682094871997833
- ]
- ]
- ],
- [
- [
- [
- 0.09722670912742615
- ]
- ]
- ],
- [
- [
- [
- 0.09248413145542145
- ]
- ]
- ],
- [
- [
- [
- 0.06719827651977539
- ]
- ]
- ],
- [
- [
- [
- 0.09774357080459595
- ]
- ]
- ],
- [
- [
- [
- 0.16649140417575836
- ]
- ]
- ],
- [
- [
- [
- 0.11716952174901962
- ]
- ]
- ],
- [
- [
- [
- 0.11738277971744537
- ]
- ]
- ],
- [
- [
- [
- 0.10370578616857529
- ]
- ]
- ],
- [
- [
- [
- 0.09955193847417831
- ]
- ]
- ],
- [
- [
- [
- 0.08525557070970535
- ]
- ]
- ],
- [
- [
- [
- 0.09301915764808655
- ]
- ]
- ],
- [
- [
- [
- 0.11662902683019638
- ]
- ]
- ],
- [
- [
- [
- 0.1170889362692833
- ]
- ]
- ],
- [
- [
- [
- 0.14079943299293518
- ]
- ]
- ],
- [
- [
- [
- 0.07206206768751144
- ]
- ]
- ],
- [
- [
- [
- 0.13919976353645325
- ]
- ]
- ],
- [
- [
- [
- 0.10727459192276001
- ]
- ]
- ],
- [
- [
- [
- 0.10635294020175934
- ]
- ]
- ],
- [
- [
- [
- 0.07272119075059891
- ]
- ]
- ],
- [
- [
- [
- 0.10634204000234604
- ]
- ]
- ],
- [
- [
- [
- 0.10939183086156845
- ]
- ]
- ],
- [
- [
- [
- 0.12368644773960114
- ]
- ]
- ],
- [
- [
- [
- 0.0583941675722599
- ]
- ]
- ],
- [
- [
- [
- 0.1759897768497467
- ]
- ]
- ],
- [
- [
- [
- 0.07685467600822449
- ]
- ]
- ],
- [
- [
- [
- 0.09946926683187485
- ]
- ]
- ],
- [
- [
- [
- 0.11418312788009644
- ]
- ]
- ],
- [
- [
- [
- 0.11486251652240753
- ]
- ]
- ],
- [
- [
- [
- 0.11153148859739304
- ]
- ]
- ],
- [
- [
- [
- 0.12919680774211884
- ]
- ]
- ],
- [
- [
- [
- 0.11865189671516418
- ]
- ]
- ],
- [
- [
- [
- 0.10118752717971802
- ]
- ]
- ],
- [
- [
- [
- 0.09533622860908508
- ]
- ]
- ],
- [
- [
- [
- 0.1148749366402626
- ]
- ]
- ],
- [
- [
- [
- 0.13439790904521942
- ]
- ]
- ],
- [
- [
- [
- 0.17384758591651917
- ]
- ]
- ],
- [
- [
- [
- 0.09122811257839203
- ]
- ]
- ],
- [
- [
- [
- 0.15685723721981049
- ]
- ]
- ],
- [
- [
- [
- 0.19040605425834656
- ]
- ]
- ],
- [
- [
- [
- 0.06348840892314911
- ]
- ]
- ],
- [
- [
- [
- 0.06313139945268631
- ]
- ]
- ],
- [
- [
- [
- 0.139471635222435
- ]
- ]
- ],
- [
- [
- [
- 0.15336716175079346
- ]
- ]
- ],
- [
- [
- [
- 0.36989083886146545
- ]
- ]
- ],
- [
- [
- [
- 0.13796231150627136
- ]
- ]
- ],
- [
- [
- [
- 0.07850717008113861
- ]
- ]
- ],
- [
- [
- [
- 0.0968884751200676
- ]
- ]
- ],
- [
- [
- [
- 0.13210529088974
- ]
- ]
- ],
- [
- [
- [
- 0.09742090106010437
- ]
- ]
- ],
- [
- [
- [
- 0.12738558650016785
- ]
- ]
- ],
- [
- [
- [
- 0.09732162207365036
- ]
- ]
- ],
- [
- [
- [
- 0.11478330940008163
- ]
- ]
- ],
- [
- [
- [
- 0.13739149272441864
- ]
- ]
- ],
- [
- [
- [
- 0.10063342750072479
- ]
- ]
- ],
- [
- [
- [
- 0.08205841481685638
- ]
- ]
- ],
- [
- [
- [
- 0.11039140820503235
- ]
- ]
- ],
- [
- [
- [
- 0.14770744740962982
- ]
- ]
- ],
- [
- [
- [
- 0.12457761913537979
- ]
- ]
- ],
- [
- [
- [
- 0.10150700062513351
- ]
- ]
- ],
- [
- [
- [
- 0.07471436262130737
- ]
- ]
- ],
- [
- [
- [
- 0.15485762059688568
- ]
- ]
- ],
- [
- [
- [
- 0.058032140135765076
- ]
- ]
- ],
- [
- [
- [
- 0.13998468220233917
- ]
- ]
- ],
- [
- [
- [
- 0.09014527499675751
- ]
- ]
- ],
- [
- [
- [
- 0.08379329741001129
- ]
- ]
- ],
- [
- [
- [
- 0.09356965124607086
- ]
- ]
- ],
- [
- [
- [
- 0.09377752989530563
- ]
- ]
- ],
- [
- [
- [
- 0.12806983292102814
- ]
- ]
- ],
- [
- [
- [
- 0.13670580089092255
- ]
- ]
- ],
- [
- [
- [
- 0.10097579658031464
- ]
- ]
- ],
- [
- [
- [
- 0.09476497769355774
- ]
- ]
- ],
- [
- [
- [
- 0.08515308797359467
- ]
- ]
- ],
- [
- [
- [
- 0.1261972188949585
- ]
- ]
- ],
- [
- [
- [
- 0.09628938138484955
- ]
- ]
- ],
- [
- [
- [
- 0.08974553644657135
- ]
- ]
- ],
- [
- [
- [
- 0.12381140142679214
- ]
- ]
- ],
- [
- [
- [
- 0.12440940737724304
- ]
- ]
- ],
- [
- [
- [
- 0.10332001745700836
- ]
- ]
- ],
- [
- [
- [
- 0.08677545189857483
- ]
- ]
- ],
- [
- [
- [
- 0.14178940653800964
- ]
- ]
- ],
- [
- [
- [
- 0.12892977893352509
- ]
- ]
- ],
- [
- [
- [
- 0.1269225776195526
- ]
- ]
- ],
- [
- [
- [
- 0.11344408988952637
- ]
- ]
- ],
- [
- [
- [
- 0.10470149666070938
- ]
- ]
- ],
- [
- [
- [
- 0.09527155011892319
- ]
- ]
- ],
- [
- [
- [
- 0.1583903431892395
- ]
- ]
- ],
- [
- [
- [
- 0.12105882912874222
- ]
- ]
- ],
- [
- [
- [
- 0.08887576311826706
- ]
- ]
- ],
- [
- [
- [
- 0.12864775955677032
- ]
- ]
- ],
- [
- [
- [
- 0.1241866946220398
- ]
- ]
- ],
- [
- [
- [
- 0.12172083556652069
- ]
- ]
- ],
- [
- [
- [
- 0.11822833865880966
- ]
- ]
- ],
- [
- [
- [
- 0.059088341891765594
- ]
- ]
- ],
- [
- [
- [
- 0.11485522985458374
- ]
- ]
- ],
- [
- [
- [
- 0.11784174293279648
- ]
- ]
- ],
- [
- [
- [
- 0.08596241474151611
- ]
- ]
- ],
- [
- [
- [
- 0.11355813592672348
- ]
- ]
- ],
- [
- [
- [
- 0.10720866173505783
- ]
- ]
- ],
- [
- [
- [
- 0.13082022964954376
- ]
- ]
- ],
- [
- [
- [
- 0.05430592596530914
- ]
- ]
- ],
- [
- [
- [
- 0.06387361884117126
- ]
- ]
- ],
- [
- [
- [
- 0.1571795493364334
- ]
- ]
- ],
- [
- [
- [
- 0.13155889511108398
- ]
- ]
- ],
- [
- [
- [
- 0.12399767339229584
- ]
- ]
- ],
- [
- [
- [
- 0.06066833436489105
- ]
- ]
- ],
- [
- [
- [
- 0.11913734674453735
- ]
- ]
- ],
- [
- [
- [
- 0.08205528557300568
- ]
- ]
- ],
- [
- [
- [
- 0.12855955958366394
- ]
- ]
- ],
- [
- [
- [
- 0.11611414700746536
- ]
- ]
- ],
- [
- [
- [
- 0.10525085031986237
- ]
- ]
- ],
- [
- [
- [
- 0.12315084785223007
- ]
- ]
- ],
- [
- [
- [
- 0.10782132297754288
- ]
- ]
- ],
- [
- [
- [
- 0.07643338292837143
- ]
- ]
- ],
- [
- [
- [
- 0.11941243708133698
- ]
- ]
- ],
- [
- [
- [
- 0.049165986478328705
- ]
- ]
- ],
- [
- [
- [
- 0.09013232588768005
- ]
- ]
- ],
- [
- [
- [
- 0.1361590474843979
- ]
- ]
- ],
- [
- [
- [
- 0.17185167968273163
- ]
- ]
- ],
- [
- [
- [
- 0.0884060487151146
- ]
- ]
- ],
- [
- [
- [
- 0.12548036873340607
- ]
- ]
- ],
- [
- [
- [
- 0.11428655683994293
- ]
- ]
- ],
- [
- [
- [
- 0.08448940515518188
- ]
- ]
- ],
- [
- [
- [
- 0.11143284291028976
- ]
- ]
- ],
- [
- [
- [
- 0.1159742921590805
- ]
- ]
- ],
- [
- [
- [
- 0.11112330853939056
- ]
- ]
- ],
- [
- [
- [
- 0.10374187678098679
- ]
- ]
- ],
- [
- [
- [
- 0.09812138229608536
- ]
- ]
- ],
- [
- [
- [
- 0.11141866445541382
- ]
- ]
- ],
- [
- [
- [
- 0.035040222108364105
- ]
- ]
- ],
- [
- [
- [
- 0.0720009133219719
- ]
- ]
- ],
- [
- [
- [
- 0.1545829325914383
- ]
- ]
- ],
- [
- [
- [
- 0.11717778444290161
- ]
- ]
- ],
- [
- [
- [
- 0.09807708859443665
- ]
- ]
- ],
- [
- [
- [
- 0.08761931955814362
- ]
- ]
- ],
- [
- [
- [
- 0.08958824723958969
- ]
- ]
- ],
- [
- [
- [
- 0.10393743962049484
- ]
- ]
- ],
- [
- [
- [
- 0.10587535053491592
- ]
- ]
- ],
- [
- [
- [
- 0.09248442947864532
- ]
- ]
- ],
- [
- [
- [
- 0.1224096342921257
- ]
- ]
- ],
- [
- [
- [
- 0.11888958513736725
- ]
- ]
- ],
- [
- [
- [
- 0.05579361692070961
- ]
- ]
- ],
- [
- [
- [
- 0.07915809750556946
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.12870028614997864
- ]
- ]
- ],
- [
- [
- [
- -0.10714153945446014
- ]
- ]
- ],
- [
- [
- [
- -0.06963556259870529
- ]
- ]
- ],
- [
- [
- [
- -0.15648068487644196
- ]
- ]
- ],
- [
- [
- [
- -0.08688876032829285
- ]
- ]
- ],
- [
- [
- [
- -0.11347872763872147
- ]
- ]
- ],
- [
- [
- [
- -0.10918533802032471
- ]
- ]
- ],
- [
- [
- [
- -0.0722738653421402
- ]
- ]
- ],
- [
- [
- [
- -0.1348726898431778
- ]
- ]
- ],
- [
- [
- [
- -0.11230529099702835
- ]
- ]
- ],
- [
- [
- [
- -0.08424068242311478
- ]
- ]
- ],
- [
- [
- [
- -0.07912690192461014
- ]
- ]
- ],
- [
- [
- [
- -0.1376967430114746
- ]
- ]
- ],
- [
- [
- [
- -0.14505283534526825
- ]
- ]
- ],
- [
- [
- [
- -0.09644751995801926
- ]
- ]
- ],
- [
- [
- [
- -0.10722948610782623
- ]
- ]
- ],
- [
- [
- [
- -0.1529293954372406
- ]
- ]
- ],
- [
- [
- [
- -0.12349193543195724
- ]
- ]
- ],
- [
- [
- [
- -0.08346318453550339
- ]
- ]
- ],
- [
- [
- [
- -0.1639435738325119
- ]
- ]
- ],
- [
- [
- [
- -0.0728839784860611
- ]
- ]
- ],
- [
- [
- [
- -0.11334294080734253
- ]
- ]
- ],
- [
- [
- [
- -0.1481134295463562
- ]
- ]
- ],
- [
- [
- [
- -0.094202920794487
- ]
- ]
- ],
- [
- [
- [
- -0.13775977492332458
- ]
- ]
- ],
- [
- [
- [
- -0.11387593299150467
- ]
- ]
- ],
- [
- [
- [
- -0.09304003417491913
- ]
- ]
- ],
- [
- [
- [
- -0.09396117180585861
- ]
- ]
- ],
- [
- [
- [
- -0.10136163979768753
- ]
- ]
- ],
- [
- [
- [
- -0.12263055890798569
- ]
- ]
- ],
- [
- [
- [
- -0.0645599290728569
- ]
- ]
- ],
- [
- [
- [
- -0.10768815129995346
- ]
- ]
- ],
- [
- [
- [
- -0.0921766459941864
- ]
- ]
- ],
- [
- [
- [
- -0.12366209179162979
- ]
- ]
- ],
- [
- [
- [
- -0.1667950302362442
- ]
- ]
- ],
- [
- [
- [
- -0.08622563630342484
- ]
- ]
- ],
- [
- [
- [
- -0.11051255464553833
- ]
- ]
- ],
- [
- [
- [
- -0.09718487411737442
- ]
- ]
- ],
- [
- [
- [
- -0.07699333131313324
- ]
- ]
- ],
- [
- [
- [
- -0.1125633642077446
- ]
- ]
- ],
- [
- [
- [
- -0.13340237736701965
- ]
- ]
- ],
- [
- [
- [
- -0.1276392787694931
- ]
- ]
- ],
- [
- [
- [
- -0.12461244314908981
- ]
- ]
- ],
- [
- [
- [
- -0.1340327113866806
- ]
- ]
- ],
- [
- [
- [
- -0.05990930646657944
- ]
- ]
- ],
- [
- [
- [
- -0.11529190093278885
- ]
- ]
- ],
- [
- [
- [
- -0.1316174864768982
- ]
- ]
- ],
- [
- [
- [
- -0.11131871491670609
- ]
- ]
- ],
- [
- [
- [
- -0.10819090157747269
- ]
- ]
- ],
- [
- [
- [
- -0.10952568799257278
- ]
- ]
- ],
- [
- [
- [
- -0.15448276698589325
- ]
- ]
- ],
- [
- [
- [
- -0.11064053326845169
- ]
- ]
- ],
- [
- [
- [
- -0.11023510992527008
- ]
- ]
- ],
- [
- [
- [
- -0.12773847579956055
- ]
- ]
- ],
- [
- [
- [
- -0.08124437183141708
- ]
- ]
- ],
- [
- [
- [
- -0.11720290780067444
- ]
- ]
- ],
- [
- [
- [
- -0.057428739964962006
- ]
- ]
- ],
- [
- [
- [
- -0.10893258452415466
- ]
- ]
- ],
- [
- [
- [
- -0.15313763916492462
- ]
- ]
- ],
- [
- [
- [
- -0.14350463449954987
- ]
- ]
- ],
- [
- [
- [
- -0.16560111939907074
- ]
- ]
- ],
- [
- [
- [
- -0.1283593624830246
- ]
- ]
- ],
- [
- [
- [
- -0.12066451460123062
- ]
- ]
- ],
- [
- [
- [
- -0.09402991086244583
- ]
- ]
- ],
- [
- [
- [
- -0.1024172380566597
- ]
- ]
- ],
- [
- [
- [
- -0.11360916495323181
- ]
- ]
- ],
- [
- [
- [
- -0.06277693063020706
- ]
- ]
- ],
- [
- [
- [
- -0.12359968572854996
- ]
- ]
- ],
- [
- [
- [
- -0.12235646694898605
- ]
- ]
- ],
- [
- [
- [
- -0.10589821636676788
- ]
- ]
- ],
- [
- [
- [
- -0.12047645449638367
- ]
- ]
- ],
- [
- [
- [
- -0.09293464571237564
- ]
- ]
- ],
- [
- [
- [
- -0.1309085488319397
- ]
- ]
- ],
- [
- [
- [
- -0.06503257155418396
- ]
- ]
- ],
- [
- [
- [
- -0.10889942944049835
- ]
- ]
- ],
- [
- [
- [
- -0.12680068612098694
- ]
- ]
- ],
- [
- [
- [
- -0.13506922125816345
- ]
- ]
- ],
- [
- [
- [
- -0.0883713811635971
- ]
- ]
- ],
- [
- [
- [
- -0.11547089368104935
- ]
- ]
- ],
- [
- [
- [
- -0.11305110156536102
- ]
- ]
- ],
- [
- [
- [
- -0.11899257451295853
- ]
- ]
- ],
- [
- [
- [
- -0.11160523444414139
- ]
- ]
- ],
- [
- [
- [
- -0.09167875349521637
- ]
- ]
- ],
- [
- [
- [
- -0.12781548500061035
- ]
- ]
- ],
- [
- [
- [
- -0.12825742363929749
- ]
- ]
- ],
- [
- [
- [
- -0.12645065784454346
- ]
- ]
- ],
- [
- [
- [
- -0.11154492944478989
- ]
- ]
- ],
- [
- [
- [
- -0.09106258302927017
- ]
- ]
- ],
- [
- [
- [
- -0.10912919044494629
- ]
- ]
- ],
- [
- [
- [
- -0.05736716091632843
- ]
- ]
- ],
- [
- [
- [
- -0.148849219083786
- ]
- ]
- ],
- [
- [
- [
- -0.1312556117773056
- ]
- ]
- ],
- [
- [
- [
- -0.04802717640995979
- ]
- ]
- ],
- [
- [
- [
- -0.1001727357506752
- ]
- ]
- ],
- [
- [
- [
- -0.09495502710342407
- ]
- ]
- ],
- [
- [
- [
- -0.10083374381065369
- ]
- ]
- ],
- [
- [
- [
- -0.13820913434028625
- ]
- ]
- ],
- [
- [
- [
- -0.08066865056753159
- ]
- ]
- ],
- [
- [
- [
- -0.08136259764432907
- ]
- ]
- ],
- [
- [
- [
- -0.09368385374546051
- ]
- ]
- ],
- [
- [
- [
- -0.16729788482189178
- ]
- ]
- ],
- [
- [
- [
- -0.0718376636505127
- ]
- ]
- ],
- [
- [
- [
- -0.10577844083309174
- ]
- ]
- ],
- [
- [
- [
- -0.08648005872964859
- ]
- ]
- ],
- [
- [
- [
- -0.09518914669752121
- ]
- ]
- ],
- [
- [
- [
- -0.14617016911506653
- ]
- ]
- ],
- [
- [
- [
- -0.08732638508081436
- ]
- ]
- ],
- [
- [
- [
- -0.08266203850507736
- ]
- ]
- ],
- [
- [
- [
- -0.08526536822319031
- ]
- ]
- ],
- [
- [
- [
- -0.16127175092697144
- ]
- ]
- ],
- [
- [
- [
- -0.1250031739473343
- ]
- ]
- ],
- [
- [
- [
- -0.10387348383665085
- ]
- ]
- ],
- [
- [
- [
- -0.06812668591737747
- ]
- ]
- ],
- [
- [
- [
- -0.07916378974914551
- ]
- ]
- ],
- [
- [
- [
- -0.08262314647436142
- ]
- ]
- ],
- [
- [
- [
- -0.1634415090084076
- ]
- ]
- ],
- [
- [
- [
- -0.08311112970113754
- ]
- ]
- ],
- [
- [
- [
- -0.11503073573112488
- ]
- ]
- ],
- [
- [
- [
- -0.07480606436729431
- ]
- ]
- ],
- [
- [
- [
- -0.17655912041664124
- ]
- ]
- ],
- [
- [
- [
- -0.15234334766864777
- ]
- ]
- ],
- [
- [
- [
- -0.08433038741350174
- ]
- ]
- ],
- [
- [
- [
- -0.09455030411481857
- ]
- ]
- ],
- [
- [
- [
- -0.13404661417007446
- ]
- ]
- ],
- [
- [
- [
- -0.09816620498895645
- ]
- ]
- ],
- [
- [
- [
- -0.0938253402709961
- ]
- ]
- ],
- [
- [
- [
- -0.07785102725028992
- ]
- ]
- ],
- [
- [
- [
- -0.12180755287408829
- ]
- ]
- ],
- [
- [
- [
- -0.2117060124874115
- ]
- ]
- ],
- [
- [
- [
- -0.09603217244148254
- ]
- ]
- ],
- [
- [
- [
- -0.14229048788547516
- ]
- ]
- ],
- [
- [
- [
- -0.1042841300368309
- ]
- ]
- ],
- [
- [
- [
- -0.08274050801992416
- ]
- ]
- ],
- [
- [
- [
- -0.12336533516645432
- ]
- ]
- ],
- [
- [
- [
- -0.07151716947555542
- ]
- ]
- ],
- [
- [
- [
- -0.09369833022356033
- ]
- ]
- ],
- [
- [
- [
- -0.08154797554016113
- ]
- ]
- ],
- [
- [
- [
- -0.12545372545719147
- ]
- ]
- ],
- [
- [
- [
- -0.1162385568022728
- ]
- ]
- ],
- [
- [
- [
- -0.10297057032585144
- ]
- ]
- ],
- [
- [
- [
- -0.11066564172506332
- ]
- ]
- ],
- [
- [
- [
- -0.11516391485929489
- ]
- ]
- ],
- [
- [
- [
- -0.07097022235393524
- ]
- ]
- ],
- [
- [
- [
- -0.12880288064479828
- ]
- ]
- ],
- [
- [
- [
- -0.08523973822593689
- ]
- ]
- ],
- [
- [
- [
- -0.17985135316848755
- ]
- ]
- ],
- [
- [
- [
- -0.07272639125585556
- ]
- ]
- ],
- [
- [
- [
- -0.13267090916633606
- ]
- ]
- ],
- [
- [
- [
- -0.15093471109867096
- ]
- ]
- ],
- [
- [
- [
- -0.0922820046544075
- ]
- ]
- ],
- [
- [
- [
- -0.0769660621881485
- ]
- ]
- ],
- [
- [
- [
- -0.11838088184595108
- ]
- ]
- ],
- [
- [
- [
- -0.11590438336133957
- ]
- ]
- ],
- [
- [
- [
- -0.06964965909719467
- ]
- ]
- ],
- [
- [
- [
- -0.106001116335392
- ]
- ]
- ],
- [
- [
- [
- -0.15034076571464539
- ]
- ]
- ],
- [
- [
- [
- -0.09024682641029358
- ]
- ]
- ],
- [
- [
- [
- -0.10464531183242798
- ]
- ]
- ],
- [
- [
- [
- -0.1007806807756424
- ]
- ]
- ],
- [
- [
- [
- -0.11138787865638733
- ]
- ]
- ],
- [
- [
- [
- -0.12544476985931396
- ]
- ]
- ],
- [
- [
- [
- -0.15017931163311005
- ]
- ]
- ],
- [
- [
- [
- -0.13194024562835693
- ]
- ]
- ],
- [
- [
- [
- -0.16771605610847473
- ]
- ]
- ],
- [
- [
- [
- -0.1401728242635727
- ]
- ]
- ],
- [
- [
- [
- -0.1507565677165985
- ]
- ]
- ],
- [
- [
- [
- -0.12906675040721893
- ]
- ]
- ],
- [
- [
- [
- -0.13872307538986206
- ]
- ]
- ],
- [
- [
- [
- -0.1539493054151535
- ]
- ]
- ],
- [
- [
- [
- -0.09553037583827972
- ]
- ]
- ],
- [
- [
- [
- -0.09447916597127914
- ]
- ]
- ],
- [
- [
- [
- -0.07290205359458923
- ]
- ]
- ],
- [
- [
- [
- -0.10008582472801208
- ]
- ]
- ],
- [
- [
- [
- -0.09933307766914368
- ]
- ]
- ],
- [
- [
- [
- -0.11002664268016815
- ]
- ]
- ],
- [
- [
- [
- -0.05376339331269264
- ]
- ]
- ],
- [
- [
- [
- -0.10620822012424469
- ]
- ]
- ],
- [
- [
- [
- -0.06648481637239456
- ]
- ]
- ],
- [
- [
- [
- -0.11577573418617249
- ]
- ]
- ],
- [
- [
- [
- -0.15340179204940796
- ]
- ]
- ],
- [
- [
- [
- -0.12904247641563416
- ]
- ]
- ],
- [
- [
- [
- -0.09584838896989822
- ]
- ]
- ],
- [
- [
- [
- -0.09873117506504059
- ]
- ]
- ],
- [
- [
- [
- -0.09640708565711975
- ]
- ]
- ],
- [
- [
- [
- -0.1492360681295395
- ]
- ]
- ],
- [
- [
- [
- -0.11389601230621338
- ]
- ]
- ],
- [
- [
- [
- -0.1362534612417221
- ]
- ]
- ],
- [
- [
- [
- -0.08402295410633087
- ]
- ]
- ],
- [
- [
- [
- -0.05689374729990959
- ]
- ]
- ],
- [
- [
- [
- -0.11944304406642914
- ]
- ]
- ],
- [
- [
- [
- -0.09250753372907639
- ]
- ]
- ],
- [
- [
- [
- -0.14122501015663147
- ]
- ]
- ],
- [
- [
- [
- -0.05972130969166756
- ]
- ]
- ],
- [
- [
- [
- -0.13193367421627045
- ]
- ]
- ],
- [
- [
- [
- -0.08210792392492294
- ]
- ]
- ],
- [
- [
- [
- -0.18858683109283447
- ]
- ]
- ],
- [
- [
- [
- -0.10387223213911057
- ]
- ]
- ],
- [
- [
- [
- -0.1371043175458908
- ]
- ]
- ],
- [
- [
- [
- -0.09416444599628448
- ]
- ]
- ],
- [
- [
- [
- -0.10787082463502884
- ]
- ]
- ],
- [
- [
- [
- -0.09027472138404846
- ]
- ]
- ],
- [
- [
- [
- -0.06641899794340134
- ]
- ]
- ],
- [
- [
- [
- -0.14213299751281738
- ]
- ]
- ],
- [
- [
- [
- -0.10173457860946655
- ]
- ]
- ],
- [
- [
- [
- -0.05025773495435715
- ]
- ]
- ],
- [
- [
- [
- -0.0614980049431324
- ]
- ]
- ],
- [
- [
- [
- -0.10282250493764877
- ]
- ]
- ],
- [
- [
- [
- -0.04526874050498009
- ]
- ]
- ],
- [
- [
- [
- -0.10593702644109726
- ]
- ]
- ],
- [
- [
- [
- -0.09994799643754959
- ]
- ]
- ],
- [
- [
- [
- -0.1318366527557373
- ]
- ]
- ],
- [
- [
- [
- -0.0856233462691307
- ]
- ]
- ],
- [
- [
- [
- -0.14180876314640045
- ]
- ]
- ],
- [
- [
- [
- -0.07913100719451904
- ]
- ]
- ],
- [
- [
- [
- -0.10692936927080154
- ]
- ]
- ],
- [
- [
- [
- -0.09222017973661423
- ]
- ]
- ],
- [
- [
- [
- -0.08747600764036179
- ]
- ]
- ],
- [
- [
- [
- -0.10727803409099579
- ]
- ]
- ],
- [
- [
- [
- -0.09745626896619797
- ]
- ]
- ],
- [
- [
- [
- -0.12550599873065948
- ]
- ]
- ],
- [
- [
- [
- -0.06749936193227768
- ]
- ]
- ],
- [
- [
- [
- -0.10046866536140442
- ]
- ]
- ],
- [
- [
- [
- -0.16743804514408112
- ]
- ]
- ],
- [
- [
- [
- -0.12989692389965057
- ]
- ]
- ],
- [
- [
- [
- -0.11224345862865448
- ]
- ]
- ],
- [
- [
- [
- -0.13558915257453918
- ]
- ]
- ],
- [
- [
- [
- -0.060859598219394684
- ]
- ]
- ],
- [
- [
- [
- -0.12250219285488129
- ]
- ]
- ],
- [
- [
- [
- -0.08771271258592606
- ]
- ]
- ],
- [
- [
- [
- -0.08129311352968216
- ]
- ]
- ],
- [
- [
- [
- -0.10531339794397354
- ]
- ]
- ],
- [
- [
- [
- -0.16142383217811584
- ]
- ]
- ],
- [
- [
- [
- -0.09252549707889557
- ]
- ]
- ],
- [
- [
- [
- -0.12299011647701263
- ]
- ]
- ],
- [
- [
- [
- -0.10980292409658432
- ]
- ]
- ],
- [
- [
- [
- -0.07939561456441879
- ]
- ]
- ],
- [
- [
- [
- -0.10035314410924911
- ]
- ]
- ],
- [
- [
- [
- -0.16482359170913696
- ]
- ]
- ],
- [
- [
- [
- -0.08297896385192871
- ]
- ]
- ],
- [
- [
- [
- -0.10043513774871826
- ]
- ]
- ],
- [
- [
- [
- -0.11459547281265259
- ]
- ]
- ],
- [
- [
- [
- -0.06620358675718307
- ]
- ]
- ],
- [
- [
- [
- -0.15834718942642212
- ]
- ]
- ],
- [
- [
- [
- -0.09908001869916916
- ]
- ]
- ],
- [
- [
- [
- -0.11642792075872421
- ]
- ]
- ],
- [
- [
- [
- -0.10998696833848953
- ]
- ]
- ],
- [
- [
- [
- -0.10858519375324249
- ]
- ]
- ],
- [
- [
- [
- -0.08414836972951889
- ]
- ]
- ],
- [
- [
- [
- -0.0835404247045517
- ]
- ]
- ],
- [
- [
- [
- -0.13274939358234406
- ]
- ]
- ],
- [
- [
- [
- -0.11507917940616608
- ]
- ]
- ],
- [
- [
- [
- -0.09135919064283371
- ]
- ]
- ],
- [
- [
- [
- -0.09261520951986313
- ]
- ]
- ],
- [
- [
- [
- -0.07599399983882904
- ]
- ]
- ],
- [
- [
- [
- -0.09561667591333389
- ]
- ]
- ],
- [
- [
- [
- -0.06392333656549454
- ]
- ]
- ],
- [
- [
- [
- -0.1560612916946411
- ]
- ]
- ],
- [
- [
- [
- -0.1354973018169403
- ]
- ]
- ],
- [
- [
- [
- -0.0950012132525444
- ]
- ]
- ],
- [
- [
- [
- -0.07634959369897842
- ]
- ]
- ],
- [
- [
- [
- -0.11306571215391159
- ]
- ]
- ],
- [
- [
- [
- -0.12356392294168472
- ]
- ]
- ],
- [
- [
- [
- -0.1005362793803215
- ]
- ]
- ],
- [
- [
- [
- -0.08982517570257187
- ]
- ]
- ],
- [
- [
- [
- -0.10034646093845367
- ]
- ]
- ],
- [
- [
- [
- -0.11808118969202042
- ]
- ]
- ],
- [
- [
- [
- -0.11204159259796143
- ]
- ]
- ],
- [
- [
- [
- -0.14139938354492188
- ]
- ]
- ],
- [
- [
- [
- -0.0969185084104538
- ]
- ]
- ],
- [
- [
- [
- -0.06916318088769913
- ]
- ]
- ],
- [
- [
- [
- -0.11682108789682388
- ]
- ]
- ],
- [
- [
- [
- -0.12082896381616592
- ]
- ]
- ],
- [
- [
- [
- -0.07677620649337769
- ]
- ]
- ],
- [
- [
- [
- -0.05724450200796127
- ]
- ]
- ],
- [
- [
- [
- -0.1137750968337059
- ]
- ]
- ],
- [
- [
- [
- -0.09354895353317261
- ]
- ]
- ],
- [
- [
- [
- -0.12027541548013687
- ]
- ]
- ],
- [
- [
- [
- -0.11937037110328674
- ]
- ]
- ],
- [
- [
- [
- -0.0577746145427227
- ]
- ]
- ],
- [
- [
- [
- -0.0974879264831543
- ]
- ]
- ],
- [
- [
- [
- -0.08221512287855148
- ]
- ]
- ],
- [
- [
- [
- -0.1438351571559906
- ]
- ]
- ],
- [
- [
- [
- -0.07963304221630096
- ]
- ]
- ],
- [
- [
- [
- -0.08895023167133331
- ]
- ]
- ],
- [
- [
- [
- -0.22465604543685913
- ]
- ]
- ],
- [
- [
- [
- -0.11721932142972946
- ]
- ]
- ],
- [
- [
- [
- -0.10774079710245132
- ]
- ]
- ],
- [
- [
- [
- -0.09490944445133209
- ]
- ]
- ],
- [
- [
- [
- -0.14025434851646423
- ]
- ]
- ],
- [
- [
- [
- -0.1466863453388214
- ]
- ]
- ],
- [
- [
- [
- -0.08903222531080246
- ]
- ]
- ],
- [
- [
- [
- -0.057088807225227356
- ]
- ]
- ],
- [
- [
- [
- -0.09786785393953323
- ]
- ]
- ],
- [
- [
- [
- -0.1043468564748764
- ]
- ]
- ],
- [
- [
- [
- -0.09294959157705307
- ]
- ]
- ],
- [
- [
- [
- -0.09332462400197983
- ]
- ]
- ],
- [
- [
- [
- -0.06211674213409424
- ]
- ]
- ],
- [
- [
- [
- -0.13530750572681427
- ]
- ]
- ],
- [
- [
- [
- -0.08800535649061203
- ]
- ]
- ],
- [
- [
- [
- -0.0869571790099144
- ]
- ]
- ],
- [
- [
- [
- -0.11146408319473267
- ]
- ]
- ],
- [
- [
- [
- -0.12911109626293182
- ]
- ]
- ],
- [
- [
- [
- -0.0921739786863327
- ]
- ]
- ],
- [
- [
- [
- -0.13804873824119568
- ]
- ]
- ],
- [
- [
- [
- -0.10810303688049316
- ]
- ]
- ],
- [
- [
- [
- -0.09252799302339554
- ]
- ]
- ],
- [
- [
- [
- -0.23380720615386963
- ]
- ]
- ],
- [
- [
- [
- -0.07780127227306366
- ]
- ]
- ],
- [
- [
- [
- -0.1777135729789734
- ]
- ]
- ],
- [
- [
- [
- -0.14629431068897247
- ]
- ]
- ],
- [
- [
- [
- -0.09951049089431763
- ]
- ]
- ],
- [
- [
- [
- -0.11064599454402924
- ]
- ]
- ],
- [
- [
- [
- -0.07137824594974518
- ]
- ]
- ],
- [
- [
- [
- -0.11060818284749985
- ]
- ]
- ],
- [
- [
- [
- -0.08341861516237259
- ]
- ]
- ],
- [
- [
- [
- -0.1331130862236023
- ]
- ]
- ],
- [
- [
- [
- -0.08529622107744217
- ]
- ]
- ],
- [
- [
- [
- -0.07099801301956177
- ]
- ]
- ],
- [
- [
- [
- -0.17250925302505493
- ]
- ]
- ],
- [
- [
- [
- -0.10609203577041626
- ]
- ]
- ],
- [
- [
- [
- -0.11273952573537827
- ]
- ]
- ],
- [
- [
- [
- -0.12467444688081741
- ]
- ]
- ],
- [
- [
- [
- -0.0528140552341938
- ]
- ]
- ],
- [
- [
- [
- -0.12089217454195023
- ]
- ]
- ],
- [
- [
- [
- -0.13694240152835846
- ]
- ]
- ],
- [
- [
- [
- -0.09494708478450775
- ]
- ]
- ],
- [
- [
- [
- -0.09517005831003189
- ]
- ]
- ],
- [
- [
- [
- -0.09173370897769928
- ]
- ]
- ],
- [
- [
- [
- -0.14287760853767395
- ]
- ]
- ],
- [
- [
- [
- -0.08889936655759811
- ]
- ]
- ],
- [
- [
- [
- -0.07412511110305786
- ]
- ]
- ],
- [
- [
- [
- -0.11942169815301895
- ]
- ]
- ],
- [
- [
- [
- -0.08265075832605362
- ]
- ]
- ],
- [
- [
- [
- -0.11597882956266403
- ]
- ]
- ],
- [
- [
- [
- -0.136866495013237
- ]
- ]
- ],
- [
- [
- [
- -0.12942366302013397
- ]
- ]
- ],
- [
- [
- [
- -0.13092643022537231
- ]
- ]
- ],
- [
- [
- [
- -0.06777326762676239
- ]
- ]
- ],
- [
- [
- [
- -0.09761752188205719
- ]
- ]
- ],
- [
- [
- [
- -0.12400688976049423
- ]
- ]
- ],
- [
- [
- [
- -0.06952434033155441
- ]
- ]
- ],
- [
- [
- [
- -0.08214408159255981
- ]
- ]
- ],
- [
- [
- [
- -0.1109093576669693
- ]
- ]
- ],
- [
- [
- [
- -0.08203009516000748
- ]
- ]
- ],
- [
- [
- [
- -0.10151204466819763
- ]
- ]
- ],
- [
- [
- [
- -0.14699135720729828
- ]
- ]
- ],
- [
- [
- [
- -0.08051149547100067
- ]
- ]
- ],
- [
- [
- [
- -0.108080193400383
- ]
- ]
- ],
- [
- [
- [
- -0.09503430873155594
- ]
- ]
- ],
- [
- [
- [
- -0.08208990842103958
- ]
- ]
- ],
- [
- [
- [
- -0.1261313110589981
- ]
- ]
- ],
- [
- [
- [
- -0.11160638928413391
- ]
- ]
- ],
- [
- [
- [
- -0.1404438465833664
- ]
- ]
- ],
- [
- [
- [
- -0.11236241459846497
- ]
- ]
- ],
- [
- [
- [
- -0.11920187622308731
- ]
- ]
- ],
- [
- [
- [
- -0.08200473338365555
- ]
- ]
- ],
- [
- [
- [
- -0.11740203946828842
- ]
- ]
- ],
- [
- [
- [
- -0.09874571114778519
- ]
- ]
- ],
- [
- [
- [
- -0.0770777240395546
- ]
- ]
- ],
- [
- [
- [
- -0.08186709880828857
- ]
- ]
- ],
- [
- [
- [
- -0.1406736522912979
- ]
- ]
- ],
- [
- [
- [
- -0.113337442278862
- ]
- ]
- ],
- [
- [
- [
- -0.16424822807312012
- ]
- ]
- ],
- [
- [
- [
- -0.1298980861902237
- ]
- ]
- ],
- [
- [
- [
- -0.10687495023012161
- ]
- ]
- ],
- [
- [
- [
- -0.08376867324113846
- ]
- ]
- ],
- [
- [
- [
- -0.09650436788797379
- ]
- ]
- ],
- [
- [
- [
- -0.15872253477573395
- ]
- ]
- ],
- [
- [
- [
- -0.05739618092775345
- ]
- ]
- ],
- [
- [
- [
- -0.10206307470798492
- ]
- ]
- ],
- [
- [
- [
- -0.0757237896323204
- ]
- ]
- ],
- [
- [
- [
- -0.138471782207489
- ]
- ]
- ],
- [
- [
- [
- -0.08101782947778702
- ]
- ]
- ],
- [
- [
- [
- -0.09513328969478607
- ]
- ]
- ],
- [
- [
- [
- -0.1214001402258873
- ]
- ]
- ],
- [
- [
- [
- -0.12963572144508362
- ]
- ]
- ],
- [
- [
- [
- -0.10652393847703934
- ]
- ]
- ],
- [
- [
- [
- -0.11833404004573822
- ]
- ]
- ],
- [
- [
- [
- -0.16243892908096313
- ]
- ]
- ],
- [
- [
- [
- -0.12443374842405319
- ]
- ]
- ],
- [
- [
- [
- -0.14844144880771637
- ]
- ]
- ],
- [
- [
- [
- -0.13088823854923248
- ]
- ]
- ],
- [
- [
- [
- -0.09051889181137085
- ]
- ]
- ],
- [
- [
- [
- -0.11792514473199844
- ]
- ]
- ],
- [
- [
- [
- -0.1230434700846672
- ]
- ]
- ],
- [
- [
- [
- -0.08785402029752731
- ]
- ]
- ],
- [
- [
- [
- -0.09404657781124115
- ]
- ]
- ],
- [
- [
- [
- -0.1133490577340126
- ]
- ]
- ],
- [
- [
- [
- -0.1328604519367218
- ]
- ]
- ],
- [
- [
- [
- -0.1510791778564453
- ]
- ]
- ],
- [
- [
- [
- -0.13621921837329865
- ]
- ]
- ],
- [
- [
- [
- -0.06557561457157135
- ]
- ]
- ],
- [
- [
- [
- -0.09528466314077377
- ]
- ]
- ],
- [
- [
- [
- -0.104777492582798
- ]
- ]
- ],
- [
- [
- [
- -0.08744222670793533
- ]
- ]
- ],
- [
- [
- [
- -0.09224014729261398
- ]
- ]
- ],
- [
- [
- [
- -0.083940289914608
- ]
- ]
- ],
- [
- [
- [
- -0.0899057537317276
- ]
- ]
- ],
- [
- [
- [
- -0.11091737449169159
- ]
- ]
- ],
- [
- [
- [
- -0.12203501909971237
- ]
- ]
- ],
- [
- [
- [
- -0.09522687643766403
- ]
- ]
- ],
- [
- [
- [
- -0.08990632742643356
- ]
- ]
- ],
- [
- [
- [
- -0.105129674077034
- ]
- ]
- ],
- [
- [
- [
- -0.12898948788642883
- ]
- ]
- ],
- [
- [
- [
- -0.11810367554426193
- ]
- ]
- ],
- [
- [
- [
- -0.07536670565605164
- ]
- ]
- ],
- [
- [
- [
- -0.13550272583961487
- ]
- ]
- ],
- [
- [
- [
- -0.10213346034288406
- ]
- ]
- ],
- [
- [
- [
- -0.1340252161026001
- ]
- ]
- ],
- [
- [
- [
- -0.12218368053436279
- ]
- ]
- ],
- [
- [
- [
- -0.12239748239517212
- ]
- ]
- ],
- [
- [
- [
- -0.10598905384540558
- ]
- ]
- ],
- [
- [
- [
- -0.10114075243473053
- ]
- ]
- ],
- [
- [
- [
- -0.1151387095451355
- ]
- ]
- ],
- [
- [
- [
- -0.1355503499507904
- ]
- ]
- ],
- [
- [
- [
- -0.07377024739980698
- ]
- ]
- ],
- [
- [
- [
- -0.10825680196285248
- ]
- ]
- ],
- [
- [
- [
- -0.10680516809225082
- ]
- ]
- ],
- [
- [
- [
- -0.0868532583117485
- ]
- ]
- ],
- [
- [
- [
- -0.09549140185117722
- ]
- ]
- ],
- [
- [
- [
- -0.11461697518825531
- ]
- ]
- ],
- [
- [
- [
- -0.10857164859771729
- ]
- ]
- ],
- [
- [
- [
- -0.15750905871391296
- ]
- ]
- ],
- [
- [
- [
- -0.10699065029621124
- ]
- ]
- ],
- [
- [
- [
- -0.1181691586971283
- ]
- ]
- ],
- [
- [
- [
- -0.11944794654846191
- ]
- ]
- ],
- [
- [
- [
- -0.09277509152889252
- ]
- ]
- ],
- [
- [
- [
- -0.1027052029967308
- ]
- ]
- ],
- [
- [
- [
- -0.07269895821809769
- ]
- ]
- ],
- [
- [
- [
- -0.08873871713876724
- ]
- ]
- ],
- [
- [
- [
- -0.11396294087171555
- ]
- ]
- ],
- [
- [
- [
- -0.11556888371706009
- ]
- ]
- ],
- [
- [
- [
- -0.10613702237606049
- ]
- ]
- ],
- [
- [
- [
- -0.09969168156385422
- ]
- ]
- ],
- [
- [
- [
- -0.1113915890455246
- ]
- ]
- ],
- [
- [
- [
- -0.10746919363737106
- ]
- ]
- ],
- [
- [
- [
- -0.10264711081981659
- ]
- ]
- ],
- [
- [
- [
- -0.0898546352982521
- ]
- ]
- ],
- [
- [
- [
- -0.13560345768928528
- ]
- ]
- ],
- [
- [
- [
- -0.08533881604671478
- ]
- ]
- ],
- [
- [
- [
- -0.06986482441425323
- ]
- ]
- ],
- [
- [
- [
- -0.09630849957466125
- ]
- ]
- ],
- [
- [
- [
- -0.10000449419021606
- ]
- ]
- ],
- [
- [
- [
- -0.1548929661512375
- ]
- ]
- ],
- [
- [
- [
- -0.06634726375341415
- ]
- ]
- ],
- [
- [
- [
- -0.10305790603160858
- ]
- ]
- ],
- [
- [
- [
- -0.10468778759241104
- ]
- ]
- ],
- [
- [
- [
- -0.0667087733745575
- ]
- ]
- ],
- [
- [
- [
- -0.07508361339569092
- ]
- ]
- ],
- [
- [
- [
- -0.10079582780599594
- ]
- ]
- ],
- [
- [
- [
- -0.11196959763765335
- ]
- ]
- ],
- [
- [
- [
- -0.1695886105298996
- ]
- ]
- ],
- [
- [
- [
- -0.1208585798740387
- ]
- ]
- ],
- [
- [
- [
- -0.14266397058963776
- ]
- ]
- ],
- [
- [
- [
- -0.14265063405036926
- ]
- ]
- ],
- [
- [
- [
- -0.06610866636037827
- ]
- ]
- ],
- [
- [
- [
- -0.13364309072494507
- ]
- ]
- ],
- [
- [
- [
- -0.10709577053785324
- ]
- ]
- ],
- [
- [
- [
- -0.12568259239196777
- ]
- ]
- ],
- [
- [
- [
- -0.1408344805240631
- ]
- ]
- ],
- [
- [
- [
- -0.12547774612903595
- ]
- ]
- ],
- [
- [
- [
- -0.07644420117139816
- ]
- ]
- ],
- [
- [
- [
- -0.12396804243326187
- ]
- ]
- ],
- [
- [
- [
- -0.09364700317382812
- ]
- ]
- ],
- [
- [
- [
- -0.1708587408065796
- ]
- ]
- ],
- [
- [
- [
- -0.09310663491487503
- ]
- ]
- ],
- [
- [
- [
- -0.06397010385990143
- ]
- ]
- ],
- [
- [
- [
- -0.12372168898582458
- ]
- ]
- ],
- [
- [
- [
- -0.13343271613121033
- ]
- ]
- ],
- [
- [
- [
- -0.11750024557113647
- ]
- ]
- ],
- [
- [
- [
- -0.06142254173755646
- ]
- ]
- ],
- [
- [
- [
- -0.07973030209541321
- ]
- ]
- ],
- [
- [
- [
- -0.06345310807228088
- ]
- ]
- ],
- [
- [
- [
- -0.11659856885671616
- ]
- ]
- ],
- [
- [
- [
- -0.09040359407663345
- ]
- ]
- ],
- [
- [
- [
- -0.08466991037130356
- ]
- ]
- ],
- [
- [
- [
- -0.11737503111362457
- ]
- ]
- ],
- [
- [
- [
- -0.1148495301604271
- ]
- ]
- ],
- [
- [
- [
- -0.08879699558019638
- ]
- ]
- ],
- [
- [
- [
- -0.058289237320423126
- ]
- ]
- ],
- [
- [
- [
- -0.1281253546476364
- ]
- ]
- ],
- [
- [
- [
- -0.11916706711053848
- ]
- ]
- ],
- [
- [
- [
- -0.11274290829896927
- ]
- ]
- ],
- [
- [
- [
- -0.13131484389305115
- ]
- ]
- ],
- [
- [
- [
- -0.0746636763215065
- ]
- ]
- ],
- [
- [
- [
- -0.08131582289934158
- ]
- ]
- ],
- [
- [
- [
- -0.07199142128229141
- ]
- ]
- ],
- [
- [
- [
- -0.0668354257941246
- ]
- ]
- ],
- [
- [
- [
- -0.13071003556251526
- ]
- ]
- ],
- [
- [
- [
- -0.09814717620611191
- ]
- ]
- ],
- [
- [
- [
- -0.07950754463672638
- ]
- ]
- ],
- [
- [
- [
- -0.17159637808799744
- ]
- ]
- ],
- [
- [
- [
- -0.10072757303714752
- ]
- ]
- ],
- [
- [
- [
- -0.10858873277902603
- ]
- ]
- ],
- [
- [
- [
- -0.10707148164510727
- ]
- ]
- ],
- [
- [
- [
- -0.10628347843885422
- ]
- ]
- ],
- [
- [
- [
- -0.11523763090372086
- ]
- ]
- ],
- [
- [
- [
- -0.0912754088640213
- ]
- ]
- ],
- [
- [
- [
- -0.14238883554935455
- ]
- ]
- ],
- [
- [
- [
- -0.12185842543840408
- ]
- ]
- ],
- [
- [
- [
- -0.11577854305505753
- ]
- ]
- ],
- [
- [
- [
- -0.09625297784805298
- ]
- ]
- ],
- [
- [
- [
- -0.10200455039739609
- ]
- ]
- ],
- [
- [
- [
- -0.07022039592266083
- ]
- ]
- ],
- [
- [
- [
- -0.10201803594827652
- ]
- ]
- ],
- [
- [
- [
- -0.0629100576043129
- ]
- ]
- ],
- [
- [
- [
- -0.13873344659805298
- ]
- ]
- ],
- [
- [
- [
- -0.14672106504440308
- ]
- ]
- ],
- [
- [
- [
- -0.06021640822291374
- ]
- ]
- ],
- [
- [
- [
- -0.12231196463108063
- ]
- ]
- ],
- [
- [
- [
- -0.1195724681019783
- ]
- ]
- ],
- [
- [
- [
- -0.08019347488880157
- ]
- ]
- ],
- [
- [
- [
- -0.07957106828689575
- ]
- ]
- ],
- [
- [
- [
- -0.21999870240688324
- ]
- ]
- ],
- [
- [
- [
- -0.14249849319458008
- ]
- ]
- ],
- [
- [
- [
- -0.13591790199279785
- ]
- ]
- ],
- [
- [
- [
- -0.08098379522562027
- ]
- ]
- ],
- [
- [
- [
- -0.09181834757328033
- ]
- ]
- ],
- [
- [
- [
- -0.08774899691343307
- ]
- ]
- ],
- [
- [
- [
- -0.08990335464477539
- ]
- ]
- ],
- [
- [
- [
- -0.07508888840675354
- ]
- ]
- ],
- [
- [
- [
- -0.1375122368335724
- ]
- ]
- ],
- [
- [
- [
- -0.20828111469745636
- ]
- ]
- ],
- [
- [
- [
- -0.13707394897937775
- ]
- ]
- ],
- [
- [
- [
- -0.1185675784945488
- ]
- ]
- ],
- [
- [
- [
- -0.08983787894248962
- ]
- ]
- ],
- [
- [
- [
- -0.11345090717077255
- ]
- ]
- ],
- [
- [
- [
- -0.0734454095363617
- ]
- ]
- ],
- [
- [
- [
- -0.10866709798574448
- ]
- ]
- ],
- [
- [
- [
- -0.0892694890499115
- ]
- ]
- ],
- [
- [
- [
- -0.06636480987071991
- ]
- ]
- ],
- [
- [
- [
- -0.0933934822678566
- ]
- ]
- ],
- [
- [
- [
- -0.09067552536725998
- ]
- ]
- ],
- [
- [
- [
- -0.06884029507637024
- ]
- ]
- ],
- [
- [
- [
- -0.151616632938385
- ]
- ]
- ],
- [
- [
- [
- -0.1877824068069458
- ]
- ]
- ],
- [
- [
- [
- -0.1588238626718521
- ]
- ]
- ],
- [
- [
- [
- -0.12537431716918945
- ]
- ]
- ],
- [
- [
- [
- -0.12258077412843704
- ]
- ]
- ],
- [
- [
- [
- -0.13809221982955933
- ]
- ]
- ],
- [
- [
- [
- -0.13199418783187866
- ]
- ]
- ],
- [
- [
- [
- -0.11882352828979492
- ]
- ]
- ],
- [
- [
- [
- -0.12593387067317963
- ]
- ]
- ],
- [
- [
- [
- -0.11099061369895935
- ]
- ]
- ],
- [
- [
- [
- -0.1254315823316574
- ]
- ]
- ],
- [
- [
- [
- -0.09533803910017014
- ]
- ]
- ],
- [
- [
- [
- -0.07976538687944412
- ]
- ]
- ],
- [
- [
- [
- -0.09957624226808548
- ]
- ]
- ],
- [
- [
- [
- -0.13051798939704895
- ]
- ]
- ],
- [
- [
- [
- -0.1162736639380455
- ]
- ]
- ],
- [
- [
- [
- -0.14774557948112488
- ]
- ]
- ],
- [
- [
- [
- -0.08330348879098892
- ]
- ]
- ],
- [
- [
- [
- -0.09584853798151016
- ]
- ]
- ],
- [
- [
- [
- -0.11463061720132828
- ]
- ]
- ],
- [
- [
- [
- -0.04607919231057167
- ]
- ]
- ],
- [
- [
- [
- -0.09859898686408997
- ]
- ]
- ],
- [
- [
- [
- -0.10526446253061295
- ]
- ]
- ],
- [
- [
- [
- -0.08130845427513123
- ]
- ]
- ],
- [
- [
- [
- -0.11744294315576553
- ]
- ]
- ],
- [
- [
- [
- -0.08107966929674149
- ]
- ]
- ],
- [
- [
- [
- -0.06533537805080414
- ]
- ]
- ],
- [
- [
- [
- -0.14844118058681488
- ]
- ]
- ],
- [
- [
- [
- -0.1656751185655594
- ]
- ]
- ],
- [
- [
- [
- -0.0993647649884224
- ]
- ]
- ],
- [
- [
- [
- -0.08890654891729355
- ]
- ]
- ],
- [
- [
- [
- -0.12734279036521912
- ]
- ]
- ],
- [
- [
- [
- -0.062493063509464264
- ]
- ]
- ],
- [
- [
- [
- -0.11376073211431503
- ]
- ]
- ],
- [
- [
- [
- -0.09767380356788635
- ]
- ]
- ],
- [
- [
- [
- -0.09542091190814972
- ]
- ]
- ],
- [
- [
- [
- -0.06378311663866043
- ]
- ]
- ],
- [
- [
- [
- -0.14439824223518372
- ]
- ]
- ],
- [
- [
- [
- -0.13727955520153046
- ]
- ]
- ],
- [
- [
- [
- -0.17133647203445435
- ]
- ]
- ],
- [
- [
- [
- -0.06737971305847168
- ]
- ]
- ],
- [
- [
- [
- -0.15409521758556366
- ]
- ]
- ],
- [
- [
- [
- -0.14044417440891266
- ]
- ]
- ],
- [
- [
- [
- -0.10692892968654633
- ]
- ]
- ],
- [
- [
- [
- -0.08284033834934235
- ]
- ]
- ],
- [
- [
- [
- -0.07837749272584915
- ]
- ]
- ],
- [
- [
- [
- -0.06181102618575096
- ]
- ]
- ],
- [
- [
- [
- -0.08544927090406418
- ]
- ]
- ],
- [
- [
- [
- -0.1516827642917633
- ]
- ]
- ],
- [
- [
- [
- -0.11924028396606445
- ]
- ]
- ],
- [
- [
- [
- -0.13868878781795502
- ]
- ]
- ],
- [
- [
- [
- -0.1087103933095932
- ]
- ]
- ],
- [
- [
- [
- -0.15110540390014648
- ]
- ]
- ],
- [
- [
- [
- -0.11307187378406525
- ]
- ]
- ],
- [
- [
- [
- -0.12772177159786224
- ]
- ]
- ],
- [
- [
- [
- -0.057609327137470245
- ]
- ]
- ],
- [
- [
- [
- -0.12486418336629868
- ]
- ]
- ],
- [
- [
- [
- -0.10906631499528885
- ]
- ]
- ],
- [
- [
- [
- -0.11926053464412689
- ]
- ]
- ],
- [
- [
- [
- -0.12476663291454315
- ]
- ]
- ],
- [
- [
- [
- -0.09853202104568481
- ]
- ]
- ],
- [
- [
- [
- -0.11345241218805313
- ]
- ]
- ],
- [
- [
- [
- -0.11234209686517715
- ]
- ]
- ],
- [
- [
- [
- -0.1130700632929802
- ]
- ]
- ],
- [
- [
- [
- -0.11143561452627182
- ]
- ]
- ],
- [
- [
- [
- -0.11652734130620956
- ]
- ]
- ],
- [
- [
- [
- -0.10695341974496841
- ]
- ]
- ],
- [
- [
- [
- -0.11669100821018219
- ]
- ]
- ],
- [
- [
- [
- -0.10790704935789108
- ]
- ]
- ],
- [
- [
- [
- -0.0921764001250267
- ]
- ]
- ],
- [
- [
- [
- -0.07292458415031433
- ]
- ]
- ],
- [
- [
- [
- -0.10066795349121094
- ]
- ]
- ],
- [
- [
- [
- -0.13977308571338654
- ]
- ]
- ],
- [
- [
- [
- -0.1045520082116127
- ]
- ]
- ],
- [
- [
- [
- -0.06537806242704391
- ]
- ]
- ],
- [
- [
- [
- -0.10629036277532578
- ]
- ]
- ],
- [
- [
- [
- -0.08034893125295639
- ]
- ]
- ],
- [
- [
- [
- -0.07865703850984573
- ]
- ]
- ],
- [
- [
- [
- -0.10350487381219864
- ]
- ]
- ],
- [
- [
- [
- -0.08512765169143677
- ]
- ]
- ],
- [
- [
- [
- -0.1171247586607933
- ]
- ]
- ],
- [
- [
- [
- -0.11434537917375565
- ]
- ]
- ],
- [
- [
- [
- -0.07044143974781036
- ]
- ]
- ],
- [
- [
- [
- -0.06195991113781929
- ]
- ]
- ],
- [
- [
- [
- -0.157009556889534
- ]
- ]
- ],
- [
- [
- [
- -0.12280819565057755
- ]
- ]
- ],
- [
- [
- [
- -0.08921337127685547
- ]
- ]
- ],
- [
- [
- [
- -0.10311742126941681
- ]
- ]
- ],
- [
- [
- [
- -0.13863585889339447
- ]
- ]
- ],
- [
- [
- [
- -0.16576045751571655
- ]
- ]
- ],
- [
- [
- [
- -0.07499579340219498
- ]
- ]
- ],
- [
- [
- [
- -0.14102667570114136
- ]
- ]
- ],
- [
- [
- [
- -0.11613451689481735
- ]
- ]
- ],
- [
- [
- [
- -0.1304466426372528
- ]
- ]
- ],
- [
- [
- [
- -0.08585295081138611
- ]
- ]
- ],
- [
- [
- [
- -0.1462370902299881
- ]
- ]
- ],
- [
- [
- [
- -0.08896096795797348
- ]
- ]
- ],
- [
- [
- [
- -0.06690352410078049
- ]
- ]
- ],
- [
- [
- [
- -0.12137788534164429
- ]
- ]
- ],
- [
- [
- [
- -0.12798137962818146
- ]
- ]
- ],
- [
- [
- [
- -0.10512511432170868
- ]
- ]
- ],
- [
- [
- [
- -0.0713142603635788
- ]
- ]
- ],
- [
- [
- [
- -0.12194234877824783
- ]
- ]
- ],
- [
- [
- [
- -0.08854077011346817
- ]
- ]
- ],
- [
- [
- [
- -0.09003933519124985
- ]
- ]
- ],
- [
- [
- [
- -0.07966115325689316
- ]
- ]
- ],
- [
- [
- [
- -0.09571016579866409
- ]
- ]
- ],
- [
- [
- [
- -0.1239721029996872
- ]
- ]
- ],
- [
- [
- [
- -0.11278075724840164
- ]
- ]
- ],
- [
- [
- [
- -0.17209844291210175
- ]
- ]
- ],
- [
- [
- [
- -0.11157318949699402
- ]
- ]
- ],
- [
- [
- [
- -0.13838371634483337
- ]
- ]
- ],
- [
- [
- [
- -0.12343267351388931
- ]
- ]
- ],
- [
- [
- [
- -0.0901406854391098
- ]
- ]
- ],
- [
- [
- [
- -0.12942856550216675
- ]
- ]
- ],
- [
- [
- [
- -0.09049946069717407
- ]
- ]
- ],
- [
- [
- [
- -0.10690564662218094
- ]
- ]
- ],
- [
- [
- [
- -0.13093684613704681
- ]
- ]
- ],
- [
- [
- [
- -0.15335078537464142
- ]
- ]
- ],
- [
- [
- [
- -0.0976998582482338
- ]
- ]
- ],
- [
- [
- [
- -0.10199800133705139
- ]
- ]
- ],
- [
- [
- [
- -0.14030978083610535
- ]
- ]
- ],
- [
- [
- [
- -0.10375906527042389
- ]
- ]
- ],
- [
- [
- [
- -0.06775738298892975
- ]
- ]
- ],
- [
- [
- [
- -0.06433076411485672
- ]
- ]
- ],
- [
- [
- [
- -0.1318317949771881
- ]
- ]
- ],
- [
- [
- [
- -0.12705092132091522
- ]
- ]
- ],
- [
- [
- [
- -0.10864292085170746
- ]
- ]
- ],
- [
- [
- [
- -0.09662646800279617
- ]
- ]
- ],
- [
- [
- [
- -0.09309905767440796
- ]
- ]
- ],
- [
- [
- [
- -0.11181088536977768
- ]
- ]
- ],
- [
- [
- [
- -0.0969972312450409
- ]
- ]
- ],
- [
- [
- [
- -0.16642752289772034
- ]
- ]
- ],
- [
- [
- [
- -0.0986553430557251
- ]
- ]
- ],
- [
- [
- [
- -0.1348530501127243
- ]
- ]
- ],
- [
- [
- [
- -0.10829022526741028
- ]
- ]
- ],
- [
- [
- [
- -0.11607635766267776
- ]
- ]
- ],
- [
- [
- [
- -0.05848212167620659
- ]
- ]
- ],
- [
- [
- [
- -0.12435334175825119
- ]
- ]
- ],
- [
- [
- [
- -0.07449059188365936
- ]
- ]
- ],
- [
- [
- [
- -0.1153937578201294
- ]
- ]
- ],
- [
- [
- [
- -0.07182100415229797
- ]
- ]
- ],
- [
- [
- [
- -0.10656853765249252
- ]
- ]
- ],
- [
- [
- [
- -0.08254068344831467
- ]
- ]
- ],
- [
- [
- [
- -0.10722311586141586
- ]
- ]
- ],
- [
- [
- [
- -0.12075849622488022
- ]
- ]
- ],
- [
- [
- [
- -0.14533479511737823
- ]
- ]
- ],
- [
- [
- [
- -0.12118887156248093
- ]
- ]
- ],
- [
- [
- [
- -0.08189192414283752
- ]
- ]
- ],
- [
- [
- [
- -0.12744316458702087
- ]
- ]
- ],
- [
- [
- [
- -0.06815888732671738
- ]
- ]
- ],
- [
- [
- [
- -0.05499519407749176
- ]
- ]
- ],
- [
- [
- [
- -0.08273191004991531
- ]
- ]
- ],
- [
- [
- [
- -0.1239996924996376
- ]
- ]
- ],
- [
- [
- [
- -0.1302541047334671
- ]
- ]
- ],
- [
- [
- [
- -0.10206776112318039
- ]
- ]
- ],
- [
- [
- [
- -0.11280180513858795
- ]
- ]
- ],
- [
- [
- [
- -0.16003477573394775
- ]
- ]
- ],
- [
- [
- [
- -0.09657474607229233
- ]
- ]
- ],
- [
- [
- [
- -0.14419624209403992
- ]
- ]
- ],
- [
- [
- [
- -0.1029721349477768
- ]
- ]
- ],
- [
- [
- [
- -0.09688390046358109
- ]
- ]
- ],
- [
- [
- [
- -0.12920254468917847
- ]
- ]
- ],
- [
- [
- [
- -0.10150521993637085
- ]
- ]
- ],
- [
- [
- [
- -0.07813427597284317
- ]
- ]
- ],
- [
- [
- [
- -0.11106064915657043
- ]
- ]
- ],
- [
- [
- [
- -0.09061180055141449
- ]
- ]
- ],
- [
- [
- [
- -0.11911047995090485
- ]
- ]
- ],
- [
- [
- [
- -0.1484537422657013
- ]
- ]
- ],
- [
- [
- [
- -0.10584958642721176
- ]
- ]
- ],
- [
- [
- [
- -0.10034807026386261
- ]
- ]
- ],
- [
- [
- [
- -0.10963086038827896
- ]
- ]
- ],
- [
- [
- [
- -0.13250266015529633
- ]
- ]
- ],
- [
- [
- [
- -0.07636609673500061
- ]
- ]
- ],
- [
- [
- [
- -0.11532587558031082
- ]
- ]
- ],
- [
- [
- [
- -0.09939517080783844
- ]
- ]
- ],
- [
- [
- [
- -0.09374889731407166
- ]
- ]
- ],
- [
- [
- [
- -0.09962423145771027
- ]
- ]
- ],
- [
- [
- [
- -0.12683236598968506
- ]
- ]
- ],
- [
- [
- [
- -0.14499175548553467
- ]
- ]
- ],
- [
- [
- [
- -0.09692131727933884
- ]
- ]
- ],
- [
- [
- [
- -0.08210159093141556
- ]
- ]
- ],
- [
- [
- [
- -0.09275905042886734
- ]
- ]
- ],
- [
- [
- [
- -0.10740861296653748
- ]
- ]
- ],
- [
- [
- [
- -0.08431559801101685
- ]
- ]
- ],
- [
- [
- [
- -0.12102232128381729
- ]
- ]
- ],
- [
- [
- [
- -0.11440484970808029
- ]
- ]
- ],
- [
- [
- [
- -0.07652193307876587
- ]
- ]
- ],
- [
- [
- [
- -0.12430684268474579
- ]
- ]
- ],
- [
- [
- [
- -0.12887327373027802
- ]
- ]
- ],
- [
- [
- [
- -0.15724483132362366
- ]
- ]
- ],
- [
- [
- [
- -0.19706451892852783
- ]
- ]
- ],
- [
- [
- [
- -0.09659164398908615
- ]
- ]
- ],
- [
- [
- [
- -0.09968344122171402
- ]
- ]
- ],
- [
- [
- [
- -0.1069020926952362
- ]
- ]
- ],
- [
- [
- [
- -0.132303386926651
- ]
- ]
- ],
- [
- [
- [
- -0.1000232845544815
- ]
- ]
- ],
- [
- [
- [
- -0.10618573427200317
- ]
- ]
- ],
- [
- [
- [
- -0.12095846235752106
- ]
- ]
- ],
- [
- [
- [
- -0.16074657440185547
- ]
- ]
- ],
- [
- [
- [
- -0.16995839774608612
- ]
- ]
- ],
- [
- [
- [
- -0.08310679346323013
- ]
- ]
- ],
- [
- [
- [
- -0.15833669900894165
- ]
- ]
- ],
- [
- [
- [
- -0.10211434960365295
- ]
- ]
- ],
- [
- [
- [
- -0.11701148748397827
- ]
- ]
- ],
- [
- [
- [
- -0.11484240740537643
- ]
- ]
- ],
- [
- [
- [
- -0.11740206182003021
- ]
- ]
- ],
- [
- [
- [
- -0.06433029472827911
- ]
- ]
- ],
- [
- [
- [
- -0.10022271424531937
- ]
- ]
- ],
- [
- [
- [
- -0.13317076861858368
- ]
- ]
- ],
- [
- [
- [
- -0.09578404575586319
- ]
- ]
- ],
- [
- [
- [
- -0.08095664530992508
- ]
- ]
- ],
- [
- [
- [
- -0.1446799486875534
- ]
- ]
- ],
- [
- [
- [
- -0.12812836468219757
- ]
- ]
- ],
- [
- [
- [
- -0.11472494155168533
- ]
- ]
- ],
- [
- [
- [
- -0.08412172645330429
- ]
- ]
- ],
- [
- [
- [
- -0.08782412111759186
- ]
- ]
- ],
- [
- [
- [
- -0.10058581084012985
- ]
- ]
- ],
- [
- [
- [
- -0.08729946613311768
- ]
- ]
- ],
- [
- [
- [
- -0.10171807557344437
- ]
- ]
- ],
- [
- [
- [
- -0.07877551764249802
- ]
- ]
- ],
- [
- [
- [
- -0.11170919984579086
- ]
- ]
- ],
- [
- [
- [
- -0.06904307752847672
- ]
- ]
- ],
- [
- [
- [
- -0.09130816906690598
- ]
- ]
- ],
- [
- [
- [
- -0.13287514448165894
- ]
- ]
- ],
- [
- [
- [
- -0.12513460218906403
- ]
- ]
- ],
- [
- [
- [
- -0.07841340452432632
- ]
- ]
- ],
- [
- [
- [
- -0.10529513657093048
- ]
- ]
- ],
- [
- [
- [
- -0.09808158874511719
- ]
- ]
- ],
- [
- [
- [
- -0.07079874724149704
- ]
- ]
- ],
- [
- [
- [
- -0.10425189882516861
- ]
- ]
- ],
- [
- [
- [
- -0.08621910214424133
- ]
- ]
- ],
- [
- [
- [
- -0.16245853900909424
- ]
- ]
- ],
- [
- [
- [
- -0.10689462721347809
- ]
- ]
- ],
- [
- [
- [
- -0.12411796301603317
- ]
- ]
- ],
- [
- [
- [
- -0.06720659881830215
- ]
- ]
- ],
- [
- [
- [
- -0.08337591588497162
- ]
- ]
- ],
- [
- [
- [
- -0.05607900395989418
- ]
- ]
- ],
- [
- [
- [
- -0.10015270113945007
- ]
- ]
- ],
- [
- [
- [
- -0.13322913646697998
- ]
- ]
- ],
- [
- [
- [
- -0.10524462163448334
- ]
- ]
- ],
- [
- [
- [
- -0.10758447647094727
- ]
- ]
- ],
- [
- [
- [
- -0.0882074162364006
- ]
- ]
- ],
- [
- [
- [
- -0.07260526716709137
- ]
- ]
- ],
- [
- [
- [
- -0.06753478199243546
- ]
- ]
- ],
- [
- [
- [
- -0.10443416237831116
- ]
- ]
- ],
- [
- [
- [
- -0.09588133543729782
- ]
- ]
- ],
- [
- [
- [
- -0.12183008342981339
- ]
- ]
- ],
- [
- [
- [
- -0.112009197473526
- ]
- ]
- ],
- [
- [
- [
- -0.14260084927082062
- ]
- ]
- ],
- [
- [
- [
- -0.09019289910793304
- ]
- ]
- ],
- [
- [
- [
- -0.06517241150140762
- ]
- ]
- ],
- [
- [
- [
- -0.08728966116905212
- ]
- ]
- ],
- [
- [
- [
- -0.10962951183319092
- ]
- ]
- ],
- [
- [
- [
- -0.17001551389694214
- ]
- ]
- ],
- [
- [
- [
- -0.0975918248295784
- ]
- ]
- ],
- [
- [
- [
- -0.12416315823793411
- ]
- ]
- ],
- [
- [
- [
- -0.09265103191137314
- ]
- ]
- ],
- [
- [
- [
- -0.1455775946378708
- ]
- ]
- ],
- [
- [
- [
- -0.1418238878250122
- ]
- ]
- ],
- [
- [
- [
- -0.131975919008255
- ]
- ]
- ],
- [
- [
- [
- -0.11731333285570145
- ]
- ]
- ],
- [
- [
- [
- -0.11624395847320557
- ]
- ]
- ],
- [
- [
- [
- -0.10047025978565216
- ]
- ]
- ],
- [
- [
- [
- -0.06697341054677963
- ]
- ]
- ],
- [
- [
- [
- -0.07945547252893448
- ]
- ]
- ],
- [
- [
- [
- -0.07362378388643265
- ]
- ]
- ],
- [
- [
- [
- -0.12403374910354614
- ]
- ]
- ],
- [
- [
- [
- -0.07933995872735977
- ]
- ]
- ],
- [
- [
- [
- -0.11370373517274857
- ]
- ]
- ],
- [
- [
- [
- -0.07922452688217163
- ]
- ]
- ],
- [
- [
- [
- -0.10415773093700409
- ]
- ]
- ],
- [
- [
- [
- -0.08014906197786331
- ]
- ]
- ],
- [
- [
- [
- -0.06317853927612305
- ]
- ]
- ],
- [
- [
- [
- -0.14078855514526367
- ]
- ]
- ],
- [
- [
- [
- -0.049417994916439056
- ]
- ]
- ],
- [
- [
- [
- -0.10651809722185135
- ]
- ]
- ],
- [
- [
- [
- -0.07095514237880707
- ]
- ]
- ],
- [
- [
- [
- -0.10557207465171814
- ]
- ]
- ],
- [
- [
- [
- -0.09825211763381958
- ]
- ]
- ],
- [
- [
- [
- -0.11618512123823166
- ]
- ]
- ],
- [
- [
- [
- -0.136461541056633
- ]
- ]
- ],
- [
- [
- [
- -0.0798511654138565
- ]
- ]
- ],
- [
- [
- [
- -0.17682094871997833
- ]
- ]
- ],
- [
- [
- [
- -0.09722670912742615
- ]
- ]
- ],
- [
- [
- [
- -0.09248413145542145
- ]
- ]
- ],
- [
- [
- [
- -0.06719827651977539
- ]
- ]
- ],
- [
- [
- [
- -0.09774357080459595
- ]
- ]
- ],
- [
- [
- [
- -0.16649140417575836
- ]
- ]
- ],
- [
- [
- [
- -0.11716952174901962
- ]
- ]
- ],
- [
- [
- [
- -0.11738277971744537
- ]
- ]
- ],
- [
- [
- [
- -0.10370578616857529
- ]
- ]
- ],
- [
- [
- [
- -0.09955193847417831
- ]
- ]
- ],
- [
- [
- [
- -0.08525557070970535
- ]
- ]
- ],
- [
- [
- [
- -0.09301915764808655
- ]
- ]
- ],
- [
- [
- [
- -0.11662902683019638
- ]
- ]
- ],
- [
- [
- [
- -0.1170889362692833
- ]
- ]
- ],
- [
- [
- [
- -0.14079943299293518
- ]
- ]
- ],
- [
- [
- [
- -0.07206206768751144
- ]
- ]
- ],
- [
- [
- [
- -0.13919976353645325
- ]
- ]
- ],
- [
- [
- [
- -0.10727459192276001
- ]
- ]
- ],
- [
- [
- [
- -0.10635294020175934
- ]
- ]
- ],
- [
- [
- [
- -0.07272119075059891
- ]
- ]
- ],
- [
- [
- [
- -0.10634204000234604
- ]
- ]
- ],
- [
- [
- [
- -0.10939183086156845
- ]
- ]
- ],
- [
- [
- [
- -0.12368644773960114
- ]
- ]
- ],
- [
- [
- [
- -0.0583941675722599
- ]
- ]
- ],
- [
- [
- [
- -0.1759897768497467
- ]
- ]
- ],
- [
- [
- [
- -0.07685467600822449
- ]
- ]
- ],
- [
- [
- [
- -0.09946926683187485
- ]
- ]
- ],
- [
- [
- [
- -0.11418312788009644
- ]
- ]
- ],
- [
- [
- [
- -0.11486251652240753
- ]
- ]
- ],
- [
- [
- [
- -0.11153148859739304
- ]
- ]
- ],
- [
- [
- [
- -0.12919680774211884
- ]
- ]
- ],
- [
- [
- [
- -0.11865189671516418
- ]
- ]
- ],
- [
- [
- [
- -0.10118752717971802
- ]
- ]
- ],
- [
- [
- [
- -0.09533622860908508
- ]
- ]
- ],
- [
- [
- [
- -0.1148749366402626
- ]
- ]
- ],
- [
- [
- [
- -0.13439790904521942
- ]
- ]
- ],
- [
- [
- [
- -0.17384758591651917
- ]
- ]
- ],
- [
- [
- [
- -0.09122811257839203
- ]
- ]
- ],
- [
- [
- [
- -0.15685723721981049
- ]
- ]
- ],
- [
- [
- [
- -0.19040605425834656
- ]
- ]
- ],
- [
- [
- [
- -0.06348840892314911
- ]
- ]
- ],
- [
- [
- [
- -0.06313139945268631
- ]
- ]
- ],
- [
- [
- [
- -0.139471635222435
- ]
- ]
- ],
- [
- [
- [
- -0.15336716175079346
- ]
- ]
- ],
- [
- [
- [
- -0.36989083886146545
- ]
- ]
- ],
- [
- [
- [
- -0.13796231150627136
- ]
- ]
- ],
- [
- [
- [
- -0.07850717008113861
- ]
- ]
- ],
- [
- [
- [
- -0.0968884751200676
- ]
- ]
- ],
- [
- [
- [
- -0.13210529088974
- ]
- ]
- ],
- [
- [
- [
- -0.09742090106010437
- ]
- ]
- ],
- [
- [
- [
- -0.12738558650016785
- ]
- ]
- ],
- [
- [
- [
- -0.09732162207365036
- ]
- ]
- ],
- [
- [
- [
- -0.11478330940008163
- ]
- ]
- ],
- [
- [
- [
- -0.13739149272441864
- ]
- ]
- ],
- [
- [
- [
- -0.10063342750072479
- ]
- ]
- ],
- [
- [
- [
- -0.08205841481685638
- ]
- ]
- ],
- [
- [
- [
- -0.11039140820503235
- ]
- ]
- ],
- [
- [
- [
- -0.14770744740962982
- ]
- ]
- ],
- [
- [
- [
- -0.12457761913537979
- ]
- ]
- ],
- [
- [
- [
- -0.10150700062513351
- ]
- ]
- ],
- [
- [
- [
- -0.07471436262130737
- ]
- ]
- ],
- [
- [
- [
- -0.15485762059688568
- ]
- ]
- ],
- [
- [
- [
- -0.058032140135765076
- ]
- ]
- ],
- [
- [
- [
- -0.13998468220233917
- ]
- ]
- ],
- [
- [
- [
- -0.09014527499675751
- ]
- ]
- ],
- [
- [
- [
- -0.08379329741001129
- ]
- ]
- ],
- [
- [
- [
- -0.09356965124607086
- ]
- ]
- ],
- [
- [
- [
- -0.09377752989530563
- ]
- ]
- ],
- [
- [
- [
- -0.12806983292102814
- ]
- ]
- ],
- [
- [
- [
- -0.13670580089092255
- ]
- ]
- ],
- [
- [
- [
- -0.10097579658031464
- ]
- ]
- ],
- [
- [
- [
- -0.09476497769355774
- ]
- ]
- ],
- [
- [
- [
- -0.08515308797359467
- ]
- ]
- ],
- [
- [
- [
- -0.1261972188949585
- ]
- ]
- ],
- [
- [
- [
- -0.09628938138484955
- ]
- ]
- ],
- [
- [
- [
- -0.08974553644657135
- ]
- ]
- ],
- [
- [
- [
- -0.12381140142679214
- ]
- ]
- ],
- [
- [
- [
- -0.12440940737724304
- ]
- ]
- ],
- [
- [
- [
- -0.10332001745700836
- ]
- ]
- ],
- [
- [
- [
- -0.08677545189857483
- ]
- ]
- ],
- [
- [
- [
- -0.14178940653800964
- ]
- ]
- ],
- [
- [
- [
- -0.12892977893352509
- ]
- ]
- ],
- [
- [
- [
- -0.1269225776195526
- ]
- ]
- ],
- [
- [
- [
- -0.11344408988952637
- ]
- ]
- ],
- [
- [
- [
- -0.10470149666070938
- ]
- ]
- ],
- [
- [
- [
- -0.09527155011892319
- ]
- ]
- ],
- [
- [
- [
- -0.1583903431892395
- ]
- ]
- ],
- [
- [
- [
- -0.12105882912874222
- ]
- ]
- ],
- [
- [
- [
- -0.08887576311826706
- ]
- ]
- ],
- [
- [
- [
- -0.12864775955677032
- ]
- ]
- ],
- [
- [
- [
- -0.1241866946220398
- ]
- ]
- ],
- [
- [
- [
- -0.12172083556652069
- ]
- ]
- ],
- [
- [
- [
- -0.11822833865880966
- ]
- ]
- ],
- [
- [
- [
- -0.059088341891765594
- ]
- ]
- ],
- [
- [
- [
- -0.11485522985458374
- ]
- ]
- ],
- [
- [
- [
- -0.11784174293279648
- ]
- ]
- ],
- [
- [
- [
- -0.08596241474151611
- ]
- ]
- ],
- [
- [
- [
- -0.11355813592672348
- ]
- ]
- ],
- [
- [
- [
- -0.10720866173505783
- ]
- ]
- ],
- [
- [
- [
- -0.13082022964954376
- ]
- ]
- ],
- [
- [
- [
- -0.05430592596530914
- ]
- ]
- ],
- [
- [
- [
- -0.06387361884117126
- ]
- ]
- ],
- [
- [
- [
- -0.1571795493364334
- ]
- ]
- ],
- [
- [
- [
- -0.13155889511108398
- ]
- ]
- ],
- [
- [
- [
- -0.12399767339229584
- ]
- ]
- ],
- [
- [
- [
- -0.06066833436489105
- ]
- ]
- ],
- [
- [
- [
- -0.11913734674453735
- ]
- ]
- ],
- [
- [
- [
- -0.08205528557300568
- ]
- ]
- ],
- [
- [
- [
- -0.12855955958366394
- ]
- ]
- ],
- [
- [
- [
- -0.11611414700746536
- ]
- ]
- ],
- [
- [
- [
- -0.10525085031986237
- ]
- ]
- ],
- [
- [
- [
- -0.12315084785223007
- ]
- ]
- ],
- [
- [
- [
- -0.10782132297754288
- ]
- ]
- ],
- [
- [
- [
- -0.07643338292837143
- ]
- ]
- ],
- [
- [
- [
- -0.11941243708133698
- ]
- ]
- ],
- [
- [
- [
- -0.049165986478328705
- ]
- ]
- ],
- [
- [
- [
- -0.09013232588768005
- ]
- ]
- ],
- [
- [
- [
- -0.1361590474843979
- ]
- ]
- ],
- [
- [
- [
- -0.17185167968273163
- ]
- ]
- ],
- [
- [
- [
- -0.0884060487151146
- ]
- ]
- ],
- [
- [
- [
- -0.12548036873340607
- ]
- ]
- ],
- [
- [
- [
- -0.11428655683994293
- ]
- ]
- ],
- [
- [
- [
- -0.08448940515518188
- ]
- ]
- ],
- [
- [
- [
- -0.11143284291028976
- ]
- ]
- ],
- [
- [
- [
- -0.1159742921590805
- ]
- ]
- ],
- [
- [
- [
- -0.11112330853939056
- ]
- ]
- ],
- [
- [
- [
- -0.10374187678098679
- ]
- ]
- ],
- [
- [
- [
- -0.09812138229608536
- ]
- ]
- ],
- [
- [
- [
- -0.11141866445541382
- ]
- ]
- ],
- [
- [
- [
- -0.035040222108364105
- ]
- ]
- ],
- [
- [
- [
- -0.0720009133219719
- ]
- ]
- ],
- [
- [
- [
- -0.1545829325914383
- ]
- ]
- ],
- [
- [
- [
- -0.11717778444290161
- ]
- ]
- ],
- [
- [
- [
- -0.09807708859443665
- ]
- ]
- ],
- [
- [
- [
- -0.08761931955814362
- ]
- ]
- ],
- [
- [
- [
- -0.08958824723958969
- ]
- ]
- ],
- [
- [
- [
- -0.10393743962049484
- ]
- ]
- ],
- [
- [
- [
- -0.10587535053491592
- ]
- ]
- ],
- [
- [
- [
- -0.09248442947864532
- ]
- ]
- ],
- [
- [
- [
- -0.1224096342921257
- ]
- ]
- ],
- [
- [
- [
- -0.11888958513736725
- ]
- ]
- ],
- [
- [
- [
- -0.05579361692070961
- ]
- ]
- ],
- [
- [
- [
- -0.07915809750556946
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.12870028614997864
- ]
- ]
- ],
- [
- [
- [
- 0.10714153945446014
- ]
- ]
- ],
- [
- [
- [
- 0.06963556259870529
- ]
- ]
- ],
- [
- [
- [
- 0.15648068487644196
- ]
- ]
- ],
- [
- [
- [
- 0.08688876032829285
- ]
- ]
- ],
- [
- [
- [
- 0.11347872763872147
- ]
- ]
- ],
- [
- [
- [
- 0.10918533802032471
- ]
- ]
- ],
- [
- [
- [
- 0.0722738653421402
- ]
- ]
- ],
- [
- [
- [
- 0.1348726898431778
- ]
- ]
- ],
- [
- [
- [
- 0.11230529099702835
- ]
- ]
- ],
- [
- [
- [
- 0.08424068242311478
- ]
- ]
- ],
- [
- [
- [
- 0.07912690192461014
- ]
- ]
- ],
- [
- [
- [
- 0.1376967430114746
- ]
- ]
- ],
- [
- [
- [
- 0.14505283534526825
- ]
- ]
- ],
- [
- [
- [
- 0.09644751995801926
- ]
- ]
- ],
- [
- [
- [
- 0.10722948610782623
- ]
- ]
- ],
- [
- [
- [
- 0.1529293954372406
- ]
- ]
- ],
- [
- [
- [
- 0.12349193543195724
- ]
- ]
- ],
- [
- [
- [
- 0.08346318453550339
- ]
- ]
- ],
- [
- [
- [
- 0.1639435738325119
- ]
- ]
- ],
- [
- [
- [
- 0.0728839784860611
- ]
- ]
- ],
- [
- [
- [
- 0.11334294080734253
- ]
- ]
- ],
- [
- [
- [
- 0.1481134295463562
- ]
- ]
- ],
- [
- [
- [
- 0.094202920794487
- ]
- ]
- ],
- [
- [
- [
- 0.13775977492332458
- ]
- ]
- ],
- [
- [
- [
- 0.11387593299150467
- ]
- ]
- ],
- [
- [
- [
- 0.09304003417491913
- ]
- ]
- ],
- [
- [
- [
- 0.09396117180585861
- ]
- ]
- ],
- [
- [
- [
- 0.10136163979768753
- ]
- ]
- ],
- [
- [
- [
- 0.12263055890798569
- ]
- ]
- ],
- [
- [
- [
- 0.0645599290728569
- ]
- ]
- ],
- [
- [
- [
- 0.10768815129995346
- ]
- ]
- ],
- [
- [
- [
- 0.0921766459941864
- ]
- ]
- ],
- [
- [
- [
- 0.12366209179162979
- ]
- ]
- ],
- [
- [
- [
- 0.1667950302362442
- ]
- ]
- ],
- [
- [
- [
- 0.08622563630342484
- ]
- ]
- ],
- [
- [
- [
- 0.11051255464553833
- ]
- ]
- ],
- [
- [
- [
- 0.09718487411737442
- ]
- ]
- ],
- [
- [
- [
- 0.07699333131313324
- ]
- ]
- ],
- [
- [
- [
- 0.1125633642077446
- ]
- ]
- ],
- [
- [
- [
- 0.13340237736701965
- ]
- ]
- ],
- [
- [
- [
- 0.1276392787694931
- ]
- ]
- ],
- [
- [
- [
- 0.12461244314908981
- ]
- ]
- ],
- [
- [
- [
- 0.1340327113866806
- ]
- ]
- ],
- [
- [
- [
- 0.05990930646657944
- ]
- ]
- ],
- [
- [
- [
- 0.11529190093278885
- ]
- ]
- ],
- [
- [
- [
- 0.1316174864768982
- ]
- ]
- ],
- [
- [
- [
- 0.11131871491670609
- ]
- ]
- ],
- [
- [
- [
- 0.10819090157747269
- ]
- ]
- ],
- [
- [
- [
- 0.10952568799257278
- ]
- ]
- ],
- [
- [
- [
- 0.15448276698589325
- ]
- ]
- ],
- [
- [
- [
- 0.11064053326845169
- ]
- ]
- ],
- [
- [
- [
- 0.11023510992527008
- ]
- ]
- ],
- [
- [
- [
- 0.12773847579956055
- ]
- ]
- ],
- [
- [
- [
- 0.08124437183141708
- ]
- ]
- ],
- [
- [
- [
- 0.11720290780067444
- ]
- ]
- ],
- [
- [
- [
- 0.057428739964962006
- ]
- ]
- ],
- [
- [
- [
- 0.10893258452415466
- ]
- ]
- ],
- [
- [
- [
- 0.15313763916492462
- ]
- ]
- ],
- [
- [
- [
- 0.14350463449954987
- ]
- ]
- ],
- [
- [
- [
- 0.16560111939907074
- ]
- ]
- ],
- [
- [
- [
- 0.1283593624830246
- ]
- ]
- ],
- [
- [
- [
- 0.12066451460123062
- ]
- ]
- ],
- [
- [
- [
- 0.09402991086244583
- ]
- ]
- ],
- [
- [
- [
- 0.1024172380566597
- ]
- ]
- ],
- [
- [
- [
- 0.11360916495323181
- ]
- ]
- ],
- [
- [
- [
- 0.06277693063020706
- ]
- ]
- ],
- [
- [
- [
- 0.12359968572854996
- ]
- ]
- ],
- [
- [
- [
- 0.12235646694898605
- ]
- ]
- ],
- [
- [
- [
- 0.10589821636676788
- ]
- ]
- ],
- [
- [
- [
- 0.12047645449638367
- ]
- ]
- ],
- [
- [
- [
- 0.09293464571237564
- ]
- ]
- ],
- [
- [
- [
- 0.1309085488319397
- ]
- ]
- ],
- [
- [
- [
- 0.06503257155418396
- ]
- ]
- ],
- [
- [
- [
- 0.10889942944049835
- ]
- ]
- ],
- [
- [
- [
- 0.12680068612098694
- ]
- ]
- ],
- [
- [
- [
- 0.13506922125816345
- ]
- ]
- ],
- [
- [
- [
- 0.0883713811635971
- ]
- ]
- ],
- [
- [
- [
- 0.11547089368104935
- ]
- ]
- ],
- [
- [
- [
- 0.11305110156536102
- ]
- ]
- ],
- [
- [
- [
- 0.11899257451295853
- ]
- ]
- ],
- [
- [
- [
- 0.11160523444414139
- ]
- ]
- ],
- [
- [
- [
- 0.09167875349521637
- ]
- ]
- ],
- [
- [
- [
- 0.12781548500061035
- ]
- ]
- ],
- [
- [
- [
- 0.12825742363929749
- ]
- ]
- ],
- [
- [
- [
- 0.12645065784454346
- ]
- ]
- ],
- [
- [
- [
- 0.11154492944478989
- ]
- ]
- ],
- [
- [
- [
- 0.09106258302927017
- ]
- ]
- ],
- [
- [
- [
- 0.10912919044494629
- ]
- ]
- ],
- [
- [
- [
- 0.05736716091632843
- ]
- ]
- ],
- [
- [
- [
- 0.148849219083786
- ]
- ]
- ],
- [
- [
- [
- 0.1312556117773056
- ]
- ]
- ],
- [
- [
- [
- 0.04802717640995979
- ]
- ]
- ],
- [
- [
- [
- 0.1001727357506752
- ]
- ]
- ],
- [
- [
- [
- 0.09495502710342407
- ]
- ]
- ],
- [
- [
- [
- 0.10083374381065369
- ]
- ]
- ],
- [
- [
- [
- 0.13820913434028625
- ]
- ]
- ],
- [
- [
- [
- 0.08066865056753159
- ]
- ]
- ],
- [
- [
- [
- 0.08136259764432907
- ]
- ]
- ],
- [
- [
- [
- 0.09368385374546051
- ]
- ]
- ],
- [
- [
- [
- 0.16729788482189178
- ]
- ]
- ],
- [
- [
- [
- 0.0718376636505127
- ]
- ]
- ],
- [
- [
- [
- 0.10577844083309174
- ]
- ]
- ],
- [
- [
- [
- 0.08648005872964859
- ]
- ]
- ],
- [
- [
- [
- 0.09518914669752121
- ]
- ]
- ],
- [
- [
- [
- 0.14617016911506653
- ]
- ]
- ],
- [
- [
- [
- 0.08732638508081436
- ]
- ]
- ],
- [
- [
- [
- 0.08266203850507736
- ]
- ]
- ],
- [
- [
- [
- 0.08526536822319031
- ]
- ]
- ],
- [
- [
- [
- 0.16127175092697144
- ]
- ]
- ],
- [
- [
- [
- 0.1250031739473343
- ]
- ]
- ],
- [
- [
- [
- 0.10387348383665085
- ]
- ]
- ],
- [
- [
- [
- 0.06812668591737747
- ]
- ]
- ],
- [
- [
- [
- 0.07916378974914551
- ]
- ]
- ],
- [
- [
- [
- 0.08262314647436142
- ]
- ]
- ],
- [
- [
- [
- 0.1634415090084076
- ]
- ]
- ],
- [
- [
- [
- 0.08311112970113754
- ]
- ]
- ],
- [
- [
- [
- 0.11503073573112488
- ]
- ]
- ],
- [
- [
- [
- 0.07480606436729431
- ]
- ]
- ],
- [
- [
- [
- 0.17655912041664124
- ]
- ]
- ],
- [
- [
- [
- 0.15234334766864777
- ]
- ]
- ],
- [
- [
- [
- 0.08433038741350174
- ]
- ]
- ],
- [
- [
- [
- 0.09455030411481857
- ]
- ]
- ],
- [
- [
- [
- 0.13404661417007446
- ]
- ]
- ],
- [
- [
- [
- 0.09816620498895645
- ]
- ]
- ],
- [
- [
- [
- 0.0938253402709961
- ]
- ]
- ],
- [
- [
- [
- 0.07785102725028992
- ]
- ]
- ],
- [
- [
- [
- 0.12180755287408829
- ]
- ]
- ],
- [
- [
- [
- 0.2117060124874115
- ]
- ]
- ],
- [
- [
- [
- 0.09603217244148254
- ]
- ]
- ],
- [
- [
- [
- 0.14229048788547516
- ]
- ]
- ],
- [
- [
- [
- 0.1042841300368309
- ]
- ]
- ],
- [
- [
- [
- 0.08274050801992416
- ]
- ]
- ],
- [
- [
- [
- 0.12336533516645432
- ]
- ]
- ],
- [
- [
- [
- 0.07151716947555542
- ]
- ]
- ],
- [
- [
- [
- 0.09369833022356033
- ]
- ]
- ],
- [
- [
- [
- 0.08154797554016113
- ]
- ]
- ],
- [
- [
- [
- 0.12545372545719147
- ]
- ]
- ],
- [
- [
- [
- 0.1162385568022728
- ]
- ]
- ],
- [
- [
- [
- 0.10297057032585144
- ]
- ]
- ],
- [
- [
- [
- 0.11066564172506332
- ]
- ]
- ],
- [
- [
- [
- 0.11516391485929489
- ]
- ]
- ],
- [
- [
- [
- 0.07097022235393524
- ]
- ]
- ],
- [
- [
- [
- 0.12880288064479828
- ]
- ]
- ],
- [
- [
- [
- 0.08523973822593689
- ]
- ]
- ],
- [
- [
- [
- 0.17985135316848755
- ]
- ]
- ],
- [
- [
- [
- 0.07272639125585556
- ]
- ]
- ],
- [
- [
- [
- 0.13267090916633606
- ]
- ]
- ],
- [
- [
- [
- 0.15093471109867096
- ]
- ]
- ],
- [
- [
- [
- 0.0922820046544075
- ]
- ]
- ],
- [
- [
- [
- 0.0769660621881485
- ]
- ]
- ],
- [
- [
- [
- 0.11838088184595108
- ]
- ]
- ],
- [
- [
- [
- 0.11590438336133957
- ]
- ]
- ],
- [
- [
- [
- 0.06964965909719467
- ]
- ]
- ],
- [
- [
- [
- 0.106001116335392
- ]
- ]
- ],
- [
- [
- [
- 0.15034076571464539
- ]
- ]
- ],
- [
- [
- [
- 0.09024682641029358
- ]
- ]
- ],
- [
- [
- [
- 0.10464531183242798
- ]
- ]
- ],
- [
- [
- [
- 0.1007806807756424
- ]
- ]
- ],
- [
- [
- [
- 0.11138787865638733
- ]
- ]
- ],
- [
- [
- [
- 0.12544476985931396
- ]
- ]
- ],
- [
- [
- [
- 0.15017931163311005
- ]
- ]
- ],
- [
- [
- [
- 0.13194024562835693
- ]
- ]
- ],
- [
- [
- [
- 0.16771605610847473
- ]
- ]
- ],
- [
- [
- [
- 0.1401728242635727
- ]
- ]
- ],
- [
- [
- [
- 0.1507565677165985
- ]
- ]
- ],
- [
- [
- [
- 0.12906675040721893
- ]
- ]
- ],
- [
- [
- [
- 0.13872307538986206
- ]
- ]
- ],
- [
- [
- [
- 0.1539493054151535
- ]
- ]
- ],
- [
- [
- [
- 0.09553037583827972
- ]
- ]
- ],
- [
- [
- [
- 0.09447916597127914
- ]
- ]
- ],
- [
- [
- [
- 0.07290205359458923
- ]
- ]
- ],
- [
- [
- [
- 0.10008582472801208
- ]
- ]
- ],
- [
- [
- [
- 0.09933307766914368
- ]
- ]
- ],
- [
- [
- [
- 0.11002664268016815
- ]
- ]
- ],
- [
- [
- [
- 0.05376339331269264
- ]
- ]
- ],
- [
- [
- [
- 0.10620822012424469
- ]
- ]
- ],
- [
- [
- [
- 0.06648481637239456
- ]
- ]
- ],
- [
- [
- [
- 0.11577573418617249
- ]
- ]
- ],
- [
- [
- [
- 0.15340179204940796
- ]
- ]
- ],
- [
- [
- [
- 0.12904247641563416
- ]
- ]
- ],
- [
- [
- [
- 0.09584838896989822
- ]
- ]
- ],
- [
- [
- [
- 0.09873117506504059
- ]
- ]
- ],
- [
- [
- [
- 0.09640708565711975
- ]
- ]
- ],
- [
- [
- [
- 0.1492360681295395
- ]
- ]
- ],
- [
- [
- [
- 0.11389601230621338
- ]
- ]
- ],
- [
- [
- [
- 0.1362534612417221
- ]
- ]
- ],
- [
- [
- [
- 0.08402295410633087
- ]
- ]
- ],
- [
- [
- [
- 0.05689374729990959
- ]
- ]
- ],
- [
- [
- [
- 0.11944304406642914
- ]
- ]
- ],
- [
- [
- [
- 0.09250753372907639
- ]
- ]
- ],
- [
- [
- [
- 0.14122501015663147
- ]
- ]
- ],
- [
- [
- [
- 0.05972130969166756
- ]
- ]
- ],
- [
- [
- [
- 0.13193367421627045
- ]
- ]
- ],
- [
- [
- [
- 0.08210792392492294
- ]
- ]
- ],
- [
- [
- [
- 0.18858683109283447
- ]
- ]
- ],
- [
- [
- [
- 0.10387223213911057
- ]
- ]
- ],
- [
- [
- [
- 0.1371043175458908
- ]
- ]
- ],
- [
- [
- [
- 0.09416444599628448
- ]
- ]
- ],
- [
- [
- [
- 0.10787082463502884
- ]
- ]
- ],
- [
- [
- [
- 0.09027472138404846
- ]
- ]
- ],
- [
- [
- [
- 0.06641899794340134
- ]
- ]
- ],
- [
- [
- [
- 0.14213299751281738
- ]
- ]
- ],
- [
- [
- [
- 0.10173457860946655
- ]
- ]
- ],
- [
- [
- [
- 0.05025773495435715
- ]
- ]
- ],
- [
- [
- [
- 0.0614980049431324
- ]
- ]
- ],
- [
- [
- [
- 0.10282250493764877
- ]
- ]
- ],
- [
- [
- [
- 0.04526874050498009
- ]
- ]
- ],
- [
- [
- [
- 0.10593702644109726
- ]
- ]
- ],
- [
- [
- [
- 0.09994799643754959
- ]
- ]
- ],
- [
- [
- [
- 0.1318366527557373
- ]
- ]
- ],
- [
- [
- [
- 0.0856233462691307
- ]
- ]
- ],
- [
- [
- [
- 0.14180876314640045
- ]
- ]
- ],
- [
- [
- [
- 0.07913100719451904
- ]
- ]
- ],
- [
- [
- [
- 0.10692936927080154
- ]
- ]
- ],
- [
- [
- [
- 0.09222017973661423
- ]
- ]
- ],
- [
- [
- [
- 0.08747600764036179
- ]
- ]
- ],
- [
- [
- [
- 0.10727803409099579
- ]
- ]
- ],
- [
- [
- [
- 0.09745626896619797
- ]
- ]
- ],
- [
- [
- [
- 0.12550599873065948
- ]
- ]
- ],
- [
- [
- [
- 0.06749936193227768
- ]
- ]
- ],
- [
- [
- [
- 0.10046866536140442
- ]
- ]
- ],
- [
- [
- [
- 0.16743804514408112
- ]
- ]
- ],
- [
- [
- [
- 0.12989692389965057
- ]
- ]
- ],
- [
- [
- [
- 0.11224345862865448
- ]
- ]
- ],
- [
- [
- [
- 0.13558915257453918
- ]
- ]
- ],
- [
- [
- [
- 0.060859598219394684
- ]
- ]
- ],
- [
- [
- [
- 0.12250219285488129
- ]
- ]
- ],
- [
- [
- [
- 0.08771271258592606
- ]
- ]
- ],
- [
- [
- [
- 0.08129311352968216
- ]
- ]
- ],
- [
- [
- [
- 0.10531339794397354
- ]
- ]
- ],
- [
- [
- [
- 0.16142383217811584
- ]
- ]
- ],
- [
- [
- [
- 0.09252549707889557
- ]
- ]
- ],
- [
- [
- [
- 0.12299011647701263
- ]
- ]
- ],
- [
- [
- [
- 0.10980292409658432
- ]
- ]
- ],
- [
- [
- [
- 0.07939561456441879
- ]
- ]
- ],
- [
- [
- [
- 0.10035314410924911
- ]
- ]
- ],
- [
- [
- [
- 0.16482359170913696
- ]
- ]
- ],
- [
- [
- [
- 0.08297896385192871
- ]
- ]
- ],
- [
- [
- [
- 0.10043513774871826
- ]
- ]
- ],
- [
- [
- [
- 0.11459547281265259
- ]
- ]
- ],
- [
- [
- [
- 0.06620358675718307
- ]
- ]
- ],
- [
- [
- [
- 0.15834718942642212
- ]
- ]
- ],
- [
- [
- [
- 0.09908001869916916
- ]
- ]
- ],
- [
- [
- [
- 0.11642792075872421
- ]
- ]
- ],
- [
- [
- [
- 0.10998696833848953
- ]
- ]
- ],
- [
- [
- [
- 0.10858519375324249
- ]
- ]
- ],
- [
- [
- [
- 0.08414836972951889
- ]
- ]
- ],
- [
- [
- [
- 0.0835404247045517
- ]
- ]
- ],
- [
- [
- [
- 0.13274939358234406
- ]
- ]
- ],
- [
- [
- [
- 0.11507917940616608
- ]
- ]
- ],
- [
- [
- [
- 0.09135919064283371
- ]
- ]
- ],
- [
- [
- [
- 0.09261520951986313
- ]
- ]
- ],
- [
- [
- [
- 0.07599399983882904
- ]
- ]
- ],
- [
- [
- [
- 0.09561667591333389
- ]
- ]
- ],
- [
- [
- [
- 0.06392333656549454
- ]
- ]
- ],
- [
- [
- [
- 0.1560612916946411
- ]
- ]
- ],
- [
- [
- [
- 0.1354973018169403
- ]
- ]
- ],
- [
- [
- [
- 0.0950012132525444
- ]
- ]
- ],
- [
- [
- [
- 0.07634959369897842
- ]
- ]
- ],
- [
- [
- [
- 0.11306571215391159
- ]
- ]
- ],
- [
- [
- [
- 0.12356392294168472
- ]
- ]
- ],
- [
- [
- [
- 0.1005362793803215
- ]
- ]
- ],
- [
- [
- [
- 0.08982517570257187
- ]
- ]
- ],
- [
- [
- [
- 0.10034646093845367
- ]
- ]
- ],
- [
- [
- [
- 0.11808118969202042
- ]
- ]
- ],
- [
- [
- [
- 0.11204159259796143
- ]
- ]
- ],
- [
- [
- [
- 0.14139938354492188
- ]
- ]
- ],
- [
- [
- [
- 0.0969185084104538
- ]
- ]
- ],
- [
- [
- [
- 0.06916318088769913
- ]
- ]
- ],
- [
- [
- [
- 0.11682108789682388
- ]
- ]
- ],
- [
- [
- [
- 0.12082896381616592
- ]
- ]
- ],
- [
- [
- [
- 0.07677620649337769
- ]
- ]
- ],
- [
- [
- [
- 0.05724450200796127
- ]
- ]
- ],
- [
- [
- [
- 0.1137750968337059
- ]
- ]
- ],
- [
- [
- [
- 0.09354895353317261
- ]
- ]
- ],
- [
- [
- [
- 0.12027541548013687
- ]
- ]
- ],
- [
- [
- [
- 0.11937037110328674
- ]
- ]
- ],
- [
- [
- [
- 0.0577746145427227
- ]
- ]
- ],
- [
- [
- [
- 0.0974879264831543
- ]
- ]
- ],
- [
- [
- [
- 0.08221512287855148
- ]
- ]
- ],
- [
- [
- [
- 0.1438351571559906
- ]
- ]
- ],
- [
- [
- [
- 0.07963304221630096
- ]
- ]
- ],
- [
- [
- [
- 0.08895023167133331
- ]
- ]
- ],
- [
- [
- [
- 0.22465604543685913
- ]
- ]
- ],
- [
- [
- [
- 0.11721932142972946
- ]
- ]
- ],
- [
- [
- [
- 0.10774079710245132
- ]
- ]
- ],
- [
- [
- [
- 0.09490944445133209
- ]
- ]
- ],
- [
- [
- [
- 0.14025434851646423
- ]
- ]
- ],
- [
- [
- [
- 0.1466863453388214
- ]
- ]
- ],
- [
- [
- [
- 0.08903222531080246
- ]
- ]
- ],
- [
- [
- [
- 0.057088807225227356
- ]
- ]
- ],
- [
- [
- [
- 0.09786785393953323
- ]
- ]
- ],
- [
- [
- [
- 0.1043468564748764
- ]
- ]
- ],
- [
- [
- [
- 0.09294959157705307
- ]
- ]
- ],
- [
- [
- [
- 0.09332462400197983
- ]
- ]
- ],
- [
- [
- [
- 0.06211674213409424
- ]
- ]
- ],
- [
- [
- [
- 0.13530750572681427
- ]
- ]
- ],
- [
- [
- [
- 0.08800535649061203
- ]
- ]
- ],
- [
- [
- [
- 0.0869571790099144
- ]
- ]
- ],
- [
- [
- [
- 0.11146408319473267
- ]
- ]
- ],
- [
- [
- [
- 0.12911109626293182
- ]
- ]
- ],
- [
- [
- [
- 0.0921739786863327
- ]
- ]
- ],
- [
- [
- [
- 0.13804873824119568
- ]
- ]
- ],
- [
- [
- [
- 0.10810303688049316
- ]
- ]
- ],
- [
- [
- [
- 0.09252799302339554
- ]
- ]
- ],
- [
- [
- [
- 0.23380720615386963
- ]
- ]
- ],
- [
- [
- [
- 0.07780127227306366
- ]
- ]
- ],
- [
- [
- [
- 0.1777135729789734
- ]
- ]
- ],
- [
- [
- [
- 0.14629431068897247
- ]
- ]
- ],
- [
- [
- [
- 0.09951049089431763
- ]
- ]
- ],
- [
- [
- [
- 0.11064599454402924
- ]
- ]
- ],
- [
- [
- [
- 0.07137824594974518
- ]
- ]
- ],
- [
- [
- [
- 0.11060818284749985
- ]
- ]
- ],
- [
- [
- [
- 0.08341861516237259
- ]
- ]
- ],
- [
- [
- [
- 0.1331130862236023
- ]
- ]
- ],
- [
- [
- [
- 0.08529622107744217
- ]
- ]
- ],
- [
- [
- [
- 0.07099801301956177
- ]
- ]
- ],
- [
- [
- [
- 0.17250925302505493
- ]
- ]
- ],
- [
- [
- [
- 0.10609203577041626
- ]
- ]
- ],
- [
- [
- [
- 0.11273952573537827
- ]
- ]
- ],
- [
- [
- [
- 0.12467444688081741
- ]
- ]
- ],
- [
- [
- [
- 0.0528140552341938
- ]
- ]
- ],
- [
- [
- [
- 0.12089217454195023
- ]
- ]
- ],
- [
- [
- [
- 0.13694240152835846
- ]
- ]
- ],
- [
- [
- [
- 0.09494708478450775
- ]
- ]
- ],
- [
- [
- [
- 0.09517005831003189
- ]
- ]
- ],
- [
- [
- [
- 0.09173370897769928
- ]
- ]
- ],
- [
- [
- [
- 0.14287760853767395
- ]
- ]
- ],
- [
- [
- [
- 0.08889936655759811
- ]
- ]
- ],
- [
- [
- [
- 0.07412511110305786
- ]
- ]
- ],
- [
- [
- [
- 0.11942169815301895
- ]
- ]
- ],
- [
- [
- [
- 0.08265075832605362
- ]
- ]
- ],
- [
- [
- [
- 0.11597882956266403
- ]
- ]
- ],
- [
- [
- [
- 0.136866495013237
- ]
- ]
- ],
- [
- [
- [
- 0.12942366302013397
- ]
- ]
- ],
- [
- [
- [
- 0.13092643022537231
- ]
- ]
- ],
- [
- [
- [
- 0.06777326762676239
- ]
- ]
- ],
- [
- [
- [
- 0.09761752188205719
- ]
- ]
- ],
- [
- [
- [
- 0.12400688976049423
- ]
- ]
- ],
- [
- [
- [
- 0.06952434033155441
- ]
- ]
- ],
- [
- [
- [
- 0.08214408159255981
- ]
- ]
- ],
- [
- [
- [
- 0.1109093576669693
- ]
- ]
- ],
- [
- [
- [
- 0.08203009516000748
- ]
- ]
- ],
- [
- [
- [
- 0.10151204466819763
- ]
- ]
- ],
- [
- [
- [
- 0.14699135720729828
- ]
- ]
- ],
- [
- [
- [
- 0.08051149547100067
- ]
- ]
- ],
- [
- [
- [
- 0.108080193400383
- ]
- ]
- ],
- [
- [
- [
- 0.09503430873155594
- ]
- ]
- ],
- [
- [
- [
- 0.08208990842103958
- ]
- ]
- ],
- [
- [
- [
- 0.1261313110589981
- ]
- ]
- ],
- [
- [
- [
- 0.11160638928413391
- ]
- ]
- ],
- [
- [
- [
- 0.1404438465833664
- ]
- ]
- ],
- [
- [
- [
- 0.11236241459846497
- ]
- ]
- ],
- [
- [
- [
- 0.11920187622308731
- ]
- ]
- ],
- [
- [
- [
- 0.08200473338365555
- ]
- ]
- ],
- [
- [
- [
- 0.11740203946828842
- ]
- ]
- ],
- [
- [
- [
- 0.09874571114778519
- ]
- ]
- ],
- [
- [
- [
- 0.0770777240395546
- ]
- ]
- ],
- [
- [
- [
- 0.08186709880828857
- ]
- ]
- ],
- [
- [
- [
- 0.1406736522912979
- ]
- ]
- ],
- [
- [
- [
- 0.113337442278862
- ]
- ]
- ],
- [
- [
- [
- 0.16424822807312012
- ]
- ]
- ],
- [
- [
- [
- 0.1298980861902237
- ]
- ]
- ],
- [
- [
- [
- 0.10687495023012161
- ]
- ]
- ],
- [
- [
- [
- 0.08376867324113846
- ]
- ]
- ],
- [
- [
- [
- 0.09650436788797379
- ]
- ]
- ],
- [
- [
- [
- 0.15872253477573395
- ]
- ]
- ],
- [
- [
- [
- 0.05739618092775345
- ]
- ]
- ],
- [
- [
- [
- 0.10206307470798492
- ]
- ]
- ],
- [
- [
- [
- 0.0757237896323204
- ]
- ]
- ],
- [
- [
- [
- 0.138471782207489
- ]
- ]
- ],
- [
- [
- [
- 0.08101782947778702
- ]
- ]
- ],
- [
- [
- [
- 0.09513328969478607
- ]
- ]
- ],
- [
- [
- [
- 0.1214001402258873
- ]
- ]
- ],
- [
- [
- [
- 0.12963572144508362
- ]
- ]
- ],
- [
- [
- [
- 0.10652393847703934
- ]
- ]
- ],
- [
- [
- [
- 0.11833404004573822
- ]
- ]
- ],
- [
- [
- [
- 0.16243892908096313
- ]
- ]
- ],
- [
- [
- [
- 0.12443374842405319
- ]
- ]
- ],
- [
- [
- [
- 0.14844144880771637
- ]
- ]
- ],
- [
- [
- [
- 0.13088823854923248
- ]
- ]
- ],
- [
- [
- [
- 0.09051889181137085
- ]
- ]
- ],
- [
- [
- [
- 0.11792514473199844
- ]
- ]
- ],
- [
- [
- [
- 0.1230434700846672
- ]
- ]
- ],
- [
- [
- [
- 0.08785402029752731
- ]
- ]
- ],
- [
- [
- [
- 0.09404657781124115
- ]
- ]
- ],
- [
- [
- [
- 0.1133490577340126
- ]
- ]
- ],
- [
- [
- [
- 0.1328604519367218
- ]
- ]
- ],
- [
- [
- [
- 0.1510791778564453
- ]
- ]
- ],
- [
- [
- [
- 0.13621921837329865
- ]
- ]
- ],
- [
- [
- [
- 0.06557561457157135
- ]
- ]
- ],
- [
- [
- [
- 0.09528466314077377
- ]
- ]
- ],
- [
- [
- [
- 0.104777492582798
- ]
- ]
- ],
- [
- [
- [
- 0.08744222670793533
- ]
- ]
- ],
- [
- [
- [
- 0.09224014729261398
- ]
- ]
- ],
- [
- [
- [
- 0.083940289914608
- ]
- ]
- ],
- [
- [
- [
- 0.0899057537317276
- ]
- ]
- ],
- [
- [
- [
- 0.11091737449169159
- ]
- ]
- ],
- [
- [
- [
- 0.12203501909971237
- ]
- ]
- ],
- [
- [
- [
- 0.09522687643766403
- ]
- ]
- ],
- [
- [
- [
- 0.08990632742643356
- ]
- ]
- ],
- [
- [
- [
- 0.105129674077034
- ]
- ]
- ],
- [
- [
- [
- 0.12898948788642883
- ]
- ]
- ],
- [
- [
- [
- 0.11810367554426193
- ]
- ]
- ],
- [
- [
- [
- 0.07536670565605164
- ]
- ]
- ],
- [
- [
- [
- 0.13550272583961487
- ]
- ]
- ],
- [
- [
- [
- 0.10213346034288406
- ]
- ]
- ],
- [
- [
- [
- 0.1340252161026001
- ]
- ]
- ],
- [
- [
- [
- 0.12218368053436279
- ]
- ]
- ],
- [
- [
- [
- 0.12239748239517212
- ]
- ]
- ],
- [
- [
- [
- 0.10598905384540558
- ]
- ]
- ],
- [
- [
- [
- 0.10114075243473053
- ]
- ]
- ],
- [
- [
- [
- 0.1151387095451355
- ]
- ]
- ],
- [
- [
- [
- 0.1355503499507904
- ]
- ]
- ],
- [
- [
- [
- 0.07377024739980698
- ]
- ]
- ],
- [
- [
- [
- 0.10825680196285248
- ]
- ]
- ],
- [
- [
- [
- 0.10680516809225082
- ]
- ]
- ],
- [
- [
- [
- 0.0868532583117485
- ]
- ]
- ],
- [
- [
- [
- 0.09549140185117722
- ]
- ]
- ],
- [
- [
- [
- 0.11461697518825531
- ]
- ]
- ],
- [
- [
- [
- 0.10857164859771729
- ]
- ]
- ],
- [
- [
- [
- 0.15750905871391296
- ]
- ]
- ],
- [
- [
- [
- 0.10699065029621124
- ]
- ]
- ],
- [
- [
- [
- 0.1181691586971283
- ]
- ]
- ],
- [
- [
- [
- 0.11944794654846191
- ]
- ]
- ],
- [
- [
- [
- 0.09277509152889252
- ]
- ]
- ],
- [
- [
- [
- 0.1027052029967308
- ]
- ]
- ],
- [
- [
- [
- 0.07269895821809769
- ]
- ]
- ],
- [
- [
- [
- 0.08873871713876724
- ]
- ]
- ],
- [
- [
- [
- 0.11396294087171555
- ]
- ]
- ],
- [
- [
- [
- 0.11556888371706009
- ]
- ]
- ],
- [
- [
- [
- 0.10613702237606049
- ]
- ]
- ],
- [
- [
- [
- 0.09969168156385422
- ]
- ]
- ],
- [
- [
- [
- 0.1113915890455246
- ]
- ]
- ],
- [
- [
- [
- 0.10746919363737106
- ]
- ]
- ],
- [
- [
- [
- 0.10264711081981659
- ]
- ]
- ],
- [
- [
- [
- 0.0898546352982521
- ]
- ]
- ],
- [
- [
- [
- 0.13560345768928528
- ]
- ]
- ],
- [
- [
- [
- 0.08533881604671478
- ]
- ]
- ],
- [
- [
- [
- 0.06986482441425323
- ]
- ]
- ],
- [
- [
- [
- 0.09630849957466125
- ]
- ]
- ],
- [
- [
- [
- 0.10000449419021606
- ]
- ]
- ],
- [
- [
- [
- 0.1548929661512375
- ]
- ]
- ],
- [
- [
- [
- 0.06634726375341415
- ]
- ]
- ],
- [
- [
- [
- 0.10305790603160858
- ]
- ]
- ],
- [
- [
- [
- 0.10468778759241104
- ]
- ]
- ],
- [
- [
- [
- 0.0667087733745575
- ]
- ]
- ],
- [
- [
- [
- 0.07508361339569092
- ]
- ]
- ],
- [
- [
- [
- 0.10079582780599594
- ]
- ]
- ],
- [
- [
- [
- 0.11196959763765335
- ]
- ]
- ],
- [
- [
- [
- 0.1695886105298996
- ]
- ]
- ],
- [
- [
- [
- 0.1208585798740387
- ]
- ]
- ],
- [
- [
- [
- 0.14266397058963776
- ]
- ]
- ],
- [
- [
- [
- 0.14265063405036926
- ]
- ]
- ],
- [
- [
- [
- 0.06610866636037827
- ]
- ]
- ],
- [
- [
- [
- 0.13364309072494507
- ]
- ]
- ],
- [
- [
- [
- 0.10709577053785324
- ]
- ]
- ],
- [
- [
- [
- 0.12568259239196777
- ]
- ]
- ],
- [
- [
- [
- 0.1408344805240631
- ]
- ]
- ],
- [
- [
- [
- 0.12547774612903595
- ]
- ]
- ],
- [
- [
- [
- 0.07644420117139816
- ]
- ]
- ],
- [
- [
- [
- 0.12396804243326187
- ]
- ]
- ],
- [
- [
- [
- 0.09364700317382812
- ]
- ]
- ],
- [
- [
- [
- 0.1708587408065796
- ]
- ]
- ],
- [
- [
- [
- 0.09310663491487503
- ]
- ]
- ],
- [
- [
- [
- 0.06397010385990143
- ]
- ]
- ],
- [
- [
- [
- 0.12372168898582458
- ]
- ]
- ],
- [
- [
- [
- 0.13343271613121033
- ]
- ]
- ],
- [
- [
- [
- 0.11750024557113647
- ]
- ]
- ],
- [
- [
- [
- 0.06142254173755646
- ]
- ]
- ],
- [
- [
- [
- 0.07973030209541321
- ]
- ]
- ],
- [
- [
- [
- 0.06345310807228088
- ]
- ]
- ],
- [
- [
- [
- 0.11659856885671616
- ]
- ]
- ],
- [
- [
- [
- 0.09040359407663345
- ]
- ]
- ],
- [
- [
- [
- 0.08466991037130356
- ]
- ]
- ],
- [
- [
- [
- 0.11737503111362457
- ]
- ]
- ],
- [
- [
- [
- 0.1148495301604271
- ]
- ]
- ],
- [
- [
- [
- 0.08879699558019638
- ]
- ]
- ],
- [
- [
- [
- 0.058289237320423126
- ]
- ]
- ],
- [
- [
- [
- 0.1281253546476364
- ]
- ]
- ],
- [
- [
- [
- 0.11916706711053848
- ]
- ]
- ],
- [
- [
- [
- 0.11274290829896927
- ]
- ]
- ],
- [
- [
- [
- 0.13131484389305115
- ]
- ]
- ],
- [
- [
- [
- 0.0746636763215065
- ]
- ]
- ],
- [
- [
- [
- 0.08131582289934158
- ]
- ]
- ],
- [
- [
- [
- 0.07199142128229141
- ]
- ]
- ],
- [
- [
- [
- 0.0668354257941246
- ]
- ]
- ],
- [
- [
- [
- 0.13071003556251526
- ]
- ]
- ],
- [
- [
- [
- 0.09814717620611191
- ]
- ]
- ],
- [
- [
- [
- 0.07950754463672638
- ]
- ]
- ],
- [
- [
- [
- 0.17159637808799744
- ]
- ]
- ],
- [
- [
- [
- 0.10072757303714752
- ]
- ]
- ],
- [
- [
- [
- 0.10858873277902603
- ]
- ]
- ],
- [
- [
- [
- 0.10707148164510727
- ]
- ]
- ],
- [
- [
- [
- 0.10628347843885422
- ]
- ]
- ],
- [
- [
- [
- 0.11523763090372086
- ]
- ]
- ],
- [
- [
- [
- 0.0912754088640213
- ]
- ]
- ],
- [
- [
- [
- 0.14238883554935455
- ]
- ]
- ],
- [
- [
- [
- 0.12185842543840408
- ]
- ]
- ],
- [
- [
- [
- 0.11577854305505753
- ]
- ]
- ],
- [
- [
- [
- 0.09625297784805298
- ]
- ]
- ],
- [
- [
- [
- 0.10200455039739609
- ]
- ]
- ],
- [
- [
- [
- 0.07022039592266083
- ]
- ]
- ],
- [
- [
- [
- 0.10201803594827652
- ]
- ]
- ],
- [
- [
- [
- 0.0629100576043129
- ]
- ]
- ],
- [
- [
- [
- 0.13873344659805298
- ]
- ]
- ],
- [
- [
- [
- 0.14672106504440308
- ]
- ]
- ],
- [
- [
- [
- 0.06021640822291374
- ]
- ]
- ],
- [
- [
- [
- 0.12231196463108063
- ]
- ]
- ],
- [
- [
- [
- 0.1195724681019783
- ]
- ]
- ],
- [
- [
- [
- 0.08019347488880157
- ]
- ]
- ],
- [
- [
- [
- 0.07957106828689575
- ]
- ]
- ],
- [
- [
- [
- 0.21999870240688324
- ]
- ]
- ],
- [
- [
- [
- 0.14249849319458008
- ]
- ]
- ],
- [
- [
- [
- 0.13591790199279785
- ]
- ]
- ],
- [
- [
- [
- 0.08098379522562027
- ]
- ]
- ],
- [
- [
- [
- 0.09181834757328033
- ]
- ]
- ],
- [
- [
- [
- 0.08774899691343307
- ]
- ]
- ],
- [
- [
- [
- 0.08990335464477539
- ]
- ]
- ],
- [
- [
- [
- 0.07508888840675354
- ]
- ]
- ],
- [
- [
- [
- 0.1375122368335724
- ]
- ]
- ],
- [
- [
- [
- 0.20828111469745636
- ]
- ]
- ],
- [
- [
- [
- 0.13707394897937775
- ]
- ]
- ],
- [
- [
- [
- 0.1185675784945488
- ]
- ]
- ],
- [
- [
- [
- 0.08983787894248962
- ]
- ]
- ],
- [
- [
- [
- 0.11345090717077255
- ]
- ]
- ],
- [
- [
- [
- 0.0734454095363617
- ]
- ]
- ],
- [
- [
- [
- 0.10866709798574448
- ]
- ]
- ],
- [
- [
- [
- 0.0892694890499115
- ]
- ]
- ],
- [
- [
- [
- 0.06636480987071991
- ]
- ]
- ],
- [
- [
- [
- 0.0933934822678566
- ]
- ]
- ],
- [
- [
- [
- 0.09067552536725998
- ]
- ]
- ],
- [
- [
- [
- 0.06884029507637024
- ]
- ]
- ],
- [
- [
- [
- 0.151616632938385
- ]
- ]
- ],
- [
- [
- [
- 0.1877824068069458
- ]
- ]
- ],
- [
- [
- [
- 0.1588238626718521
- ]
- ]
- ],
- [
- [
- [
- 0.12537431716918945
- ]
- ]
- ],
- [
- [
- [
- 0.12258077412843704
- ]
- ]
- ],
- [
- [
- [
- 0.13809221982955933
- ]
- ]
- ],
- [
- [
- [
- 0.13199418783187866
- ]
- ]
- ],
- [
- [
- [
- 0.11882352828979492
- ]
- ]
- ],
- [
- [
- [
- 0.12593387067317963
- ]
- ]
- ],
- [
- [
- [
- 0.11099061369895935
- ]
- ]
- ],
- [
- [
- [
- 0.1254315823316574
- ]
- ]
- ],
- [
- [
- [
- 0.09533803910017014
- ]
- ]
- ],
- [
- [
- [
- 0.07976538687944412
- ]
- ]
- ],
- [
- [
- [
- 0.09957624226808548
- ]
- ]
- ],
- [
- [
- [
- 0.13051798939704895
- ]
- ]
- ],
- [
- [
- [
- 0.1162736639380455
- ]
- ]
- ],
- [
- [
- [
- 0.14774557948112488
- ]
- ]
- ],
- [
- [
- [
- 0.08330348879098892
- ]
- ]
- ],
- [
- [
- [
- 0.09584853798151016
- ]
- ]
- ],
- [
- [
- [
- 0.11463061720132828
- ]
- ]
- ],
- [
- [
- [
- 0.04607919231057167
- ]
- ]
- ],
- [
- [
- [
- 0.09859898686408997
- ]
- ]
- ],
- [
- [
- [
- 0.10526446253061295
- ]
- ]
- ],
- [
- [
- [
- 0.08130845427513123
- ]
- ]
- ],
- [
- [
- [
- 0.11744294315576553
- ]
- ]
- ],
- [
- [
- [
- 0.08107966929674149
- ]
- ]
- ],
- [
- [
- [
- 0.06533537805080414
- ]
- ]
- ],
- [
- [
- [
- 0.14844118058681488
- ]
- ]
- ],
- [
- [
- [
- 0.1656751185655594
- ]
- ]
- ],
- [
- [
- [
- 0.0993647649884224
- ]
- ]
- ],
- [
- [
- [
- 0.08890654891729355
- ]
- ]
- ],
- [
- [
- [
- 0.12734279036521912
- ]
- ]
- ],
- [
- [
- [
- 0.062493063509464264
- ]
- ]
- ],
- [
- [
- [
- 0.11376073211431503
- ]
- ]
- ],
- [
- [
- [
- 0.09767380356788635
- ]
- ]
- ],
- [
- [
- [
- 0.09542091190814972
- ]
- ]
- ],
- [
- [
- [
- 0.06378311663866043
- ]
- ]
- ],
- [
- [
- [
- 0.14439824223518372
- ]
- ]
- ],
- [
- [
- [
- 0.13727955520153046
- ]
- ]
- ],
- [
- [
- [
- 0.17133647203445435
- ]
- ]
- ],
- [
- [
- [
- 0.06737971305847168
- ]
- ]
- ],
- [
- [
- [
- 0.15409521758556366
- ]
- ]
- ],
- [
- [
- [
- 0.14044417440891266
- ]
- ]
- ],
- [
- [
- [
- 0.10692892968654633
- ]
- ]
- ],
- [
- [
- [
- 0.08284033834934235
- ]
- ]
- ],
- [
- [
- [
- 0.07837749272584915
- ]
- ]
- ],
- [
- [
- [
- 0.06181102618575096
- ]
- ]
- ],
- [
- [
- [
- 0.08544927090406418
- ]
- ]
- ],
- [
- [
- [
- 0.1516827642917633
- ]
- ]
- ],
- [
- [
- [
- 0.11924028396606445
- ]
- ]
- ],
- [
- [
- [
- 0.13868878781795502
- ]
- ]
- ],
- [
- [
- [
- 0.1087103933095932
- ]
- ]
- ],
- [
- [
- [
- 0.15110540390014648
- ]
- ]
- ],
- [
- [
- [
- 0.11307187378406525
- ]
- ]
- ],
- [
- [
- [
- 0.12772177159786224
- ]
- ]
- ],
- [
- [
- [
- 0.057609327137470245
- ]
- ]
- ],
- [
- [
- [
- 0.12486418336629868
- ]
- ]
- ],
- [
- [
- [
- 0.10906631499528885
- ]
- ]
- ],
- [
- [
- [
- 0.11926053464412689
- ]
- ]
- ],
- [
- [
- [
- 0.12476663291454315
- ]
- ]
- ],
- [
- [
- [
- 0.09853202104568481
- ]
- ]
- ],
- [
- [
- [
- 0.11345241218805313
- ]
- ]
- ],
- [
- [
- [
- 0.11234209686517715
- ]
- ]
- ],
- [
- [
- [
- 0.1130700632929802
- ]
- ]
- ],
- [
- [
- [
- 0.11143561452627182
- ]
- ]
- ],
- [
- [
- [
- 0.11652734130620956
- ]
- ]
- ],
- [
- [
- [
- 0.10695341974496841
- ]
- ]
- ],
- [
- [
- [
- 0.11669100821018219
- ]
- ]
- ],
- [
- [
- [
- 0.10790704935789108
- ]
- ]
- ],
- [
- [
- [
- 0.0921764001250267
- ]
- ]
- ],
- [
- [
- [
- 0.07292458415031433
- ]
- ]
- ],
- [
- [
- [
- 0.10066795349121094
- ]
- ]
- ],
- [
- [
- [
- 0.13977308571338654
- ]
- ]
- ],
- [
- [
- [
- 0.1045520082116127
- ]
- ]
- ],
- [
- [
- [
- 0.06537806242704391
- ]
- ]
- ],
- [
- [
- [
- 0.10629036277532578
- ]
- ]
- ],
- [
- [
- [
- 0.08034893125295639
- ]
- ]
- ],
- [
- [
- [
- 0.07865703850984573
- ]
- ]
- ],
- [
- [
- [
- 0.10350487381219864
- ]
- ]
- ],
- [
- [
- [
- 0.08512765169143677
- ]
- ]
- ],
- [
- [
- [
- 0.1171247586607933
- ]
- ]
- ],
- [
- [
- [
- 0.11434537917375565
- ]
- ]
- ],
- [
- [
- [
- 0.07044143974781036
- ]
- ]
- ],
- [
- [
- [
- 0.06195991113781929
- ]
- ]
- ],
- [
- [
- [
- 0.157009556889534
- ]
- ]
- ],
- [
- [
- [
- 0.12280819565057755
- ]
- ]
- ],
- [
- [
- [
- 0.08921337127685547
- ]
- ]
- ],
- [
- [
- [
- 0.10311742126941681
- ]
- ]
- ],
- [
- [
- [
- 0.13863585889339447
- ]
- ]
- ],
- [
- [
- [
- 0.16576045751571655
- ]
- ]
- ],
- [
- [
- [
- 0.07499579340219498
- ]
- ]
- ],
- [
- [
- [
- 0.14102667570114136
- ]
- ]
- ],
- [
- [
- [
- 0.11613451689481735
- ]
- ]
- ],
- [
- [
- [
- 0.1304466426372528
- ]
- ]
- ],
- [
- [
- [
- 0.08585295081138611
- ]
- ]
- ],
- [
- [
- [
- 0.1462370902299881
- ]
- ]
- ],
- [
- [
- [
- 0.08896096795797348
- ]
- ]
- ],
- [
- [
- [
- 0.06690352410078049
- ]
- ]
- ],
- [
- [
- [
- 0.12137788534164429
- ]
- ]
- ],
- [
- [
- [
- 0.12798137962818146
- ]
- ]
- ],
- [
- [
- [
- 0.10512511432170868
- ]
- ]
- ],
- [
- [
- [
- 0.0713142603635788
- ]
- ]
- ],
- [
- [
- [
- 0.12194234877824783
- ]
- ]
- ],
- [
- [
- [
- 0.08854077011346817
- ]
- ]
- ],
- [
- [
- [
- 0.09003933519124985
- ]
- ]
- ],
- [
- [
- [
- 0.07966115325689316
- ]
- ]
- ],
- [
- [
- [
- 0.09571016579866409
- ]
- ]
- ],
- [
- [
- [
- 0.1239721029996872
- ]
- ]
- ],
- [
- [
- [
- 0.11278075724840164
- ]
- ]
- ],
- [
- [
- [
- 0.17209844291210175
- ]
- ]
- ],
- [
- [
- [
- 0.11157318949699402
- ]
- ]
- ],
- [
- [
- [
- 0.13838371634483337
- ]
- ]
- ],
- [
- [
- [
- 0.12343267351388931
- ]
- ]
- ],
- [
- [
- [
- 0.0901406854391098
- ]
- ]
- ],
- [
- [
- [
- 0.12942856550216675
- ]
- ]
- ],
- [
- [
- [
- 0.09049946069717407
- ]
- ]
- ],
- [
- [
- [
- 0.10690564662218094
- ]
- ]
- ],
- [
- [
- [
- 0.13093684613704681
- ]
- ]
- ],
- [
- [
- [
- 0.15335078537464142
- ]
- ]
- ],
- [
- [
- [
- 0.0976998582482338
- ]
- ]
- ],
- [
- [
- [
- 0.10199800133705139
- ]
- ]
- ],
- [
- [
- [
- 0.14030978083610535
- ]
- ]
- ],
- [
- [
- [
- 0.10375906527042389
- ]
- ]
- ],
- [
- [
- [
- 0.06775738298892975
- ]
- ]
- ],
- [
- [
- [
- 0.06433076411485672
- ]
- ]
- ],
- [
- [
- [
- 0.1318317949771881
- ]
- ]
- ],
- [
- [
- [
- 0.12705092132091522
- ]
- ]
- ],
- [
- [
- [
- 0.10864292085170746
- ]
- ]
- ],
- [
- [
- [
- 0.09662646800279617
- ]
- ]
- ],
- [
- [
- [
- 0.09309905767440796
- ]
- ]
- ],
- [
- [
- [
- 0.11181088536977768
- ]
- ]
- ],
- [
- [
- [
- 0.0969972312450409
- ]
- ]
- ],
- [
- [
- [
- 0.16642752289772034
- ]
- ]
- ],
- [
- [
- [
- 0.0986553430557251
- ]
- ]
- ],
- [
- [
- [
- 0.1348530501127243
- ]
- ]
- ],
- [
- [
- [
- 0.10829022526741028
- ]
- ]
- ],
- [
- [
- [
- 0.11607635766267776
- ]
- ]
- ],
- [
- [
- [
- 0.05848212167620659
- ]
- ]
- ],
- [
- [
- [
- 0.12435334175825119
- ]
- ]
- ],
- [
- [
- [
- 0.07449059188365936
- ]
- ]
- ],
- [
- [
- [
- 0.1153937578201294
- ]
- ]
- ],
- [
- [
- [
- 0.07182100415229797
- ]
- ]
- ],
- [
- [
- [
- 0.10656853765249252
- ]
- ]
- ],
- [
- [
- [
- 0.08254068344831467
- ]
- ]
- ],
- [
- [
- [
- 0.10722311586141586
- ]
- ]
- ],
- [
- [
- [
- 0.12075849622488022
- ]
- ]
- ],
- [
- [
- [
- 0.14533479511737823
- ]
- ]
- ],
- [
- [
- [
- 0.12118887156248093
- ]
- ]
- ],
- [
- [
- [
- 0.08189192414283752
- ]
- ]
- ],
- [
- [
- [
- 0.12744316458702087
- ]
- ]
- ],
- [
- [
- [
- 0.06815888732671738
- ]
- ]
- ],
- [
- [
- [
- 0.05499519407749176
- ]
- ]
- ],
- [
- [
- [
- 0.08273191004991531
- ]
- ]
- ],
- [
- [
- [
- 0.1239996924996376
- ]
- ]
- ],
- [
- [
- [
- 0.1302541047334671
- ]
- ]
- ],
- [
- [
- [
- 0.10206776112318039
- ]
- ]
- ],
- [
- [
- [
- 0.11280180513858795
- ]
- ]
- ],
- [
- [
- [
- 0.16003477573394775
- ]
- ]
- ],
- [
- [
- [
- 0.09657474607229233
- ]
- ]
- ],
- [
- [
- [
- 0.14419624209403992
- ]
- ]
- ],
- [
- [
- [
- 0.1029721349477768
- ]
- ]
- ],
- [
- [
- [
- 0.09688390046358109
- ]
- ]
- ],
- [
- [
- [
- 0.12920254468917847
- ]
- ]
- ],
- [
- [
- [
- 0.10150521993637085
- ]
- ]
- ],
- [
- [
- [
- 0.07813427597284317
- ]
- ]
- ],
- [
- [
- [
- 0.11106064915657043
- ]
- ]
- ],
- [
- [
- [
- 0.09061180055141449
- ]
- ]
- ],
- [
- [
- [
- 0.11911047995090485
- ]
- ]
- ],
- [
- [
- [
- 0.1484537422657013
- ]
- ]
- ],
- [
- [
- [
- 0.10584958642721176
- ]
- ]
- ],
- [
- [
- [
- 0.10034807026386261
- ]
- ]
- ],
- [
- [
- [
- 0.10963086038827896
- ]
- ]
- ],
- [
- [
- [
- 0.13250266015529633
- ]
- ]
- ],
- [
- [
- [
- 0.07636609673500061
- ]
- ]
- ],
- [
- [
- [
- 0.11532587558031082
- ]
- ]
- ],
- [
- [
- [
- 0.09939517080783844
- ]
- ]
- ],
- [
- [
- [
- 0.09374889731407166
- ]
- ]
- ],
- [
- [
- [
- 0.09962423145771027
- ]
- ]
- ],
- [
- [
- [
- 0.12683236598968506
- ]
- ]
- ],
- [
- [
- [
- 0.14499175548553467
- ]
- ]
- ],
- [
- [
- [
- 0.09692131727933884
- ]
- ]
- ],
- [
- [
- [
- 0.08210159093141556
- ]
- ]
- ],
- [
- [
- [
- 0.09275905042886734
- ]
- ]
- ],
- [
- [
- [
- 0.10740861296653748
- ]
- ]
- ],
- [
- [
- [
- 0.08431559801101685
- ]
- ]
- ],
- [
- [
- [
- 0.12102232128381729
- ]
- ]
- ],
- [
- [
- [
- 0.11440484970808029
- ]
- ]
- ],
- [
- [
- [
- 0.07652193307876587
- ]
- ]
- ],
- [
- [
- [
- 0.12430684268474579
- ]
- ]
- ],
- [
- [
- [
- 0.12887327373027802
- ]
- ]
- ],
- [
- [
- [
- 0.15724483132362366
- ]
- ]
- ],
- [
- [
- [
- 0.19706451892852783
- ]
- ]
- ],
- [
- [
- [
- 0.09659164398908615
- ]
- ]
- ],
- [
- [
- [
- 0.09968344122171402
- ]
- ]
- ],
- [
- [
- [
- 0.1069020926952362
- ]
- ]
- ],
- [
- [
- [
- 0.132303386926651
- ]
- ]
- ],
- [
- [
- [
- 0.1000232845544815
- ]
- ]
- ],
- [
- [
- [
- 0.10618573427200317
- ]
- ]
- ],
- [
- [
- [
- 0.12095846235752106
- ]
- ]
- ],
- [
- [
- [
- 0.16074657440185547
- ]
- ]
- ],
- [
- [
- [
- 0.16995839774608612
- ]
- ]
- ],
- [
- [
- [
- 0.08310679346323013
- ]
- ]
- ],
- [
- [
- [
- 0.15833669900894165
- ]
- ]
- ],
- [
- [
- [
- 0.10211434960365295
- ]
- ]
- ],
- [
- [
- [
- 0.11701148748397827
- ]
- ]
- ],
- [
- [
- [
- 0.11484240740537643
- ]
- ]
- ],
- [
- [
- [
- 0.11740206182003021
- ]
- ]
- ],
- [
- [
- [
- 0.06433029472827911
- ]
- ]
- ],
- [
- [
- [
- 0.10022271424531937
- ]
- ]
- ],
- [
- [
- [
- 0.13317076861858368
- ]
- ]
- ],
- [
- [
- [
- 0.09578404575586319
- ]
- ]
- ],
- [
- [
- [
- 0.08095664530992508
- ]
- ]
- ],
- [
- [
- [
- 0.1446799486875534
- ]
- ]
- ],
- [
- [
- [
- 0.12812836468219757
- ]
- ]
- ],
- [
- [
- [
- 0.11472494155168533
- ]
- ]
- ],
- [
- [
- [
- 0.08412172645330429
- ]
- ]
- ],
- [
- [
- [
- 0.08782412111759186
- ]
- ]
- ],
- [
- [
- [
- 0.10058581084012985
- ]
- ]
- ],
- [
- [
- [
- 0.08729946613311768
- ]
- ]
- ],
- [
- [
- [
- 0.10171807557344437
- ]
- ]
- ],
- [
- [
- [
- 0.07877551764249802
- ]
- ]
- ],
- [
- [
- [
- 0.11170919984579086
- ]
- ]
- ],
- [
- [
- [
- 0.06904307752847672
- ]
- ]
- ],
- [
- [
- [
- 0.09130816906690598
- ]
- ]
- ],
- [
- [
- [
- 0.13287514448165894
- ]
- ]
- ],
- [
- [
- [
- 0.12513460218906403
- ]
- ]
- ],
- [
- [
- [
- 0.07841340452432632
- ]
- ]
- ],
- [
- [
- [
- 0.10529513657093048
- ]
- ]
- ],
- [
- [
- [
- 0.09808158874511719
- ]
- ]
- ],
- [
- [
- [
- 0.07079874724149704
- ]
- ]
- ],
- [
- [
- [
- 0.10425189882516861
- ]
- ]
- ],
- [
- [
- [
- 0.08621910214424133
- ]
- ]
- ],
- [
- [
- [
- 0.16245853900909424
- ]
- ]
- ],
- [
- [
- [
- 0.10689462721347809
- ]
- ]
- ],
- [
- [
- [
- 0.12411796301603317
- ]
- ]
- ],
- [
- [
- [
- 0.06720659881830215
- ]
- ]
- ],
- [
- [
- [
- 0.08337591588497162
- ]
- ]
- ],
- [
- [
- [
- 0.05607900395989418
- ]
- ]
- ],
- [
- [
- [
- 0.10015270113945007
- ]
- ]
- ],
- [
- [
- [
- 0.13322913646697998
- ]
- ]
- ],
- [
- [
- [
- 0.10524462163448334
- ]
- ]
- ],
- [
- [
- [
- 0.10758447647094727
- ]
- ]
- ],
- [
- [
- [
- 0.0882074162364006
- ]
- ]
- ],
- [
- [
- [
- 0.07260526716709137
- ]
- ]
- ],
- [
- [
- [
- 0.06753478199243546
- ]
- ]
- ],
- [
- [
- [
- 0.10443416237831116
- ]
- ]
- ],
- [
- [
- [
- 0.09588133543729782
- ]
- ]
- ],
- [
- [
- [
- 0.12183008342981339
- ]
- ]
- ],
- [
- [
- [
- 0.112009197473526
- ]
- ]
- ],
- [
- [
- [
- 0.14260084927082062
- ]
- ]
- ],
- [
- [
- [
- 0.09019289910793304
- ]
- ]
- ],
- [
- [
- [
- 0.06517241150140762
- ]
- ]
- ],
- [
- [
- [
- 0.08728966116905212
- ]
- ]
- ],
- [
- [
- [
- 0.10962951183319092
- ]
- ]
- ],
- [
- [
- [
- 0.17001551389694214
- ]
- ]
- ],
- [
- [
- [
- 0.0975918248295784
- ]
- ]
- ],
- [
- [
- [
- 0.12416315823793411
- ]
- ]
- ],
- [
- [
- [
- 0.09265103191137314
- ]
- ]
- ],
- [
- [
- [
- 0.1455775946378708
- ]
- ]
- ],
- [
- [
- [
- 0.1418238878250122
- ]
- ]
- ],
- [
- [
- [
- 0.131975919008255
- ]
- ]
- ],
- [
- [
- [
- 0.11731333285570145
- ]
- ]
- ],
- [
- [
- [
- 0.11624395847320557
- ]
- ]
- ],
- [
- [
- [
- 0.10047025978565216
- ]
- ]
- ],
- [
- [
- [
- 0.06697341054677963
- ]
- ]
- ],
- [
- [
- [
- 0.07945547252893448
- ]
- ]
- ],
- [
- [
- [
- 0.07362378388643265
- ]
- ]
- ],
- [
- [
- [
- 0.12403374910354614
- ]
- ]
- ],
- [
- [
- [
- 0.07933995872735977
- ]
- ]
- ],
- [
- [
- [
- 0.11370373517274857
- ]
- ]
- ],
- [
- [
- [
- 0.07922452688217163
- ]
- ]
- ],
- [
- [
- [
- 0.10415773093700409
- ]
- ]
- ],
- [
- [
- [
- 0.08014906197786331
- ]
- ]
- ],
- [
- [
- [
- 0.06317853927612305
- ]
- ]
- ],
- [
- [
- [
- 0.14078855514526367
- ]
- ]
- ],
- [
- [
- [
- 0.049417994916439056
- ]
- ]
- ],
- [
- [
- [
- 0.10651809722185135
- ]
- ]
- ],
- [
- [
- [
- 0.07095514237880707
- ]
- ]
- ],
- [
- [
- [
- 0.10557207465171814
- ]
- ]
- ],
- [
- [
- [
- 0.09825211763381958
- ]
- ]
- ],
- [
- [
- [
- 0.11618512123823166
- ]
- ]
- ],
- [
- [
- [
- 0.136461541056633
- ]
- ]
- ],
- [
- [
- [
- 0.0798511654138565
- ]
- ]
- ],
- [
- [
- [
- 0.17682094871997833
- ]
- ]
- ],
- [
- [
- [
- 0.09722670912742615
- ]
- ]
- ],
- [
- [
- [
- 0.09248413145542145
- ]
- ]
- ],
- [
- [
- [
- 0.06719827651977539
- ]
- ]
- ],
- [
- [
- [
- 0.09774357080459595
- ]
- ]
- ],
- [
- [
- [
- 0.16649140417575836
- ]
- ]
- ],
- [
- [
- [
- 0.11716952174901962
- ]
- ]
- ],
- [
- [
- [
- 0.11738277971744537
- ]
- ]
- ],
- [
- [
- [
- 0.10370578616857529
- ]
- ]
- ],
- [
- [
- [
- 0.09955193847417831
- ]
- ]
- ],
- [
- [
- [
- 0.08525557070970535
- ]
- ]
- ],
- [
- [
- [
- 0.09301915764808655
- ]
- ]
- ],
- [
- [
- [
- 0.11662902683019638
- ]
- ]
- ],
- [
- [
- [
- 0.1170889362692833
- ]
- ]
- ],
- [
- [
- [
- 0.14079943299293518
- ]
- ]
- ],
- [
- [
- [
- 0.07206206768751144
- ]
- ]
- ],
- [
- [
- [
- 0.13919976353645325
- ]
- ]
- ],
- [
- [
- [
- 0.10727459192276001
- ]
- ]
- ],
- [
- [
- [
- 0.10635294020175934
- ]
- ]
- ],
- [
- [
- [
- 0.07272119075059891
- ]
- ]
- ],
- [
- [
- [
- 0.10634204000234604
- ]
- ]
- ],
- [
- [
- [
- 0.10939183086156845
- ]
- ]
- ],
- [
- [
- [
- 0.12368644773960114
- ]
- ]
- ],
- [
- [
- [
- 0.0583941675722599
- ]
- ]
- ],
- [
- [
- [
- 0.1759897768497467
- ]
- ]
- ],
- [
- [
- [
- 0.07685467600822449
- ]
- ]
- ],
- [
- [
- [
- 0.09946926683187485
- ]
- ]
- ],
- [
- [
- [
- 0.11418312788009644
- ]
- ]
- ],
- [
- [
- [
- 0.11486251652240753
- ]
- ]
- ],
- [
- [
- [
- 0.11153148859739304
- ]
- ]
- ],
- [
- [
- [
- 0.12919680774211884
- ]
- ]
- ],
- [
- [
- [
- 0.11865189671516418
- ]
- ]
- ],
- [
- [
- [
- 0.10118752717971802
- ]
- ]
- ],
- [
- [
- [
- 0.09533622860908508
- ]
- ]
- ],
- [
- [
- [
- 0.1148749366402626
- ]
- ]
- ],
- [
- [
- [
- 0.13439790904521942
- ]
- ]
- ],
- [
- [
- [
- 0.17384758591651917
- ]
- ]
- ],
- [
- [
- [
- 0.09122811257839203
- ]
- ]
- ],
- [
- [
- [
- 0.15685723721981049
- ]
- ]
- ],
- [
- [
- [
- 0.19040605425834656
- ]
- ]
- ],
- [
- [
- [
- 0.06348840892314911
- ]
- ]
- ],
- [
- [
- [
- 0.06313139945268631
- ]
- ]
- ],
- [
- [
- [
- 0.139471635222435
- ]
- ]
- ],
- [
- [
- [
- 0.15336716175079346
- ]
- ]
- ],
- [
- [
- [
- 0.36989083886146545
- ]
- ]
- ],
- [
- [
- [
- 0.13796231150627136
- ]
- ]
- ],
- [
- [
- [
- 0.07850717008113861
- ]
- ]
- ],
- [
- [
- [
- 0.0968884751200676
- ]
- ]
- ],
- [
- [
- [
- 0.13210529088974
- ]
- ]
- ],
- [
- [
- [
- 0.09742090106010437
- ]
- ]
- ],
- [
- [
- [
- 0.12738558650016785
- ]
- ]
- ],
- [
- [
- [
- 0.09732162207365036
- ]
- ]
- ],
- [
- [
- [
- 0.11478330940008163
- ]
- ]
- ],
- [
- [
- [
- 0.13739149272441864
- ]
- ]
- ],
- [
- [
- [
- 0.10063342750072479
- ]
- ]
- ],
- [
- [
- [
- 0.08205841481685638
- ]
- ]
- ],
- [
- [
- [
- 0.11039140820503235
- ]
- ]
- ],
- [
- [
- [
- 0.14770744740962982
- ]
- ]
- ],
- [
- [
- [
- 0.12457761913537979
- ]
- ]
- ],
- [
- [
- [
- 0.10150700062513351
- ]
- ]
- ],
- [
- [
- [
- 0.07471436262130737
- ]
- ]
- ],
- [
- [
- [
- 0.15485762059688568
- ]
- ]
- ],
- [
- [
- [
- 0.058032140135765076
- ]
- ]
- ],
- [
- [
- [
- 0.13998468220233917
- ]
- ]
- ],
- [
- [
- [
- 0.09014527499675751
- ]
- ]
- ],
- [
- [
- [
- 0.08379329741001129
- ]
- ]
- ],
- [
- [
- [
- 0.09356965124607086
- ]
- ]
- ],
- [
- [
- [
- 0.09377752989530563
- ]
- ]
- ],
- [
- [
- [
- 0.12806983292102814
- ]
- ]
- ],
- [
- [
- [
- 0.13670580089092255
- ]
- ]
- ],
- [
- [
- [
- 0.10097579658031464
- ]
- ]
- ],
- [
- [
- [
- 0.09476497769355774
- ]
- ]
- ],
- [
- [
- [
- 0.08515308797359467
- ]
- ]
- ],
- [
- [
- [
- 0.1261972188949585
- ]
- ]
- ],
- [
- [
- [
- 0.09628938138484955
- ]
- ]
- ],
- [
- [
- [
- 0.08974553644657135
- ]
- ]
- ],
- [
- [
- [
- 0.12381140142679214
- ]
- ]
- ],
- [
- [
- [
- 0.12440940737724304
- ]
- ]
- ],
- [
- [
- [
- 0.10332001745700836
- ]
- ]
- ],
- [
- [
- [
- 0.08677545189857483
- ]
- ]
- ],
- [
- [
- [
- 0.14178940653800964
- ]
- ]
- ],
- [
- [
- [
- 0.12892977893352509
- ]
- ]
- ],
- [
- [
- [
- 0.1269225776195526
- ]
- ]
- ],
- [
- [
- [
- 0.11344408988952637
- ]
- ]
- ],
- [
- [
- [
- 0.10470149666070938
- ]
- ]
- ],
- [
- [
- [
- 0.09527155011892319
- ]
- ]
- ],
- [
- [
- [
- 0.1583903431892395
- ]
- ]
- ],
- [
- [
- [
- 0.12105882912874222
- ]
- ]
- ],
- [
- [
- [
- 0.08887576311826706
- ]
- ]
- ],
- [
- [
- [
- 0.12864775955677032
- ]
- ]
- ],
- [
- [
- [
- 0.1241866946220398
- ]
- ]
- ],
- [
- [
- [
- 0.12172083556652069
- ]
- ]
- ],
- [
- [
- [
- 0.11822833865880966
- ]
- ]
- ],
- [
- [
- [
- 0.059088341891765594
- ]
- ]
- ],
- [
- [
- [
- 0.11485522985458374
- ]
- ]
- ],
- [
- [
- [
- 0.11784174293279648
- ]
- ]
- ],
- [
- [
- [
- 0.08596241474151611
- ]
- ]
- ],
- [
- [
- [
- 0.11355813592672348
- ]
- ]
- ],
- [
- [
- [
- 0.10720866173505783
- ]
- ]
- ],
- [
- [
- [
- 0.13082022964954376
- ]
- ]
- ],
- [
- [
- [
- 0.05430592596530914
- ]
- ]
- ],
- [
- [
- [
- 0.06387361884117126
- ]
- ]
- ],
- [
- [
- [
- 0.1571795493364334
- ]
- ]
- ],
- [
- [
- [
- 0.13155889511108398
- ]
- ]
- ],
- [
- [
- [
- 0.12399767339229584
- ]
- ]
- ],
- [
- [
- [
- 0.06066833436489105
- ]
- ]
- ],
- [
- [
- [
- 0.11913734674453735
- ]
- ]
- ],
- [
- [
- [
- 0.08205528557300568
- ]
- ]
- ],
- [
- [
- [
- 0.12855955958366394
- ]
- ]
- ],
- [
- [
- [
- 0.11611414700746536
- ]
- ]
- ],
- [
- [
- [
- 0.10525085031986237
- ]
- ]
- ],
- [
- [
- [
- 0.12315084785223007
- ]
- ]
- ],
- [
- [
- [
- 0.10782132297754288
- ]
- ]
- ],
- [
- [
- [
- 0.07643338292837143
- ]
- ]
- ],
- [
- [
- [
- 0.11941243708133698
- ]
- ]
- ],
- [
- [
- [
- 0.049165986478328705
- ]
- ]
- ],
- [
- [
- [
- 0.09013232588768005
- ]
- ]
- ],
- [
- [
- [
- 0.1361590474843979
- ]
- ]
- ],
- [
- [
- [
- 0.17185167968273163
- ]
- ]
- ],
- [
- [
- [
- 0.0884060487151146
- ]
- ]
- ],
- [
- [
- [
- 0.12548036873340607
- ]
- ]
- ],
- [
- [
- [
- 0.11428655683994293
- ]
- ]
- ],
- [
- [
- [
- 0.08448940515518188
- ]
- ]
- ],
- [
- [
- [
- 0.11143284291028976
- ]
- ]
- ],
- [
- [
- [
- 0.1159742921590805
- ]
- ]
- ],
- [
- [
- [
- 0.11112330853939056
- ]
- ]
- ],
- [
- [
- [
- 0.10374187678098679
- ]
- ]
- ],
- [
- [
- [
- 0.09812138229608536
- ]
- ]
- ],
- [
- [
- [
- 0.11141866445541382
- ]
- ]
- ],
- [
- [
- [
- 0.035040222108364105
- ]
- ]
- ],
- [
- [
- [
- 0.0720009133219719
- ]
- ]
- ],
- [
- [
- [
- 0.1545829325914383
- ]
- ]
- ],
- [
- [
- [
- 0.11717778444290161
- ]
- ]
- ],
- [
- [
- [
- 0.09807708859443665
- ]
- ]
- ],
- [
- [
- [
- 0.08761931955814362
- ]
- ]
- ],
- [
- [
- [
- 0.08958824723958969
- ]
- ]
- ],
- [
- [
- [
- 0.10393743962049484
- ]
- ]
- ],
- [
- [
- [
- 0.10587535053491592
- ]
- ]
- ],
- [
- [
- [
- 0.09248442947864532
- ]
- ]
- ],
- [
- [
- [
- 0.1224096342921257
- ]
- ]
- ],
- [
- [
- [
- 0.11888958513736725
- ]
- ]
- ],
- [
- [
- [
- 0.05579361692070961
- ]
- ]
- ],
- [
- [
- [
- 0.07915809750556946
- ]
- ]
- ]
- ]
- },
- "/features/features.14/conv/conv.2/Conv/fq_output_0": {
- "input_low": -9.585055351257324,
- "input_high": 6.8188982009887695,
- "output_low": -9.585055351257324,
- "output_high": 6.8188982009887695
- },
- "/features/features.14/conv/conv.2/Conv/WithoutBiases/fq_weights_1": {
- "input_low": [
- [
- [
- [
- -0.19629007577896118
- ]
- ]
- ],
- [
- [
- [
- -0.1841883361339569
- ]
- ]
- ],
- [
- [
- [
- -0.2195853739976883
- ]
- ]
- ],
- [
- [
- [
- -0.24595600366592407
- ]
- ]
- ],
- [
- [
- [
- -0.2324357032775879
- ]
- ]
- ],
- [
- [
- [
- -0.2028089463710785
- ]
- ]
- ],
- [
- [
- [
- -0.22085997462272644
- ]
- ]
- ],
- [
- [
- [
- -0.25683504343032837
- ]
- ]
- ],
- [
- [
- [
- -0.2289370447397232
- ]
- ]
- ],
- [
- [
- [
- -0.21460987627506256
- ]
- ]
- ],
- [
- [
- [
- -0.20005476474761963
- ]
- ]
- ],
- [
- [
- [
- -0.155231773853302
- ]
- ]
- ],
- [
- [
- [
- -0.17671966552734375
- ]
- ]
- ],
- [
- [
- [
- -0.21265468001365662
- ]
- ]
- ],
- [
- [
- [
- -0.15470871329307556
- ]
- ]
- ],
- [
- [
- [
- -0.1698826253414154
- ]
- ]
- ],
- [
- [
- [
- -0.18620507419109344
- ]
- ]
- ],
- [
- [
- [
- -0.18815003335475922
- ]
- ]
- ],
- [
- [
- [
- -0.21112999320030212
- ]
- ]
- ],
- [
- [
- [
- -0.19874343276023865
- ]
- ]
- ],
- [
- [
- [
- -0.2154490351676941
- ]
- ]
- ],
- [
- [
- [
- -0.1938198357820511
- ]
- ]
- ],
- [
- [
- [
- -0.19752342998981476
- ]
- ]
- ],
- [
- [
- [
- -0.16267599165439606
- ]
- ]
- ],
- [
- [
- [
- -0.19532297551631927
- ]
- ]
- ],
- [
- [
- [
- -0.19819781184196472
- ]
- ]
- ],
- [
- [
- [
- -0.2769209146499634
- ]
- ]
- ],
- [
- [
- [
- -0.22017709910869598
- ]
- ]
- ],
- [
- [
- [
- -0.19592410326004028
- ]
- ]
- ],
- [
- [
- [
- -0.21571944653987885
- ]
- ]
- ],
- [
- [
- [
- -0.2708621919155121
- ]
- ]
- ],
- [
- [
- [
- -0.21139812469482422
- ]
- ]
- ],
- [
- [
- [
- -0.20689333975315094
- ]
- ]
- ],
- [
- [
- [
- -0.19469323754310608
- ]
- ]
- ],
- [
- [
- [
- -0.2117675095796585
- ]
- ]
- ],
- [
- [
- [
- -0.243989035487175
- ]
- ]
- ],
- [
- [
- [
- -0.30671218037605286
- ]
- ]
- ],
- [
- [
- [
- -0.2033929079771042
- ]
- ]
- ],
- [
- [
- [
- -0.23217424750328064
- ]
- ]
- ],
- [
- [
- [
- -0.20461177825927734
- ]
- ]
- ],
- [
- [
- [
- -0.2136172652244568
- ]
- ]
- ],
- [
- [
- [
- -0.20376309752464294
- ]
- ]
- ],
- [
- [
- [
- -0.2031296342611313
- ]
- ]
- ],
- [
- [
- [
- -0.3122614026069641
- ]
- ]
- ],
- [
- [
- [
- -0.19021423161029816
- ]
- ]
- ],
- [
- [
- [
- -0.2137565165758133
- ]
- ]
- ],
- [
- [
- [
- -0.1669396311044693
- ]
- ]
- ],
- [
- [
- [
- -0.1952528953552246
- ]
- ]
- ],
- [
- [
- [
- -0.21287542581558228
- ]
- ]
- ],
- [
- [
- [
- -0.17617373168468475
- ]
- ]
- ],
- [
- [
- [
- -0.2293645739555359
- ]
- ]
- ],
- [
- [
- [
- -0.18977850675582886
- ]
- ]
- ],
- [
- [
- [
- -0.19450993835926056
- ]
- ]
- ],
- [
- [
- [
- -0.17353399097919464
- ]
- ]
- ],
- [
- [
- [
- -0.20962832868099213
- ]
- ]
- ],
- [
- [
- [
- -0.2372073084115982
- ]
- ]
- ],
- [
- [
- [
- -0.25465700030326843
- ]
- ]
- ],
- [
- [
- [
- -0.20571166276931763
- ]
- ]
- ],
- [
- [
- [
- -0.2026270627975464
- ]
- ]
- ],
- [
- [
- [
- -0.18490302562713623
- ]
- ]
- ],
- [
- [
- [
- -0.2203996628522873
- ]
- ]
- ],
- [
- [
- [
- -0.31851401925086975
- ]
- ]
- ],
- [
- [
- [
- -0.1988462209701538
- ]
- ]
- ],
- [
- [
- [
- -0.22689637541770935
- ]
- ]
- ],
- [
- [
- [
- -0.22137980163097382
- ]
- ]
- ],
- [
- [
- [
- -0.1611928939819336
- ]
- ]
- ],
- [
- [
- [
- -0.2189059853553772
- ]
- ]
- ],
- [
- [
- [
- -0.1861223578453064
- ]
- ]
- ],
- [
- [
- [
- -0.2530972957611084
- ]
- ]
- ],
- [
- [
- [
- -0.18786455690860748
- ]
- ]
- ],
- [
- [
- [
- -0.1913107931613922
- ]
- ]
- ],
- [
- [
- [
- -0.18171575665473938
- ]
- ]
- ],
- [
- [
- [
- -0.19851921498775482
- ]
- ]
- ],
- [
- [
- [
- -0.19400811195373535
- ]
- ]
- ],
- [
- [
- [
- -0.19122153520584106
- ]
- ]
- ],
- [
- [
- [
- -0.2604430019855499
- ]
- ]
- ],
- [
- [
- [
- -0.2237817645072937
- ]
- ]
- ],
- [
- [
- [
- -0.21780602633953094
- ]
- ]
- ],
- [
- [
- [
- -0.21496906876564026
- ]
- ]
- ],
- [
- [
- [
- -0.1838793009519577
- ]
- ]
- ],
- [
- [
- [
- -0.20111966133117676
- ]
- ]
- ],
- [
- [
- [
- -0.22975628077983856
- ]
- ]
- ],
- [
- [
- [
- -0.19741693139076233
- ]
- ]
- ],
- [
- [
- [
- -0.27863746881484985
- ]
- ]
- ],
- [
- [
- [
- -0.2216167151927948
- ]
- ]
- ],
- [
- [
- [
- -0.17819057404994965
- ]
- ]
- ],
- [
- [
- [
- -0.18370847404003143
- ]
- ]
- ],
- [
- [
- [
- -0.226474791765213
- ]
- ]
- ],
- [
- [
- [
- -0.22677186131477356
- ]
- ]
- ],
- [
- [
- [
- -0.2125045508146286
- ]
- ]
- ],
- [
- [
- [
- -0.20195651054382324
- ]
- ]
- ],
- [
- [
- [
- -0.19253532588481903
- ]
- ]
- ],
- [
- [
- [
- -0.21054501831531525
- ]
- ]
- ],
- [
- [
- [
- -0.1818012148141861
- ]
- ]
- ],
- [
- [
- [
- -0.2099025398492813
- ]
- ]
- ],
- [
- [
- [
- -0.25052860379219055
- ]
- ]
- ],
- [
- [
- [
- -0.2520303726196289
- ]
- ]
- ],
- [
- [
- [
- -0.24000586569309235
- ]
- ]
- ],
- [
- [
- [
- -0.22423501312732697
- ]
- ]
- ],
- [
- [
- [
- -0.21769416332244873
- ]
- ]
- ],
- [
- [
- [
- -0.18741127848625183
- ]
- ]
- ],
- [
- [
- [
- -0.2361023724079132
- ]
- ]
- ],
- [
- [
- [
- -0.20490464568138123
- ]
- ]
- ],
- [
- [
- [
- -0.23054863512516022
- ]
- ]
- ],
- [
- [
- [
- -0.25501057505607605
- ]
- ]
- ],
- [
- [
- [
- -0.1781274676322937
- ]
- ]
- ],
- [
- [
- [
- -0.19605450332164764
- ]
- ]
- ],
- [
- [
- [
- -0.19334284961223602
- ]
- ]
- ],
- [
- [
- [
- -0.20100007951259613
- ]
- ]
- ],
- [
- [
- [
- -0.20891594886779785
- ]
- ]
- ],
- [
- [
- [
- -0.17158524692058563
- ]
- ]
- ],
- [
- [
- [
- -0.2077421098947525
- ]
- ]
- ],
- [
- [
- [
- -0.2170419842004776
- ]
- ]
- ],
- [
- [
- [
- -0.17827050387859344
- ]
- ]
- ],
- [
- [
- [
- -0.2576633095741272
- ]
- ]
- ],
- [
- [
- [
- -0.19727672636508942
- ]
- ]
- ],
- [
- [
- [
- -0.18083889782428741
- ]
- ]
- ],
- [
- [
- [
- -0.19337087869644165
- ]
- ]
- ],
- [
- [
- [
- -0.15359358489513397
- ]
- ]
- ],
- [
- [
- [
- -0.18882332742214203
- ]
- ]
- ],
- [
- [
- [
- -0.20840215682983398
- ]
- ]
- ],
- [
- [
- [
- -0.1828426867723465
- ]
- ]
- ],
- [
- [
- [
- -0.23093710839748383
- ]
- ]
- ],
- [
- [
- [
- -0.2502397894859314
- ]
- ]
- ],
- [
- [
- [
- -0.2291974425315857
- ]
- ]
- ],
- [
- [
- [
- -0.18503043055534363
- ]
- ]
- ],
- [
- [
- [
- -0.2081855982542038
- ]
- ]
- ],
- [
- [
- [
- -0.19403161108493805
- ]
- ]
- ],
- [
- [
- [
- -0.1941891461610794
- ]
- ]
- ],
- [
- [
- [
- -0.19478265941143036
- ]
- ]
- ],
- [
- [
- [
- -0.21839946508407593
- ]
- ]
- ],
- [
- [
- [
- -0.19194526970386505
- ]
- ]
- ],
- [
- [
- [
- -0.17669899761676788
- ]
- ]
- ],
- [
- [
- [
- -0.18942053616046906
- ]
- ]
- ],
- [
- [
- [
- -0.21279369294643402
- ]
- ]
- ],
- [
- [
- [
- -0.2542676627635956
- ]
- ]
- ],
- [
- [
- [
- -0.18816863000392914
- ]
- ]
- ],
- [
- [
- [
- -0.24639014899730682
- ]
- ]
- ],
- [
- [
- [
- -0.24465720355510712
- ]
- ]
- ],
- [
- [
- [
- -0.16032011806964874
- ]
- ]
- ],
- [
- [
- [
- -0.15692757070064545
- ]
- ]
- ],
- [
- [
- [
- -0.19242379069328308
- ]
- ]
- ],
- [
- [
- [
- -0.198592871427536
- ]
- ]
- ],
- [
- [
- [
- -0.20045560598373413
- ]
- ]
- ],
- [
- [
- [
- -0.16195112466812134
- ]
- ]
- ],
- [
- [
- [
- -0.19440345466136932
- ]
- ]
- ],
- [
- [
- [
- -0.2671554684638977
- ]
- ]
- ],
- [
- [
- [
- -0.21910220384597778
- ]
- ]
- ],
- [
- [
- [
- -0.1746637523174286
- ]
- ]
- ],
- [
- [
- [
- -0.24006715416908264
- ]
- ]
- ],
- [
- [
- [
- -0.21339312195777893
- ]
- ]
- ],
- [
- [
- [
- -0.20748810470104218
- ]
- ]
- ],
- [
- [
- [
- -0.27389803528785706
- ]
- ]
- ],
- [
- [
- [
- -0.19378113746643066
- ]
- ]
- ],
- [
- [
- [
- -0.22633203864097595
- ]
- ]
- ],
- [
- [
- [
- -0.20822517573833466
- ]
- ]
- ],
- [
- [
- [
- -0.1803937405347824
- ]
- ]
- ],
- [
- [
- [
- -0.1860850304365158
- ]
- ]
- ],
- [
- [
- [
- -0.20193976163864136
- ]
- ]
- ],
- [
- [
- [
- -0.1722477525472641
- ]
- ]
- ]
- ],
- "input_high": [
- [
- [
- [
- 0.19629007577896118
- ]
- ]
- ],
- [
- [
- [
- 0.1841883361339569
- ]
- ]
- ],
- [
- [
- [
- 0.2195853739976883
- ]
- ]
- ],
- [
- [
- [
- 0.24595600366592407
- ]
- ]
- ],
- [
- [
- [
- 0.2324357032775879
- ]
- ]
- ],
- [
- [
- [
- 0.2028089463710785
- ]
- ]
- ],
- [
- [
- [
- 0.22085997462272644
- ]
- ]
- ],
- [
- [
- [
- 0.25683504343032837
- ]
- ]
- ],
- [
- [
- [
- 0.2289370447397232
- ]
- ]
- ],
- [
- [
- [
- 0.21460987627506256
- ]
- ]
- ],
- [
- [
- [
- 0.20005476474761963
- ]
- ]
- ],
- [
- [
- [
- 0.155231773853302
- ]
- ]
- ],
- [
- [
- [
- 0.17671966552734375
- ]
- ]
- ],
- [
- [
- [
- 0.21265468001365662
- ]
- ]
- ],
- [
- [
- [
- 0.15470871329307556
- ]
- ]
- ],
- [
- [
- [
- 0.1698826253414154
- ]
- ]
- ],
- [
- [
- [
- 0.18620507419109344
- ]
- ]
- ],
- [
- [
- [
- 0.18815003335475922
- ]
- ]
- ],
- [
- [
- [
- 0.21112999320030212
- ]
- ]
- ],
- [
- [
- [
- 0.19874343276023865
- ]
- ]
- ],
- [
- [
- [
- 0.2154490351676941
- ]
- ]
- ],
- [
- [
- [
- 0.1938198357820511
- ]
- ]
- ],
- [
- [
- [
- 0.19752342998981476
- ]
- ]
- ],
- [
- [
- [
- 0.16267599165439606
- ]
- ]
- ],
- [
- [
- [
- 0.19532297551631927
- ]
- ]
- ],
- [
- [
- [
- 0.19819781184196472
- ]
- ]
- ],
- [
- [
- [
- 0.2769209146499634
- ]
- ]
- ],
- [
- [
- [
- 0.22017709910869598
- ]
- ]
- ],
- [
- [
- [
- 0.19592410326004028
- ]
- ]
- ],
- [
- [
- [
- 0.21571944653987885
- ]
- ]
- ],
- [
- [
- [
- 0.2708621919155121
- ]
- ]
- ],
- [
- [
- [
- 0.21139812469482422
- ]
- ]
- ],
- [
- [
- [
- 0.20689333975315094
- ]
- ]
- ],
- [
- [
- [
- 0.19469323754310608
- ]
- ]
- ],
- [
- [
- [
- 0.2117675095796585
- ]
- ]
- ],
- [
- [
- [
- 0.243989035487175
- ]
- ]
- ],
- [
- [
- [
- 0.30671218037605286
- ]
- ]
- ],
- [
- [
- [
- 0.2033929079771042
- ]
- ]
- ],
- [
- [
- [
- 0.23217424750328064
- ]
- ]
- ],
- [
- [
- [
- 0.20461177825927734
- ]
- ]
- ],
- [
- [
- [
- 0.2136172652244568
- ]
- ]
- ],
- [
- [
- [
- 0.20376309752464294
- ]
- ]
- ],
- [
- [
- [
- 0.2031296342611313
- ]
- ]
- ],
- [
- [
- [
- 0.3122614026069641
- ]
- ]
- ],
- [
- [
- [
- 0.19021423161029816
- ]
- ]
- ],
- [
- [
- [
- 0.2137565165758133
- ]
- ]
- ],
- [
- [
- [
- 0.1669396311044693
- ]
- ]
- ],
- [
- [
- [
- 0.1952528953552246
- ]
- ]
- ],
- [
- [
- [
- 0.21287542581558228
- ]
- ]
- ],
- [
- [
- [
- 0.17617373168468475
- ]
- ]
- ],
- [
- [
- [
- 0.2293645739555359
- ]
- ]
- ],
- [
- [
- [
- 0.18977850675582886
- ]
- ]
- ],
- [
- [
- [
- 0.19450993835926056
- ]
- ]
- ],
- [
- [
- [
- 0.17353399097919464
- ]
- ]
- ],
- [
- [
- [
- 0.20962832868099213
- ]
- ]
- ],
- [
- [
- [
- 0.2372073084115982
- ]
- ]
- ],
- [
- [
- [
- 0.25465700030326843
- ]
- ]
- ],
- [
- [
- [
- 0.20571166276931763
- ]
- ]
- ],
- [
- [
- [
- 0.2026270627975464
- ]
- ]
- ],
- [
- [
- [
- 0.18490302562713623
- ]
- ]
- ],
- [
- [
- [
- 0.2203996628522873
- ]
- ]
- ],
- [
- [
- [
- 0.31851401925086975
- ]
- ]
- ],
- [
- [
- [
- 0.1988462209701538
- ]
- ]
- ],
- [
- [
- [
- 0.22689637541770935
- ]
- ]
- ],
- [
- [
- [
- 0.22137980163097382
- ]
- ]
- ],
- [
- [
- [
- 0.1611928939819336
- ]
- ]
- ],
- [
- [
- [
- 0.2189059853553772
- ]
- ]
- ],
- [
- [
- [
- 0.1861223578453064
- ]
- ]
- ],
- [
- [
- [
- 0.2530972957611084
- ]
- ]
- ],
- [
- [
- [
- 0.18786455690860748
- ]
- ]
- ],
- [
- [
- [
- 0.1913107931613922
- ]
- ]
- ],
- [
- [
- [
- 0.18171575665473938
- ]
- ]
- ],
- [
- [
- [
- 0.19851921498775482
- ]
- ]
- ],
- [
- [
- [
- 0.19400811195373535
- ]
- ]
- ],
- [
- [
- [
- 0.19122153520584106
- ]
- ]
- ],
- [
- [
- [
- 0.2604430019855499
- ]
- ]
- ],
- [
- [
- [
- 0.2237817645072937
- ]
- ]
- ],
- [
- [
- [
- 0.21780602633953094
- ]
- ]
- ],
- [
- [
- [
- 0.21496906876564026
- ]
- ]
- ],
- [
- [
- [
- 0.1838793009519577
- ]
- ]
- ],
- [
- [
- [
- 0.20111966133117676
- ]
- ]
- ],
- [
- [
- [
- 0.22975628077983856
- ]
- ]
- ],
- [
- [
- [
- 0.19741693139076233
- ]
- ]
- ],
- [
- [
- [
- 0.27863746881484985
- ]
- ]
- ],
- [
- [
- [
- 0.2216167151927948
- ]
- ]
- ],
- [
- [
- [
- 0.17819057404994965
- ]
- ]
- ],
- [
- [
- [
- 0.18370847404003143
- ]
- ]
- ],
- [
- [
- [
- 0.226474791765213
- ]
- ]
- ],
- [
- [
- [
- 0.22677186131477356
- ]
- ]
- ],
- [
- [
- [
- 0.2125045508146286
- ]
- ]
- ],
- [
- [
- [
- 0.20195651054382324
- ]
- ]
- ],
- [
- [
- [
- 0.19253532588481903
- ]
- ]
- ],
- [
- [
- [
- 0.21054501831531525
- ]
- ]
- ],
- [
- [
- [
- 0.1818012148141861
- ]
- ]
- ],
- [
- [
- [
- 0.2099025398492813
- ]
- ]
- ],
- [
- [
- [
- 0.25052860379219055
- ]
- ]
- ],
- [
- [
- [
- 0.2520303726196289
- ]
- ]
- ],
- [
- [
- [
- 0.24000586569309235
- ]
- ]
- ],
- [
- [
- [
- 0.22423501312732697
- ]
- ]
- ],
- [
- [
- [
- 0.21769416332244873
- ]
- ]
- ],
- [
- [
- [
- 0.18741127848625183
- ]
- ]
- ],
- [
- [
- [
- 0.2361023724079132
- ]
- ]
- ],
- [
- [
- [
- 0.20490464568138123
- ]
- ]
- ],
- [
- [
- [
- 0.23054863512516022
- ]
- ]
- ],
- [
- [
- [
- 0.25501057505607605
- ]
- ]
- ],
- [
- [
- [
- 0.1781274676322937
- ]
- ]
- ],
- [
- [
- [
- 0.19605450332164764
- ]
- ]
- ],
- [
- [
- [
- 0.19334284961223602
- ]
- ]
- ],
- [
- [
- [
- 0.20100007951259613
- ]
- ]
- ],
- [
- [
- [
- 0.20891594886779785
- ]
- ]
- ],
- [
- [
- [
- 0.17158524692058563
- ]
- ]
- ],
- [
- [
- [
- 0.2077421098947525
- ]
- ]
- ],
- [
- [
- [
- 0.2170419842004776
- ]
- ]
- ],
- [
- [
- [
- 0.17827050387859344
- ]
- ]
- ],
- [
- [
- [
- 0.2576633095741272
- ]
- ]
- ],
- [
- [
- [
- 0.19727672636508942
- ]
- ]
- ],
- [
- [
- [
- 0.18083889782428741
- ]
- ]
- ],
- [
- [
- [
- 0.19337087869644165
- ]
- ]
- ],
- [
- [
- [
- 0.15359358489513397
- ]
- ]
- ],
- [
- [
- [
- 0.18882332742214203
- ]
- ]
- ],
- [
- [
- [
- 0.20840215682983398
- ]
- ]
- ],
- [
- [
- [
- 0.1828426867723465
- ]
- ]
- ],
- [
- [
- [
- 0.23093710839748383
- ]
- ]
- ],
- [
- [
- [
- 0.2502397894859314
- ]
- ]
- ],
- [
- [
- [
- 0.2291974425315857
- ]
- ]
- ],
- [
- [
- [
- 0.18503043055534363
- ]
- ]
- ],
- [
- [
- [
- 0.2081855982542038
- ]
- ]
- ],
- [
- [
- [
- 0.19403161108493805
- ]
- ]
- ],
- [
- [
- [
- 0.1941891461610794
- ]
- ]
- ],
- [
- [
- [
- 0.19478265941143036
- ]
- ]
- ],
- [
- [
- [
- 0.21839946508407593
- ]
- ]
- ],
- [
- [
- [
- 0.19194526970386505
- ]
- ]
- ],
- [
- [
- [
- 0.17669899761676788
- ]
- ]
- ],
- [
- [
- [
- 0.18942053616046906
- ]
- ]
- ],
- [
- [
- [
- 0.21279369294643402
- ]
- ]
- ],
- [
- [
- [
- 0.2542676627635956
- ]
- ]
- ],
- [
- [
- [
- 0.18816863000392914
- ]
- ]
- ],
- [
- [
- [
- 0.24639014899730682
- ]
- ]
- ],
- [
- [
- [
- 0.24465720355510712
- ]
- ]
- ],
- [
- [
- [
- 0.16032011806964874
- ]
- ]
- ],
- [
- [
- [
- 0.15692757070064545
- ]
- ]
- ],
- [
- [
- [
- 0.19242379069328308
- ]
- ]
- ],
- [
- [
- [
- 0.198592871427536
- ]
- ]
- ],
- [
- [
- [
- 0.20045560598373413
- ]
- ]
- ],
- [
- [
- [
- 0.16195112466812134
- ]
- ]
- ],
- [
- [
- [
- 0.19440345466136932
- ]
- ]
- ],
- [
- [
- [
- 0.2671554684638977
- ]
- ]
- ],
- [
- [
- [
- 0.21910220384597778
- ]
- ]
- ],
- [
- [
- [
- 0.1746637523174286
- ]
- ]
- ],
- [
- [
- [
- 0.24006715416908264
- ]
- ]
- ],
- [
- [
- [
- 0.21339312195777893
- ]
- ]
- ],
- [
- [
- [
- 0.20748810470104218
- ]
- ]
- ],
- [
- [
- [
- 0.27389803528785706
- ]
- ]
- ],
- [
- [
- [
- 0.19378113746643066
- ]
- ]
- ],
- [
- [
- [
- 0.22633203864097595
- ]
- ]
- ],
- [
- [
- [
- 0.20822517573833466
- ]
- ]
- ],
- [
- [
- [
- 0.1803937405347824
- ]
- ]
- ],
- [
- [
- [
- 0.1860850304365158
- ]
- ]
- ],
- [
- [
- [
- 0.20193976163864136
- ]
- ]
- ],
- [
- [
- [
- 0.1722477525472641
- ]
- ]
- ]
- ],
- "output_low": [
- [
- [
- [
- -0.19629007577896118
- ]
- ]
- ],
- [
- [
- [
- -0.1841883361339569
- ]
- ]
- ],
- [
- [
- [
- -0.2195853739976883
- ]
- ]
- ],
- [
- [
- [
- -0.24595600366592407
- ]
- ]
- ],
- [
- [
- [
- -0.2324357032775879
- ]
- ]
- ],
- [
- [
- [
- -0.2028089463710785
- ]
- ]
- ],
- [
- [
- [
- -0.22085997462272644
- ]
- ]
- ],
- [
- [
- [
- -0.25683504343032837
- ]
- ]
- ],
- [
- [
- [
- -0.2289370447397232
- ]
- ]
- ],
- [
- [
- [
- -0.21460987627506256
- ]
- ]
- ],
- [
- [
- [
- -0.20005476474761963
- ]
- ]
- ],
- [
- [
- [
- -0.155231773853302
- ]
- ]
- ],
- [
- [
- [
- -0.17671966552734375
- ]
- ]
- ],
- [
- [
- [
- -0.21265468001365662
- ]
- ]
- ],
- [
- [
- [
- -0.15470871329307556
- ]
- ]
- ],
- [
- [
- [
- -0.1698826253414154
- ]
- ]
- ],
- [
- [
- [
- -0.18620507419109344
- ]
- ]
- ],
- [
- [
- [
- -0.18815003335475922
- ]
- ]
- ],
- [
- [
- [
- -0.21112999320030212
- ]
- ]
- ],
- [
- [
- [
- -0.19874343276023865
- ]
- ]
- ],
- [
- [
- [
- -0.2154490351676941
- ]
- ]
- ],
- [
- [
- [
- -0.1938198357820511
- ]
- ]
- ],
- [
- [
- [
- -0.19752342998981476
- ]
- ]
- ],
- [
- [
- [
- -0.16267599165439606
- ]
- ]
- ],
- [
- [
- [
- -0.19532297551631927
- ]
- ]
- ],
- [
- [
- [
- -0.19819781184196472
- ]
- ]
- ],
- [
- [
- [
- -0.2769209146499634
- ]
- ]
- ],
- [
- [
- [
- -0.22017709910869598
- ]
- ]
- ],
- [
- [
- [
- -0.19592410326004028
- ]
- ]
- ],
- [
- [
- [
- -0.21571944653987885
- ]
- ]
- ],
- [
- [
- [
- -0.2708621919155121
- ]
- ]
- ],
- [
- [
- [
- -0.21139812469482422
- ]
- ]
- ],
- [
- [
- [
- -0.20689333975315094
- ]
- ]
- ],
- [
- [
- [
- -0.19469323754310608
- ]
- ]
- ],
- [
- [
- [
- -0.2117675095796585
- ]
- ]
- ],
- [
- [
- [
- -0.243989035487175
- ]
- ]
- ],
- [
- [
- [
- -0.30671218037605286
- ]
- ]
- ],
- [
- [
- [
- -0.2033929079771042
- ]
- ]
- ],
- [
- [
- [
- -0.23217424750328064
- ]
- ]
- ],
- [
- [
- [
- -0.20461177825927734
- ]
- ]
- ],
- [
- [
- [
- -0.2136172652244568
- ]
- ]
- ],
- [
- [
- [
- -0.20376309752464294
- ]
- ]
- ],
- [
- [
- [
- -0.2031296342611313
- ]
- ]
- ],
- [
- [
- [
- -0.3122614026069641
- ]
- ]
- ],
- [
- [
- [
- -0.19021423161029816
- ]
- ]
- ],
- [
- [
- [
- -0.2137565165758133
- ]
- ]
- ],
- [
- [
- [
- -0.1669396311044693
- ]
- ]
- ],
- [
- [
- [
- -0.1952528953552246
- ]
- ]
- ],
- [
- [
- [
- -0.21287542581558228
- ]
- ]
- ],
- [
- [
- [
- -0.17617373168468475
- ]
- ]
- ],
- [
- [
- [
- -0.2293645739555359
- ]
- ]
- ],
- [
- [
- [
- -0.18977850675582886
- ]
- ]
- ],
- [
- [
- [
- -0.19450993835926056
- ]
- ]
- ],
- [
- [
- [
- -0.17353399097919464
- ]
- ]
- ],
- [
- [
- [
- -0.20962832868099213
- ]
- ]
- ],
- [
- [
- [
- -0.2372073084115982
- ]
- ]
- ],
- [
- [
- [
- -0.25465700030326843
- ]
- ]
- ],
- [
- [
- [
- -0.20571166276931763
- ]
- ]
- ],
- [
- [
- [
- -0.2026270627975464
- ]
- ]
- ],
- [
- [
- [
- -0.18490302562713623
- ]
- ]
- ],
- [
- [
- [
- -0.2203996628522873
- ]
- ]
- ],
- [
- [
- [
- -0.31851401925086975
- ]
- ]
- ],
- [
- [
- [
- -0.1988462209701538
- ]
- ]
- ],
- [
- [
- [
- -0.22689637541770935
- ]
- ]
- ],
- [
- [
- [
- -0.22137980163097382
- ]
- ]
- ],
- [
- [
- [
- -0.1611928939819336
- ]
- ]
- ],
- [
- [
- [
- -0.2189059853553772
- ]
- ]
- ],
- [
- [
- [
- -0.1861223578453064
- ]
- ]
- ],
- [
- [
- [
- -0.2530972957611084
- ]
- ]
- ],
- [
- [
- [
- -0.18786455690860748
- ]
- ]
- ],
- [
- [
- [
- -0.1913107931613922
- ]
- ]
- ],
- [
- [
- [
- -0.18171575665473938
- ]
- ]
- ],
- [
- [
- [
- -0.19851921498775482
- ]
- ]
- ],
- [
- [
- [
- -0.19400811195373535
- ]
- ]
- ],
- [
- [
- [
- -0.19122153520584106
- ]
- ]
- ],
- [
- [
- [
- -0.2604430019855499
- ]
- ]
- ],
- [
- [
- [
- -0.2237817645072937
- ]
- ]
- ],
- [
- [
- [
- -0.21780602633953094
- ]
- ]
- ],
- [
- [
- [
- -0.21496906876564026
- ]
- ]
- ],
- [
- [
- [
- -0.1838793009519577
- ]
- ]
- ],
- [
- [
- [
- -0.20111966133117676
- ]
- ]
- ],
- [
- [
- [
- -0.22975628077983856
- ]
- ]
- ],
- [
- [
- [
- -0.19741693139076233
- ]
- ]
- ],
- [
- [
- [
- -0.27863746881484985
- ]
- ]
- ],
- [
- [
- [
- -0.2216167151927948
- ]
- ]
- ],
- [
- [
- [
- -0.17819057404994965
- ]
- ]
- ],
- [
- [
- [
- -0.18370847404003143
- ]
- ]
- ],
- [
- [
- [
- -0.226474791765213
- ]
- ]
- ],
- [
- [
- [
- -0.22677186131477356
- ]
- ]
- ],
- [
- [
- [
- -0.2125045508146286
- ]
- ]
- ],
- [
- [
- [
- -0.20195651054382324
- ]
- ]
- ],
- [
- [
- [
- -0.19253532588481903
- ]
- ]
- ],
- [
- [
- [
- -0.21054501831531525
- ]
- ]
- ],
- [
- [
- [
- -0.1818012148141861
- ]
- ]
- ],
- [
- [
- [
- -0.2099025398492813
- ]
- ]
- ],
- [
- [
- [
- -0.25052860379219055
- ]
- ]
- ],
- [
- [
- [
- -0.2520303726196289
- ]
- ]
- ],
- [
- [
- [
- -0.24000586569309235
- ]
- ]
- ],
- [
- [
- [
- -0.22423501312732697
- ]
- ]
- ],
- [
- [
- [
- -0.21769416332244873
- ]
- ]
- ],
- [
- [
- [
- -0.18741127848625183
- ]
- ]
- ],
- [
- [
- [
- -0.2361023724079132
- ]
- ]
- ],
- [
- [
- [
- -0.20490464568138123
- ]
- ]
- ],
- [
- [
- [
- -0.23054863512516022
- ]
- ]
- ],
- [
- [
- [
- -0.25501057505607605
- ]
- ]
- ],
- [
- [
- [
- -0.1781274676322937
- ]
- ]
- ],
- [
- [
- [
- -0.19605450332164764
- ]
- ]
- ],
- [
- [
- [
- -0.19334284961223602
- ]
- ]
- ],
- [
- [
- [
- -0.20100007951259613
- ]
- ]
- ],
- [
- [
- [
- -0.20891594886779785
- ]
- ]
- ],
- [
- [
- [
- -0.17158524692058563
- ]
- ]
- ],
- [
- [
- [
- -0.2077421098947525
- ]
- ]
- ],
- [
- [
- [
- -0.2170419842004776
- ]
- ]
- ],
- [
- [
- [
- -0.17827050387859344
- ]
- ]
- ],
- [
- [
- [
- -0.2576633095741272
- ]
- ]
- ],
- [
- [
- [
- -0.19727672636508942
- ]
- ]
- ],
- [
- [
- [
- -0.18083889782428741
- ]
- ]
- ],
- [
- [
- [
- -0.19337087869644165
- ]
- ]
- ],
- [
- [
- [
- -0.15359358489513397
- ]
- ]
- ],
- [
- [
- [
- -0.18882332742214203
- ]
- ]
- ],
- [
- [
- [
- -0.20840215682983398
- ]
- ]
- ],
- [
- [
- [
- -0.1828426867723465
- ]
- ]
- ],
- [
- [
- [
- -0.23093710839748383
- ]
- ]
- ],
- [
- [
- [
- -0.2502397894859314
- ]
- ]
- ],
- [
- [
- [
- -0.2291974425315857
- ]
- ]
- ],
- [
- [
- [
- -0.18503043055534363
- ]
- ]
- ],
- [
- [
- [
- -0.2081855982542038
- ]
- ]
- ],
- [
- [
- [
- -0.19403161108493805
- ]
- ]
- ],
- [
- [
- [
- -0.1941891461610794
- ]
- ]
- ],
- [
- [
- [
- -0.19478265941143036
- ]
- ]
- ],
- [
- [
- [
- -0.21839946508407593
- ]
- ]
- ],
- [
- [
- [
- -0.19194526970386505
- ]
- ]
- ],
- [
- [
- [
- -0.17669899761676788
- ]
- ]
- ],
- [
- [
- [
- -0.18942053616046906
- ]
- ]
- ],
- [
- [
- [
- -0.21279369294643402
- ]
- ]
- ],
- [
- [
- [
- -0.2542676627635956
- ]
- ]
- ],
- [
- [
- [
- -0.18816863000392914
- ]
- ]
- ],
- [
- [
- [
- -0.24639014899730682
- ]
- ]
- ],
- [
- [
- [
- -0.24465720355510712
- ]
- ]
- ],
- [
- [
- [
- -0.16032011806964874
- ]
- ]
- ],
- [
- [
- [
- -0.15692757070064545
- ]
- ]
- ],
- [
- [
- [
- -0.19242379069328308
- ]
- ]
- ],
- [
- [
- [
- -0.198592871427536
- ]
- ]
- ],
- [
- [
- [
- -0.20045560598373413
- ]
- ]
- ],
- [
- [
- [
- -0.16195112466812134
- ]
- ]
- ],
- [
- [
- [
- -0.19440345466136932
- ]
- ]
- ],
- [
- [
- [
- -0.2671554684638977
- ]
- ]
- ],
- [
- [
- [
- -0.21910220384597778
- ]
- ]
- ],
- [
- [
- [
- -0.1746637523174286
- ]
- ]
- ],
- [
- [
- [
- -0.24006715416908264
- ]
- ]
- ],
- [
- [
- [
- -0.21339312195777893
- ]
- ]
- ],
- [
- [
- [
- -0.20748810470104218
- ]
- ]
- ],
- [
- [
- [
- -0.27389803528785706
- ]
- ]
- ],
- [
- [
- [
- -0.19378113746643066
- ]
- ]
- ],
- [
- [
- [
- -0.22633203864097595
- ]
- ]
- ],
- [
- [
- [
- -0.20822517573833466
- ]
- ]
- ],
- [
- [
- [
- -0.1803937405347824
- ]
- ]
- ],
- [
- [
- [
- -0.1860850304365158
- ]
- ]
- ],
- [
- [
- [
- -0.20193976163864136
- ]
- ]
- ],
- [
- [
- [
- -0.1722477525472641
- ]
- ]
- ]
- ],
- "output_high": [
- [
- [
- [
- 0.19629007577896118
- ]
- ]
- ],
- [
- [
- [
- 0.1841883361339569
- ]
- ]
- ],
- [
- [
- [
- 0.2195853739976883
- ]
- ]
- ],
- [
- [
- [
- 0.24595600366592407
- ]
- ]
- ],
- [
- [
- [
- 0.2324357032775879
- ]
- ]
- ],
- [
- [
- [
- 0.2028089463710785
- ]
- ]
- ],
- [
- [
- [
- 0.22085997462272644
- ]
- ]
- ],
- [
- [
- [
- 0.25683504343032837
- ]
- ]
- ],
- [
- [
- [
- 0.2289370447397232
- ]
- ]
- ],
- [
- [
- [
- 0.21460987627506256
- ]
- ]
- ],
- [
- [
- [
- 0.20005476474761963
- ]
- ]
- ],
- [
- [
- [
- 0.155231773853302
- ]
- ]
- ],
- [
- [
- [
- 0.17671966552734375
- ]
- ]
- ],
- [
- [
- [
- 0.21265468001365662
- ]
- ]
- ],
- [
- [
- [
- 0.15470871329307556
- ]
- ]
- ],
- [
- [
- [
- 0.1698826253414154
- ]
- ]
- ],
- [
- [
- [
- 0.18620507419109344
- ]
- ]
- ],
- [
- [
- [
- 0.18815003335475922
- ]
- ]
- ],
- [
- [
- [
- 0.21112999320030212
- ]
- ]
- ],
- [
- [
- [
- 0.19874343276023865
- ]
- ]
- ],
- [
- [
- [
- 0.2154490351676941
- ]
- ]
- ],
- [
- [
- [
- 0.1938198357820511
- ]
- ]
- ],
- [
- [
- [
- 0.19752342998981476
- ]
- ]
- ],
- [
- [
- [
- 0.16267599165439606
- ]
- ]
- ],
- [
- [
- [
- 0.19532297551631927
- ]
- ]
- ],
- [
- [
- [
- 0.19819781184196472
- ]
- ]
- ],
- [
- [
- [
- 0.2769209146499634
- ]
- ]
- ],
- [
- [
- [
- 0.22017709910869598
- ]
- ]
- ],
- [
- [
- [
- 0.19592410326004028
- ]
- ]
- ],
-